1
+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
2
+ <modelVersion >4.0.0</modelVersion >
3
+ <parent >
4
+ <groupId >com.fasterxml.jackson.datatype</groupId >
5
+ <artifactId >jackson-datatype-hibernate-parent</artifactId >
6
+ <version >2.8.6-SNAPSHOT</version >
7
+ </parent >
8
+ <artifactId >jackson-datatype-hibernate5_2-test</artifactId >
9
+ <dependencies >
10
+ <dependency >
11
+ <groupId >com.fasterxml.jackson.datatype</groupId >
12
+ <artifactId >jackson-datatype-hibernate5</artifactId >
13
+ <version >2.8.6-SNAPSHOT</version >
14
+ <scope >test</scope >
15
+ </dependency >
16
+ <dependency >
17
+ <groupId >com.fasterxml.jackson.datatype</groupId >
18
+ <artifactId >jackson-datatype-hibernate5</artifactId >
19
+ <version >2.8.6-SNAPSHOT</version >
20
+ <type >test-jar</type >
21
+ <scope >test</scope >
22
+ </dependency >
23
+ <dependency >
24
+ <groupId >org.hibernate</groupId >
25
+ <artifactId >hibernate-core</artifactId >
26
+ <version >5.2.0.Final</version >
27
+ <scope >provided</scope >
28
+ </dependency >
29
+
30
+ <!-- and for testing, JUnit is needed -->
31
+ <dependency >
32
+ <groupId >junit</groupId >
33
+ <artifactId >junit</artifactId >
34
+ <version >4.8.2</version >
35
+ <scope >test</scope >
36
+ </dependency >
37
+ <!-- and for some contributed tests Mockito -->
38
+ <dependency >
39
+ <groupId >org.mockito</groupId >
40
+ <artifactId >mockito-core</artifactId >
41
+ <version >1.10.19</version >
42
+ <scope >test</scope >
43
+ </dependency >
44
+ <dependency >
45
+ <groupId >com.fasterxml.jackson.core</groupId >
46
+ <artifactId >jackson-annotations</artifactId >
47
+ <scope >test</scope >
48
+ </dependency >
49
+ <dependency >
50
+ <groupId >org.slf4j</groupId >
51
+ <artifactId >slf4j-log4j12</artifactId >
52
+ <version >1.6.1</version >
53
+ <scope >test</scope >
54
+ </dependency >
55
+ <dependency >
56
+ <groupId >log4j</groupId >
57
+ <artifactId >log4j</artifactId >
58
+ <version >1.2.16</version >
59
+ <scope >test</scope >
60
+ </dependency >
61
+ <dependency >
62
+ <groupId >com.h2database</groupId >
63
+ <artifactId >h2</artifactId >
64
+ <version >1.3.155</version >
65
+ <scope >test</scope >
66
+ </dependency >
67
+ </dependencies >
68
+ <profiles >
69
+ <profile >
70
+ <id >hibernate5_2-test</id >
71
+ <activation >
72
+ <jdk >1.8</jdk >
73
+ </activation >
74
+ <build >
75
+ <plugins >
76
+ <plugin >
77
+ <groupId >org.apache.maven.plugins</groupId >
78
+ <artifactId >maven-surefire-plugin</artifactId >
79
+ <configuration >
80
+ <dependenciesToScan >
81
+ <dependency >com.fasterxml.jackson.datatype:jackson-datatype-hibernate5</dependency >
82
+ </dependenciesToScan >
83
+ </configuration >
84
+ </plugin >
85
+ </plugins >
86
+ </build >
87
+ </profile >
88
+ </profiles >
89
+ </project >
0 commit comments