1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <!--
3
+ ~ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
4
+ ~ the License. You may obtain a copy of the License at
5
+ ~
6
+ ~ http://www.apache.org/licenses/LICENSE-2.0
7
+ ~
8
+ ~ Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
9
+ ~ an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
10
+ ~ specific language governing permissions and limitations under the License.
11
+ ~
12
+ ~ Copyright 2020-2020 the original author or authors.
13
+ -->
14
+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
15
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
16
+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
17
+
18
+ <modelVersion >4.0.0</modelVersion >
19
+
20
+ <groupId >org.quickperf</groupId >
21
+ <artifactId >hibernate-junit4</artifactId >
22
+ <version >1.0-SNAPSHOT</version >
23
+
24
+ <properties >
25
+ <maven .compiler.source>1.8</maven .compiler.source>
26
+ <maven .compiler.target>1.8</maven .compiler.target>
27
+ <maven .test.skip>true</maven .test.skip>
28
+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
29
+ </properties >
30
+
31
+ <dependencies >
32
+ <dependency >
33
+ <groupId >junit</groupId >
34
+ <artifactId >junit</artifactId >
35
+ <version >4.12</version >
36
+ <scope >test</scope >
37
+ </dependency >
38
+ <dependency >
39
+ <groupId >org.quickperf</groupId >
40
+ <artifactId >quick-perf-junit4</artifactId >
41
+ <version >1.0.0-RC6</version >
42
+ <scope >test</scope >
43
+ </dependency >
44
+ <dependency >
45
+ <groupId >org.quickperf</groupId >
46
+ <artifactId >quick-perf-sql-annotations</artifactId >
47
+ <version >1.0.0-RC6</version >
48
+ <scope >test</scope >
49
+ </dependency >
50
+ <dependency >
51
+ <groupId >org.assertj</groupId >
52
+ <artifactId >assertj-core</artifactId >
53
+ <version >3.15.0</version >
54
+ <scope >test</scope >
55
+ </dependency >
56
+ <dependency >
57
+ <groupId >commons-dbcp</groupId >
58
+ <artifactId >commons-dbcp</artifactId >
59
+ <version >1.4</version >
60
+ </dependency >
61
+ <dependency >
62
+ <groupId >com.h2database</groupId >
63
+ <artifactId >h2</artifactId >
64
+ <version >1.4.199</version >
65
+ </dependency >
66
+ <dependency >
67
+ <groupId >org.apache.logging.log4j</groupId >
68
+ <artifactId >log4j-core</artifactId >
69
+ <version >2.13.0</version >
70
+ </dependency >
71
+ <dependency >
72
+ <groupId >com.lmax</groupId >
73
+ <artifactId >disruptor</artifactId >
74
+ <version >3.4.2</version >
75
+ </dependency >
76
+ <dependency >
77
+ <groupId >org.hibernate</groupId >
78
+ <artifactId >hibernate-entitymanager</artifactId >
79
+ <version >5.4.0.Final</version >
80
+ </dependency >
81
+ </dependencies >
82
+
83
+ </project >
0 commit comments