|
23 | 23 | <groupId>org.apache.uima</groupId> |
24 | 24 | <artifactId>parent-pom</artifactId> |
25 | 25 | <relativePath /> |
26 | | - <version>15-SNAPSHOT</version> |
| 26 | + <version>15</version> |
27 | 27 | </parent> |
28 | 28 | <artifactId>uimafit-parent</artifactId> |
29 | 29 | <version>3.3.0-SNAPSHOT</version> |
|
41 | 41 | <maven.compiler.source>1.8</maven.compiler.source> |
42 | 42 | <maven.compiler.target>1.8</maven.compiler.target> |
43 | 43 | <api_check_oldVersion>3.2.0</api_check_oldVersion> |
44 | | - |
| 44 | + |
45 | 45 | <assertj-version>3.22.0</assertj-version> |
46 | 46 | <commons-io-version>2.11.0</commons-io-version> |
47 | 47 | <commons-lang3-version>3.12.0</commons-lang3-version> |
48 | 48 | <junit-version>5.8.2</junit-version> |
49 | 49 | <groovy-version>3.0.10</groovy-version> |
50 | 50 | <mockito-version>4.4.0</mockito-version> |
51 | | - <spring-version>5.3.19</spring-version> |
| 51 | + <spring-version>5.3.20</spring-version> |
52 | 52 | <slf4j-version>1.7.36</slf4j-version> |
53 | 53 | <uima-version>3.3.0</uima-version> |
54 | 54 | <xmlunit-version>2.9.0</xmlunit-version> |
55 | 55 | </properties> |
56 | | - |
| 56 | + |
57 | 57 | <dependencies> |
58 | 58 | <dependency> |
59 | 59 | <groupId>org.junit.jupiter</groupId> |
|
192 | 192 |
|
193 | 193 | <build> |
194 | 194 | <plugins> |
| 195 | + <plugin> |
| 196 | + <groupId>org.apache.maven.plugins</groupId> |
| 197 | + <artifactId>maven-toolchains-plugin</artifactId> |
| 198 | + <executions> |
| 199 | + <execution> |
| 200 | + <goals> |
| 201 | + <goal>toolchain</goal> |
| 202 | + </goals> |
| 203 | + </execution> |
| 204 | + </executions> |
| 205 | + <configuration> |
| 206 | + <toolchains> |
| 207 | + <jdk> |
| 208 | + <version>${maven.compiler.target}</version> |
| 209 | + </jdk> |
| 210 | + </toolchains> |
| 211 | + </configuration> |
| 212 | + </plugin> |
195 | 213 | <plugin> |
196 | 214 | <!-- See: https://issues.apache.org/jira/browse/UIMA-6351 --> |
197 | 215 | <groupId>com.github.siom79.japicmp</groupId> |
|
244 | 262 | <goal>execute</goal> |
245 | 263 | </goals> |
246 | 264 | <configuration> |
247 | | - <source> |
| 265 | + <source><![CDATA[ |
248 | 266 | def noticeFile = new File(project.basedir.path + "/NOTICE"); |
249 | 267 | if (noticeFile.exists()) { |
250 | 268 | project.properties.postNoticeText = noticeFile.text; |
251 | 269 | println "Loaded NOTICE file content into property [postNoticeText]" |
252 | 270 | } else { |
253 | 271 | println "No NOTICE file was found - content not loaded into property [postNoticeText]" |
254 | 272 | } |
255 | | - </source> |
| 273 | + ]]></source> |
256 | 274 | </configuration> |
257 | 275 | </execution> |
258 | 276 | </executions> |
|
0 commit comments