|
1 |
| -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
2 |
| - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 | + 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"> |
3 | 3 | <modelVersion>4.0.0</modelVersion>
|
4 | 4 | <groupId>com.example</groupId>
|
5 | 5 | <artifactId>MyRemoteLibrary</artifactId>
|
|
15 | 15 | <dependency>
|
16 | 16 | <groupId>org.robotframework</groupId>
|
17 | 17 | <artifactId>javalib-core</artifactId>
|
18 |
| - <version>0.9.1</version> |
| 18 | + <version>2.0.3</version> |
19 | 19 | </dependency>
|
20 | 20 |
|
21 | 21 | <!-- serve the library remotely -->
|
22 | 22 | <dependency>
|
23 |
| - <groupId>com.github.ombre42</groupId> |
| 23 | + <groupId>org.robotframework</groupId> |
24 | 24 | <artifactId>jrobotremoteserver</artifactId>
|
25 |
| - <version>2.0-BETA</version> |
| 25 | + <version>4.1.0</version> |
26 | 26 | </dependency>
|
27 | 27 |
|
28 | 28 | <!-- escape text for HTML and copy IO streams -->
|
| 29 | + <dependency> |
| 30 | + <groupId>org.apache.commons</groupId> |
| 31 | + <artifactId>commons-lang3</artifactId> |
| 32 | + <version>3.12.0</version> |
| 33 | + </dependency> |
29 | 34 | <dependency>
|
30 | 35 | <groupId>commons-io</groupId>
|
31 | 36 | <artifactId>commons-io</artifactId>
|
32 |
| - <version>2.3</version> |
| 37 | + <version>2.11.0</version> |
33 | 38 | </dependency>
|
34 | 39 |
|
35 | 40 | <!-- used to generate the library documentation -->
|
36 | 41 | <dependency>
|
37 | 42 | <groupId>org.robotframework</groupId>
|
38 | 43 | <artifactId>robotframework</artifactId>
|
39 |
| - <version>2.7.0</version> |
| 44 | + <version>4.1.2</version> |
40 | 45 | <scope>test</scope>
|
41 | 46 | </dependency>
|
42 | 47 |
|
43 | 48 | <!-- unit testing framework used to generate the library documentation -->
|
44 | 49 | <dependency>
|
45 | 50 | <groupId>org.testng</groupId>
|
46 | 51 | <artifactId>testng</artifactId>
|
47 |
| - <version>6.3.1</version> |
| 52 | + <version>7.5</version> |
48 | 53 | <scope>test</scope>
|
49 | 54 | </dependency>
|
50 | 55 | </dependencies>
|
51 | 56 | <build>
|
52 | 57 | <plugins>
|
53 |
| - |
| 58 | + <plugin> |
| 59 | + <groupId>org.apache.maven.plugins</groupId> |
| 60 | + <artifactId>maven-compiler-plugin</artifactId> |
| 61 | + <version>3.8.1</version> |
| 62 | + <configuration> |
| 63 | + <source>1.8</source> |
| 64 | + <target>1.8</target> |
| 65 | + </configuration> |
| 66 | + </plugin> |
54 | 67 | <!-- create a jar with all dependencies i.e. a standalone jar -->
|
55 | 68 | <plugin>
|
56 | 69 | <artifactId>maven-assembly-plugin</artifactId>
|
|
81 | 94 |
|
82 | 95 | <!-- execute Robot Framework tests during the build -->
|
83 | 96 | <plugin>
|
84 |
| - <groupId>com.googlecode.robotframework-maven-plugin</groupId> |
| 97 | + <groupId>org.robotframework</groupId> |
85 | 98 | <artifactId>robotframework-maven-plugin</artifactId>
|
86 |
| - <version>1.1.1</version> |
| 99 | + <version>2.1.0</version> |
87 | 100 | <executions>
|
88 | 101 | <execution>
|
89 | 102 | <phase>test</phase>
|
|
93 | 106 | </execution>
|
94 | 107 | </executions>
|
95 | 108 | <configuration>
|
96 |
| - |
| 109 | + <logLevel>TRACE:INFO</logLevel> |
| 110 | + <testCasesDirectory>src/test/resources/robotframework/tests</testCasesDirectory> |
97 | 111 | <!-- communicate to the acceptance tests that the library is being built -->
|
98 | 112 | <variables>
|
99 | 113 | <variable>BUILDING:True</variable>
|
|
0 commit comments