|
6 | 6 |
|
7 | 7 | <groupId>dev.sassine.api</groupId> |
8 | 8 | <artifactId>sqlschema2java-core</artifactId> |
9 | | - <version>1.0.0-beta1</version> |
| 9 | + <version>1.0.0-beta</version> |
10 | 10 | <name>sqlschema2java-core</name> |
11 | 11 |
|
12 | 12 | <description>Auto generate Class DTO, Entity and Repository from SQL Query. </description> |
|
18 | 18 | <jacoco-maven-plugin.version>0.8.8</jacoco-maven-plugin.version> |
19 | 19 | <copyright.holder>Sassine El-Asmar</copyright.holder> |
20 | 20 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 21 | + <antlr4.version>4.3</antlr4.version> |
| 22 | + <pitest.version>1.7.5</pitest.version> |
| 23 | + <maven-resources.version>3.2.0</maven-resources.version> |
| 24 | + <maven-compiler>3.10.1</maven-compiler> |
| 25 | + <jax.version>2.3.1</jax.version> |
| 26 | + <logback.version>1.2.11</logback.version> |
| 27 | + <burningwave.version>12.47.0</burningwave.version> |
| 28 | + <lombok.version>1.18.22</lombok.version> |
| 29 | + <spring-jpa.version>2.6.6</spring-jpa.version> |
| 30 | + <commons-text.version>1.9</commons-text.version> |
| 31 | + <jackson.version>2.13.2</jackson.version> |
| 32 | + <log4j.version>2.17.2</log4j.version> |
| 33 | + <junit-4.version>4.13.2</junit-4.version> |
21 | 34 | </properties> |
22 | 35 |
|
23 | 36 | <developers> |
|
64 | 77 | <plugin> |
65 | 78 | <groupId>org.pitest</groupId> |
66 | 79 | <artifactId>pitest-maven</artifactId> |
67 | | - <version>1.7.5</version> |
| 80 | + <version>${pitest.version}</version> |
68 | 81 | <configuration> |
69 | 82 | <targetClasses> |
70 | 83 | <param>dev.sassine.api.structure.export.*</param> |
|
87 | 100 | <plugin> |
88 | 101 | <groupId>org.antlr</groupId> |
89 | 102 | <artifactId>antlr4-maven-plugin</artifactId> |
90 | | - <version>4.3</version> |
| 103 | + <version>${antlr4.version}</version> |
91 | 104 | <executions> |
92 | 105 | <execution> |
93 | 106 | <id>antlr</id> |
|
100 | 113 | <plugin> |
101 | 114 | <groupId>org.apache.maven.plugins</groupId> |
102 | 115 | <artifactId>maven-resources-plugin</artifactId> |
103 | | - <version>2.6</version> |
| 116 | + <version>${maven-resources.version}</version> |
104 | 117 | <configuration> |
105 | | - <encoding>UTF-8</encoding> |
| 118 | + <encoding>${project.build.sourceEncoding}</encoding> |
106 | 119 | </configuration> |
107 | 120 | </plugin> |
108 | 121 | <plugin> |
109 | 122 | <groupId>org.apache.maven.plugins</groupId> |
110 | 123 | <artifactId>maven-compiler-plugin</artifactId> |
111 | | - <version>3.8.0</version> |
| 124 | + <version>${maven-compiler}</version> |
112 | 125 | <configuration> |
113 | | - <encoding>UTF-8</encoding> |
114 | | - <source>11</source> |
115 | | - <target>11</target> |
| 126 | + <encoding>${project.build.sourceEncoding}</encoding> |
| 127 | + <source>${java.version}</source> |
| 128 | + <target>${java.version}</target> |
116 | 129 | </configuration> |
117 | 130 | </plugin> |
118 | 131 | <plugin> |
|
128 | 141 | <dependency> |
129 | 142 | <groupId>javax.xml.bind</groupId> |
130 | 143 | <artifactId>jaxb-api</artifactId> |
131 | | - <version>2.3.1</version> |
| 144 | + <version>${jax.version}</version> |
132 | 145 | </dependency> |
133 | 146 | </dependencies> |
134 | 147 | </plugin> |
|
166 | 179 | </plugins> |
167 | 180 | </build> |
168 | 181 |
|
169 | | - |
170 | 182 | <dependencies> |
171 | 183 | <dependency> |
172 | 184 | <groupId>org.antlr</groupId> |
173 | 185 | <artifactId>antlr4-runtime</artifactId> |
174 | | - <version>4.3</version> |
| 186 | + <version>${antlr4.version}</version> |
175 | 187 | </dependency> |
176 | 188 |
|
177 | 189 | <dependency> |
178 | 190 | <groupId>ch.qos.logback</groupId> |
179 | 191 | <artifactId>logback-classic</artifactId> |
180 | | - <version>1.2.11</version> |
| 192 | + <version>${logback.version}</version> |
181 | 193 | <scope>test</scope> |
182 | 194 | </dependency> |
183 | 195 |
|
184 | 196 | <dependency> |
185 | 197 | <groupId>org.burningwave</groupId> |
186 | 198 | <artifactId>core</artifactId> |
187 | | - <version>12.47.0</version> |
| 199 | + <version>${burningwave.version}</version> |
188 | 200 | </dependency> |
189 | 201 |
|
190 | 202 | <dependency> |
191 | 203 | <groupId>org.projectlombok</groupId> |
192 | 204 | <artifactId>lombok</artifactId> |
193 | | - <version>1.18.22</version> |
| 205 | + <version>${lombok.version}</version> |
194 | 206 | </dependency> |
195 | 207 |
|
196 | 208 | <dependency> |
197 | 209 | <groupId>org.springframework.boot</groupId> |
198 | 210 | <artifactId>spring-boot-starter-data-jpa</artifactId> |
199 | | - <version>2.4.2</version> |
| 211 | + <version>${spring-jpa.version}</version> |
200 | 212 | <exclusions> |
201 | 213 | <exclusion> |
202 | 214 | <groupId>org.springframework.boot</groupId> |
|
236 | 248 | <dependency> |
237 | 249 | <groupId>org.apache.commons</groupId> |
238 | 250 | <artifactId>commons-text</artifactId> |
239 | | - <version>1.9</version> |
| 251 | + <version>${commons-text.version}</version> |
240 | 252 | </dependency> |
241 | 253 |
|
242 | 254 | <dependency> |
243 | 255 | <groupId>com.fasterxml.jackson.core</groupId> |
244 | 256 | <artifactId>jackson-core</artifactId> |
245 | | - <version>2.13.2</version> |
| 257 | + <version>${jackson.version}</version> |
246 | 258 | </dependency> |
247 | 259 |
|
248 | 260 | <dependency> |
249 | 261 | <groupId>com.fasterxml.jackson.core</groupId> |
250 | 262 | <artifactId>jackson-annotations</artifactId> |
251 | | - <version>2.13.2</version> |
| 263 | + <version>${jackson.version}</version> |
252 | 264 | </dependency> |
253 | 265 |
|
254 | 266 | <dependency> |
255 | 267 | <groupId>com.fasterxml.jackson.core</groupId> |
256 | 268 | <artifactId>jackson-databind</artifactId> |
257 | | - <version>2.13.2.2</version> |
| 269 | + <version>${jackson.version}</version> |
258 | 270 | </dependency> |
259 | 271 |
|
260 | 272 | <dependency> |
261 | 273 | <groupId>com.fasterxml.jackson.datatype</groupId> |
262 | 274 | <artifactId>jackson-datatype-jsr310</artifactId> |
263 | | - <version>2.13.2</version> |
| 275 | + <version>${jackson.version}</version> |
264 | 276 | </dependency> |
265 | 277 |
|
266 | 278 | <dependency> |
267 | 279 | <groupId>junit</groupId> |
268 | 280 | <artifactId>junit</artifactId> |
269 | | - <version>4.13.2</version> |
| 281 | + <version>${junit-4.version}</version> |
270 | 282 | <scope>test</scope> |
271 | 283 | </dependency> |
272 | 284 |
|
273 | 285 |
|
274 | 286 | <dependency> |
275 | 287 | <groupId>org.apache.logging.log4j</groupId> |
276 | 288 | <artifactId>log4j-api</artifactId> |
277 | | - <version>2.17.2</version> |
| 289 | + <version>${log4j.version}</version> |
278 | 290 | </dependency> |
279 | 291 |
|
280 | 292 | <dependency> |
281 | 293 | <groupId>org.apache.logging.log4j</groupId> |
282 | 294 | <artifactId>log4j-core</artifactId> |
283 | | - <version>2.17.2</version> |
| 295 | + <version>${log4j.version}</version> |
284 | 296 | </dependency> |
285 | 297 |
|
286 | 298 |
|
|
0 commit comments