-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpom.xml
220 lines (205 loc) · 9 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
<?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.eXsio</groupId>
<artifactId>groovy-maven-spring-data-jdbc-static</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.1.RELEASE</version>
<relativePath/>
</parent>
<!-- JitPack repository for EntityQL library -->
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<!-- JitPack repository for EntityQL Maven plugin -->
<pluginRepositories>
<pluginRepository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</pluginRepository>
</pluginRepositories>
<dependencies>
<!-- EntityQL in the newest available version -->
<dependency>
<groupId>com.github.eXsio</groupId>
<artifactId>querydsl-entityql</artifactId>
<version>3.1.0</version>
</dependency>
<!-- QueryDSL SQL -->
<dependency>
<groupId>com.querydsl</groupId>
<artifactId>querydsl-sql</artifactId>
<version>4.2.2</version>
</dependency>
<!-- dependencies required by EntityQL when using Spring Data JDBC -->
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-jdbc</artifactId>
<version>1.1.1.RELEASE</version>
</dependency>
<!-- dependencies required by EntityQL when used with Spring -->
<dependency>
<groupId>com.querydsl</groupId>
<artifactId>querydsl-sql-spring</artifactId>
<version>4.2.2</version>
</dependency>
<dependency>
<groupId>org.reflections</groupId>
<artifactId>reflections</artifactId>
<version>0.9.11</version>
</dependency>
<!-- Spring Boot Starter -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-aop</artifactId>
</dependency>
<!-- H2 database -->
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>2.1.210</version>
</dependency>
<!-- Groovy -->
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>2.5.12</version>
<type>pom</type>
</dependency>
</dependencies>
<profiles>
<!-- This profie, if enabled, pre-compiles Groovy sources and generates EnityQL Query Models-->
<profile>
<id>generate-static-models</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.gmavenplus</groupId>
<artifactId>gmavenplus-plugin</artifactId>
<version>1.9.0</version>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>2.5.12</version>
<type>pom</type>
<scope>runtime</scope>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>com.github.eXsio</groupId>
<artifactId>querydsl-entityql-maven-plugin</artifactId>
<version>1.2.4</version>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>generate-models</goal>
</goals>
</execution>
</executions>
<configuration>
<!-- Use as many Generators as you need. You can mix and match different types as well. -->
<generators>
<!-- Generator configuration for Spring Data JDBC based Entities -->
<generator>
<type>SPRING_DATA_JDBC</type>
<sourcePackage>pl.exsio.querydsl.entityql.examples.spring_data_jdbc.entity</sourcePackage>
<destinationPackage>pl.exsio.querydsl.entityql.examples.spring_data_jdbc.entity.generated
</destinationPackage>
<!-- out of the box you can use one of the 2 provided naming strategies
- pl.exsio.querydsl.entityql.jdbc.UpperCaseWithUnderscoresNamingStrategy
- pl.exsio.querydsl.entityql.jdbc.DefaultNamingStrategy
If you want to use your own custom one, you will have to add a new <dependency/> that contains it
-->
<params>
<namingStrategy>pl.exsio.querydsl.entityql.jdbc.UpperCaseWithUnderscoresNamingStrategy
</namingStrategy>
</params>
<destinationPath>${project.basedir}\src\main\groovy</destinationPath>
<filenamePattern>Q%s.groovy</filenamePattern>
</generator>
</generators>
</configuration>
<dependencies>
<!-- use EntityQL in the same version as in project -->
<dependency>
<groupId>com.github.eXsio</groupId>
<artifactId>querydsl-entityql</artifactId>
<version>3.1.0</version>
</dependency>
<!-- needed to detect Groovy classes -->
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>2.5.12</version>
<type>pom</type>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.gmavenplus</groupId>
<artifactId>gmavenplus-plugin</artifactId>
<version>1.9.0</version>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>2.5.12</version>
<type>pom</type>
<scope>runtime</scope>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<compilerArgument>-parameters</compilerArgument>
</configuration>
</plugin>
</plugins>
</build>
</project>