|
7 | 7 | <version>1.0.1-SNAPSHOT</version> |
8 | 8 | <properties> |
9 | 9 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
10 | | - <maven.compiler.source>22</maven.compiler.source> |
11 | | - <maven.compiler.target>22</maven.compiler.target> |
| 10 | + <maven.compiler.source>24</maven.compiler.source> |
| 11 | + <maven.compiler.target>24</maven.compiler.target> |
12 | 12 |
|
13 | 13 | <!-- |
14 | 14 | Make sure you upgrade the ebean-migration dependency as well. |
15 | 15 | The version numbers don't match exactly. |
16 | 16 | --> |
17 | | - <ebean.version>13.6.3</ebean.version> |
18 | | - <camel.version>3.21.4</camel.version> |
| 17 | + <ebean.version>14.11.0</ebean.version> |
| 18 | + <camel.version>4.10.2</camel.version> |
19 | 19 | </properties> |
20 | 20 |
|
21 | 21 | <repositories> |
|
30 | 30 | <dependency> |
31 | 31 | <groupId>ch.qos.logback</groupId> |
32 | 32 | <artifactId>logback-classic</artifactId> |
33 | | - <version>1.3.14</version> |
| 33 | + <version>1.5.13</version> |
34 | 34 | </dependency> |
35 | 35 | <dependency> |
36 | 36 | <groupId>com.fasterxml.jackson.core</groupId> |
37 | 37 | <artifactId>jackson-databind</artifactId> |
38 | | - <version>2.13.4.2</version> |
| 38 | + <version>2.15.0</version> |
39 | 39 | </dependency> |
40 | 40 | <dependency> |
41 | 41 | <groupId>com.h2database</groupId> |
|
45 | 45 | <dependency> |
46 | 46 | <groupId>io.ebean</groupId> |
47 | 47 | <artifactId>ebean</artifactId> |
48 | | - <version>${ebean.version}</version> |
| 48 | + <version>${ebean.version}-javax</version> |
49 | 49 | </dependency> |
50 | 50 | <dependency> |
51 | 51 | <groupId>io.ebean</groupId> |
|
62 | 62 | <groupId>club.minced</groupId> |
63 | 63 | <artifactId>opus-java</artifactId> |
64 | 64 | </exclusion> |
| 65 | + <exclusion> |
| 66 | + <groupId>com.google.crypto.tink</groupId> |
| 67 | + <artifactId>tink</artifactId> |
| 68 | + </exclusion> |
65 | 69 | </exclusions> |
66 | 70 | </dependency> |
67 | 71 | <dependency> |
|
116 | 120 | <dependency> |
117 | 121 | <groupId>io.ebean</groupId> |
118 | 122 | <artifactId>ebean-test</artifactId> |
119 | | - <version>${ebean.version}</version> |
| 123 | + <version>${ebean.version}-javax</version> |
120 | 124 | <scope>test</scope> |
121 | 125 | </dependency> |
122 | 126 | <dependency> |
|
140 | 144 | <version>3.8.1</version> |
141 | 145 | <configuration> |
142 | 146 | <compilerArgs> |
143 | | - <arg>-Werror</arg> |
| 147 | +<!-- <arg>-Werror</arg>--> |
144 | 148 | <arg>-Xlint:all</arg> |
145 | 149 | </compilerArgs> |
| 150 | + <annotationProcessorPaths> |
| 151 | + <path> |
| 152 | + <groupId>io.ebean</groupId> |
| 153 | + <artifactId>querybean-generator</artifactId> |
| 154 | + <version>${ebean.version}</version> |
| 155 | + </path> |
| 156 | + </annotationProcessorPaths> |
146 | 157 | </configuration> |
147 | 158 | </plugin> |
148 | 159 | <plugin> |
|
179 | 190 | <groupId>io.ebean</groupId> |
180 | 191 | <artifactId>ebean-maven-plugin</artifactId> |
181 | 192 | <version>${ebean.version}</version> |
182 | | - <executions> |
183 | | - <execution> |
184 | | - <id>main</id> |
185 | | - <phase>process-classes</phase> |
186 | | - <configuration> |
187 | | - <transformArgs>debug=1</transformArgs> |
188 | | - </configuration> |
189 | | - <goals> |
190 | | - <goal>enhance</goal> |
191 | | - </goals> |
192 | | - </execution> |
193 | | - <execution> |
194 | | - <id>test</id> |
195 | | - <phase>process-test-classes</phase> |
196 | | - <configuration> |
197 | | - <transformArgs>debug=1</transformArgs> |
198 | | - </configuration> |
199 | | - <goals> |
200 | | - <goal>testEnhance</goal> |
201 | | - </goals> |
202 | | - </execution> |
203 | | - </executions> |
| 193 | + <extensions>true</extensions> |
204 | 194 | </plugin> |
205 | 195 | <plugin> |
206 | 196 | <groupId>org.apache.maven.plugins</groupId> |
|
0 commit comments