|
21 | 21 | <groupId>org.robotframework</groupId> |
22 | 22 | <artifactId>javafxlibrary</artifactId> |
23 | 23 | <packaging>jar</packaging> |
24 | | - <version>0.5.2-SNAPSHOT</version> |
| 24 | + <version>0.5.2</version> |
25 | 25 | <properties> |
26 | 26 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
27 | 27 | </properties> |
|
102 | 102 | </execution> |
103 | 103 | </executions> |
104 | 104 | </plugin> |
| 105 | + <!-- Upload also documentation --> |
| 106 | + <plugin> |
| 107 | + <groupId>org.codehaus.mojo</groupId> |
| 108 | + <artifactId>build-helper-maven-plugin</artifactId> |
| 109 | + <version>1.10</version> |
| 110 | + <executions> |
| 111 | + <execution> |
| 112 | + <id>attach-artifacts</id> |
| 113 | + <phase>package</phase> |
| 114 | + <goals> |
| 115 | + <goal>attach-artifact</goal> |
| 116 | + </goals> |
| 117 | + <configuration> |
| 118 | + <artifacts> |
| 119 | + <artifact> |
| 120 | + <file>${project.build.directory}/${project.artifactId}.html</file> |
| 121 | + <type>html</type> |
| 122 | + </artifact> |
| 123 | + <artifact> |
| 124 | + <file>${project.build.directory}/${project.artifactId}.xml</file> |
| 125 | + <type>xml</type> |
| 126 | + </artifact> |
| 127 | + </artifacts> |
| 128 | + </configuration> |
| 129 | + </execution> |
| 130 | + </executions> |
| 131 | + </plugin> |
105 | 132 | <plugin> |
106 | 133 | <groupId>org.apache.maven.plugins</groupId> |
107 | 134 | <artifactId>maven-gpg-plugin</artifactId> |
|
138 | 165 |
|
139 | 166 | <build> |
140 | 167 | <plugins> |
| 168 | + <plugin> |
| 169 | + <groupId>org.apache.maven.plugins</groupId> |
| 170 | + <artifactId>maven-surefire-plugin</artifactId> |
| 171 | + <version>3.0.0-M1</version> |
| 172 | + </plugin> |
141 | 173 | <plugin> |
142 | 174 | <groupId>org.sonatype.plugins</groupId> |
143 | 175 | <artifactId>nexus-staging-maven-plugin</artifactId> |
|
219 | 251 | </excludes> |
220 | 252 | <logLevel>TRACE:INFO</logLevel> |
221 | 253 | <dryrun>false</dryrun> |
| 254 | + <variables> |
| 255 | + <variable>appJar:${project.build.directory}/${project.artifactId}*tests.jar</variable> |
| 256 | + </variables> |
222 | 257 | </configuration> |
223 | 258 | </execution> |
224 | 259 | <execution> |
|
229 | 264 | </goals> |
230 | 265 | <configuration> |
231 | 266 | <libdoc> |
| 267 | + <outputDirectory>${project.build.directory}</outputDirectory> |
232 | 268 | <outputFile>${project.artifactId}.html</outputFile> |
233 | 269 | <libraryOrResourceFile>JavaFXLibrary</libraryOrResourceFile> |
234 | 270 | <version>${project.version}</version> |
|
243 | 279 | </goals> |
244 | 280 | <configuration> |
245 | 281 | <libdoc> |
| 282 | + <outputDirectory>${project.build.directory}</outputDirectory> |
246 | 283 | <outputFile>${project.artifactId}.xml</outputFile> |
247 | 284 | <libraryOrResourceFile>JavaFXLibrary</libraryOrResourceFile> |
248 | 285 | <version>${project.version}</version> |
|
272 | 309 | <pattern>com.google.common</pattern> |
273 | 310 | <shadedPattern>shaded.com.google.common</shadedPattern> |
274 | 311 | </relocation> |
| 312 | + <relocation> |
| 313 | + <pattern>org.apache.commons</pattern> |
| 314 | + <shadedPattern>shaded.org.apache.commons</shadedPattern> |
| 315 | + </relocation> |
275 | 316 | </relocations> |
276 | 317 | <artifactSet> |
277 | 318 | <includes> |
|
299 | 340 | <dependency> |
300 | 341 | <groupId>org.apache.maven</groupId> |
301 | 342 | <artifactId>maven-model</artifactId> |
302 | | - <version>3.3.9</version> |
| 343 | + <version>3.6.0</version> |
303 | 344 | </dependency> |
304 | 345 | <dependency> |
305 | 346 | <groupId>org.jmockit</groupId> |
|
315 | 356 | <dependency> |
316 | 357 | <groupId>org.testfx</groupId> |
317 | 358 | <artifactId>testfx-core</artifactId> |
318 | | - <version>4.0.14-alpha</version> |
319 | | - </dependency> |
320 | | - <dependency> |
321 | | - <groupId>org.testfx</groupId> |
322 | | - <artifactId>testfx-junit</artifactId> |
323 | | - <version>4.0.14-alpha</version> |
| 359 | + <version>4.0.15-alpha</version> |
324 | 360 | </dependency> |
325 | 361 | <dependency> |
326 | 362 | <groupId>org.testfx</groupId> |
|
336 | 372 | <dependency> |
337 | 373 | <groupId>org.robotframework</groupId> |
338 | 374 | <artifactId>robotframework</artifactId> |
339 | | - <version>3.0.2</version> |
| 375 | + <version>3.0.4</version> |
340 | 376 | </dependency> |
341 | 377 | <dependency> |
342 | 378 | <groupId>org.hamcrest</groupId> |
|
346 | 382 | <dependency> |
347 | 383 | <groupId>com.google.guava</groupId> |
348 | 384 | <artifactId>guava</artifactId> |
349 | | - <version>23.0</version> |
| 385 | + <version>27.0.1-jre</version> |
350 | 386 | </dependency> |
351 | 387 | <dependency> |
352 | 388 | <groupId>com.github.ombre42</groupId> |
|
0 commit comments