Skip to content

Commit 831c64e

Browse files
authored
ci build (#13)
* update * update
1 parent db17621 commit 831c64e

File tree

4 files changed

+16
-2
lines changed

4 files changed

+16
-2
lines changed

.github/workflows/maven.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
with:
2525
java-version: '8'
2626
distribution: 'temurin'
27+
maven-version: '3.9.9'
2728
cache: maven
2829
- name: Build with Maven
2930
run: mvn -U clean install

pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,12 @@
124124
<target>${java.version}</target>
125125
</configuration>
126126
</plugin>
127+
128+
<plugin>
129+
<groupId>org.apache.maven.plugins</groupId>
130+
<artifactId>maven-surefire-plugin</artifactId>
131+
<version>3.3.1</version>
132+
</plugin>
127133
</plugins>
128134
</pluginManagement>
129135

x-rpc-test/pom.xml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,13 @@
6060
<scope>test</scope>
6161
</dependency>
6262
<!-- test scope end -->
63-
6463
</dependencies>
64+
<build>
65+
<plugins>
66+
<plugin>
67+
<groupId>org.apache.maven.plugins</groupId>
68+
<artifactId>maven-surefire-plugin</artifactId>
69+
</plugin>
70+
</plugins>
71+
</build>
6572
</project>

x-rpc-test/src/test/resources/logback.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<pattern>%-4relative [%thread] %-5level %logger{35} - %msg %n</pattern>
55
</encoder>
66
</appender>
7-
<root level="DEBUG">
7+
<root level="INFO">
88
<appender-ref ref="STDOUT"/>
99
</root>
1010
</configuration>

0 commit comments

Comments
 (0)