1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5
+ <modelVersion >4.0.0</modelVersion >
6
+
7
+ <groupId >com.cosium.spring.data</groupId >
8
+ <artifactId >spring-data-jpa-entity-graph</artifactId >
9
+ <version >1.11.00-SNAPSHOT</version >
10
+
11
+ <properties >
12
+ <source .level>1.6</source .level>
13
+ <spring .data.jpa>1.11.0.BUILD-SNAPSHOT</spring .data.jpa>
14
+ <eclipselink >2.6.2</eclipselink >
15
+ <querydsl >4.1.3</querydsl >
16
+ </properties >
17
+
18
+ <dependencies >
19
+ <dependency >
20
+ <groupId >org.springframework.data</groupId >
21
+ <artifactId >spring-data-jpa</artifactId >
22
+ <version >${spring.data.jpa} </version >
23
+ <scope >provided</scope >
24
+ </dependency >
25
+ <dependency >
26
+ <groupId >org.eclipse.persistence</groupId >
27
+ <artifactId >org.eclipse.persistence.jpa</artifactId >
28
+ <version >${eclipselink} </version >
29
+ <optional >true</optional >
30
+ </dependency >
31
+
32
+ <dependency >
33
+ <groupId >com.querydsl</groupId >
34
+ <artifactId >querydsl-apt</artifactId >
35
+ <version >${querydsl} </version >
36
+ <scope >provided</scope >
37
+ </dependency >
38
+
39
+ <dependency >
40
+ <groupId >com.querydsl</groupId >
41
+ <artifactId >querydsl-jpa</artifactId >
42
+ <version >${querydsl} </version >
43
+ <optional >true</optional >
44
+ </dependency >
45
+ </dependencies >
46
+
47
+ <build >
48
+ <pluginManagement >
49
+ <plugins >
50
+ <plugin >
51
+ <groupId >org.apache.maven.plugins</groupId >
52
+ <artifactId >maven-compiler-plugin</artifactId >
53
+ <version >3.3</version >
54
+ <configuration >
55
+ <source >${source.level} </source >
56
+ <target >${source.level} </target >
57
+ </configuration >
58
+ </plugin >
59
+ <plugin >
60
+ <groupId >org.apache.maven.plugins</groupId >
61
+ <artifactId >maven-source-plugin</artifactId >
62
+ <version >3.0.0</version >
63
+ </plugin >
64
+ <plugin >
65
+ <groupId >org.apache.maven.plugins</groupId >
66
+ <artifactId >maven-javadoc-plugin</artifactId >
67
+ <version >2.10.3</version >
68
+ <configuration >
69
+ <failOnError >false</failOnError >
70
+ </configuration >
71
+ </plugin >
72
+ <plugin >
73
+ <groupId >org.apache.maven.plugins</groupId >
74
+ <artifactId >maven-deploy-plugin</artifactId >
75
+ <version >2.8.2</version >
76
+ </plugin >
77
+ <plugin >
78
+ <groupId >org.apache.maven.plugins</groupId >
79
+ <artifactId >maven-surefire-plugin</artifactId >
80
+ <version >2.19.1</version >
81
+ </plugin >
82
+ <plugin >
83
+ <groupId >org.apache.maven.plugins</groupId >
84
+ <artifactId >maven-release-plugin</artifactId >
85
+ <version >2.5</version >
86
+ <configuration >
87
+ <pushChanges >false</pushChanges >
88
+ <localCheckout >true</localCheckout >
89
+ </configuration >
90
+ </plugin >
91
+ </plugins >
92
+ </pluginManagement >
93
+ <plugins >
94
+ <plugin >
95
+ <groupId >org.apache.maven.plugins</groupId >
96
+ <artifactId >maven-compiler-plugin</artifactId >
97
+ <configuration >
98
+ <source >${source.level} </source >
99
+ <target >${source.level} </target >
100
+ </configuration >
101
+ </plugin >
102
+ <plugin >
103
+ <groupId >org.apache.maven.plugins</groupId >
104
+ <artifactId >maven-source-plugin</artifactId >
105
+ <executions >
106
+ <execution >
107
+ <id >attach-sources</id >
108
+ <goals >
109
+ <goal >jar</goal >
110
+ </goals >
111
+ </execution >
112
+ </executions >
113
+ </plugin >
114
+ <plugin >
115
+ <groupId >org.apache.maven.plugins</groupId >
116
+ <artifactId >maven-javadoc-plugin</artifactId >
117
+ <configuration >
118
+ <failOnError >false</failOnError >
119
+ </configuration >
120
+ </plugin >
121
+ </plugins >
122
+ </build >
123
+
124
+ <organization >
125
+ <name >Cosium</name >
126
+ <url >http://www.cosium.com</url >
127
+ </organization >
128
+
129
+ <developers >
130
+ <developer >
131
+ <id >reda-alaoui</id >
132
+ <name >Réda Housni Alaoui</name >
133
+
134
+ <url >https://github.com/reda-alaoui</url >
135
+ </developer >
136
+ </developers >
137
+
138
+ </project >
0 commit comments