Skip to content

Commit 5d3ad01

Browse files
committed
chore(deps): Updated dependencies and plugins
Update actions
1 parent 1f881eb commit 5d3ad01

3 files changed

Lines changed: 22 additions & 18 deletions

File tree

.github/workflows/maven.yml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,13 @@ jobs:
1212
java: [ 8 ]
1313
name: Test with Java ${{ matrix.java }}
1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v3
1616
- name: Set up JDK ${{ matrix.java }}
17-
uses: actions/setup-java@v1.2.0
17+
uses: actions/setup-java@v2
1818
with:
19+
distribution: 'zulu'
1920
java-version: ${{ matrix.java }}
21+
cache: 'maven'
2022
- name: Build with Maven
2123
run: mvn -B verify --file pom.xml
2224
release:
@@ -25,13 +27,15 @@ jobs:
2527
runs-on: ubuntu-latest
2628
name: Release package
2729
steps:
28-
- uses: actions/checkout@v2
30+
- uses: actions/checkout@v3
2931
- name: Set up JDK
30-
uses: actions/setup-java@v1.2.0
32+
uses: actions/setup-java@v2
3133
with:
32-
java-version: 8
34+
distribution: 'zulu'
35+
java-version: '8'
36+
cache: 'maven'
3337
- name: Release Maven package
34-
uses: samuelmeuli/action-maven-publish@1221d1fa792cab948a772c5e7c1f3abe84aec3bf
38+
uses: samuelmeuli/action-maven-publish@201a45a3f311b2ee888f252ba9f4194257545709 # tag=v1.4.0
3539
with:
3640
gpg_private_key: ${{ secrets.gpg_private_key }}
3741
gpg_passphrase: ${{ secrets.gpg_passphrase }}

pom.xml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,12 @@
5555
<dependency>
5656
<groupId>org.eclipse.jetty</groupId>
5757
<artifactId>jetty-servlet</artifactId>
58-
<version>9.4.31.v20200723</version>
58+
<version>9.4.45.v20220203</version>
5959
</dependency>
6060
<dependency>
6161
<groupId>org.apache.commons</groupId>
6262
<artifactId>commons-lang3</artifactId>
63-
<version>3.11</version>
63+
<version>3.12.0</version>
6464
</dependency>
6565
<dependency>
6666
<groupId>org.apache.commons</groupId>
@@ -70,12 +70,12 @@
7070
<dependency>
7171
<groupId>org.apache.logging.log4j</groupId>
7272
<artifactId>log4j-core</artifactId>
73-
<version>2.13.3</version>
73+
<version>2.17.2</version>
7474
</dependency>
7575
<dependency>
7676
<groupId>org.apache.logging.log4j</groupId>
7777
<artifactId>log4j-jcl</artifactId>
78-
<version>2.13.3</version>
78+
<version>2.17.2</version>
7979
</dependency>
8080
<dependency>
8181
<groupId>org.robotframework</groupId>
@@ -91,7 +91,7 @@
9191
<dependency>
9292
<groupId>org.testng</groupId>
9393
<artifactId>testng</artifactId>
94-
<version>7.3.0</version>
94+
<version>7.5</version>
9595
<scope>test</scope>
9696
</dependency>
9797
<dependency>
@@ -102,7 +102,7 @@
102102
<dependency>
103103
<groupId>org.jboss.resteasy</groupId>
104104
<artifactId>tjws</artifactId>
105-
<version>3.9.3.Final</version>
105+
<version>3.15.3.Final</version>
106106
<scope>test</scope>
107107
</dependency>
108108
</dependencies>
@@ -138,7 +138,7 @@
138138
</goals>
139139
</execution>
140140
</executions>
141-
<version>3.2.0</version>
141+
<version>3.3.0</version>
142142
<configuration>
143143
<descriptorRefs>
144144
<descriptorRef>jar-with-dependencies</descriptorRef>
@@ -161,7 +161,7 @@
161161
<plugin>
162162
<groupId>org.apache.maven.plugins</groupId>
163163
<artifactId>maven-javadoc-plugin</artifactId>
164-
<version>3.1.1</version>
164+
<version>3.2.0</version>
165165
<executions>
166166
<execution>
167167
<goals>
@@ -182,7 +182,7 @@
182182
<plugin>
183183
<groupId>org.apache.maven.plugins</groupId>
184184
<artifactId>maven-antrun-plugin</artifactId>
185-
<version>1.8</version>
185+
<version>3.0.0</version>
186186
<executions>
187187
<execution>
188188
<id>define-classpath</id>
@@ -203,7 +203,7 @@
203203
<plugin>
204204
<groupId>org.robotframework</groupId>
205205
<artifactId>robotframework-maven-plugin</artifactId>
206-
<version>1.7.2</version>
206+
<version>2.1.0</version>
207207
<executions>
208208
<execution>
209209
<id>FullDynamic</id>
@@ -381,7 +381,7 @@
381381
<plugin>
382382
<groupId>org.sonatype.plugins</groupId>
383383
<artifactId>nexus-staging-maven-plugin</artifactId>
384-
<version>1.6.7</version>
384+
<version>1.6.8</version>
385385
<extensions>true</extensions>
386386
<configuration>
387387
<serverId>ossrh</serverId>

src/main/java/org/robotframework/remoteserver/RemoteServer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ public void start() throws Exception {
235235
}
236236

237237
/**
238-
* Configures logging systems used by <tt>RemoteServer</tt> and its
238+
* Configures logging systems used by <i>RemoteServer</i> and its
239239
* dependencies. Specifically,
240240
* <ul>
241241
* <li>Configure Log4J to log to the console</li>

0 commit comments

Comments
 (0)