Skip to content

Commit e25e907

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 6b8ce73 + c0216cd commit e25e907

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

.github/workflows/maven.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Java CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v1
12+
- name: Set up JDK 1.8
13+
uses: actions/setup-java@v1
14+
with:
15+
java-version: 1.8
16+
- name: Build with Maven
17+
run: mvn -B package --file pom.xml

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@
239239
<dependency>
240240
<groupId>io.netty</groupId>
241241
<artifactId>netty-all</artifactId>
242-
<version>4.1.17.Final</version>
242+
<version>4.1.42.Final</version>
243243
</dependency>
244244

245245
<!--mina 相关jar -->

0 commit comments

Comments
 (0)