Skip to content

Commit 1b54b18

Browse files
authored
Merge pull request #942 from scouter-project/develop
Develop
2 parents 2f8c29c + 8bde73c commit 1b54b18

File tree

137 files changed

+3933
-5417
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

137 files changed

+3933
-5417
lines changed

build_package.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ if [ -z "$MVN" ]; then
1515
exit 1
1616
else
1717
$MVN -Dmaven.test.skip=true clean install
18-
$MVN -Dmaven.test.skip=true -f ./scouter.agent.java/pom.xml -Pjava-legacy clean package
18+
# $MVN -Dmaven.test.skip=true -f ./scouter.agent.java/pom.xml -Pjava-legacy clean package
1919
$MVN -Dmaven.test.skip=true -f ./scouter.deploy/pom.xml clean package
2020
fi

pom.xml

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>io.github.scouter-project</groupId>
66
<artifactId>scouter-parent</artifactId>
7-
<version>2.17.1</version> <!--scouter-->
7+
<version>2.20.0</version> <!--scouter-->
88
<packaging>pom</packaging>
99

1010
<name>SCOUTER APM</name>
@@ -22,6 +22,7 @@
2222
<module>scouter.agent.host</module>
2323
<module>scouter.agent.java</module>
2424
<module>scouter.agent.batch</module>
25+
<module>scouter.extra.java20</module>
2526
</modules>
2627

2728
<properties>
@@ -176,7 +177,7 @@
176177
<plugin>
177178
<groupId>org.apache.maven.plugins</groupId>
178179
<artifactId>maven-javadoc-plugin</artifactId>
179-
<version>3.2.0</version>
180+
<version>3.5.0</version>
180181
</plugin>
181182
<plugin>
182183
<groupId>org.sonatype.plugins</groupId>

scouter.agent.batch/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.github.scouter-project</groupId>
77
<artifactId>scouter-parent</artifactId>
8-
<version>2.17.1</version> <!--scouter-->
8+
<version>2.20.0</version> <!--scouter-->
99
</parent>
1010

1111
<artifactId>scouter-agent-batch</artifactId>

scouter.agent.host/pom.xml

+7-12
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.github.scouter-project</groupId>
66
<artifactId>scouter-parent</artifactId>
7-
<version>2.17.1</version> <!--scouter-->
7+
<version>2.20.0</version> <!--scouter-->
88
</parent>
99

1010
<artifactId>scouter-agent-host</artifactId>
@@ -25,16 +25,11 @@
2525
<artifactId>scouter-common</artifactId>
2626
<version>${project.version}</version>
2727
</dependency>
28-
29-
<!-- provided -->
3028
<dependency>
31-
<groupId>scouter.dependency</groupId>
32-
<artifactId>sigar</artifactId>
33-
<version>0.0.0</version>
34-
<scope>system</scope>
35-
<systemPath>${project.basedir}/lib/sigar.jar</systemPath>
29+
<groupId>com.github.oshi</groupId>
30+
<artifactId>oshi-core</artifactId>
31+
<version>6.3.1</version>
3632
</dependency>
37-
3833
</dependencies>
3934

4035
<build>
@@ -50,9 +45,9 @@
5045
<artifactId>maven-compiler-plugin</artifactId>
5146
<version>3.1</version>
5247
<configuration>
53-
<compilerVersion>1.6</compilerVersion>
54-
<source>1.6</source>
55-
<target>1.6</target>
48+
<compilerVersion>1.8</compilerVersion>
49+
<source>1.8</source>
50+
<target>1.8</target>
5651
</configuration>
5752
</plugin>
5853
<plugin>

scouter.agent.host/src/main/java/org/hyperic/sigar/cmd/CpuInfo.java

-99
This file was deleted.

scouter.agent.host/src/main/java/org/hyperic/sigar/cmd/Df.java

-197
This file was deleted.

0 commit comments

Comments
 (0)