Skip to content

Commit d6d5ff0

Browse files
committed
Update to v2.0.37
1 parent f94e105 commit d6d5ff0

File tree

10 files changed

+31
-31
lines changed

10 files changed

+31
-31
lines changed

example/Benchmark/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>org.hprose</groupId>
55
<artifactId>tcphelloexam</artifactId>
6-
<version>2.0.36</version>
6+
<version>2.0.37</version>
77
<packaging>jar</packaging>
88
<properties>
99
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
10-
<maven.compiler.source>1.7</maven.compiler.source>
11-
<maven.compiler.target>1.7</maven.compiler.target>
10+
<maven.compiler.source>8</maven.compiler.source>
11+
<maven.compiler.target>8</maven.compiler.target>
1212
</properties>
1313
<name>Benchmark</name>
1414
<dependencies>
1515
<dependency>
1616
<groupId>${project.groupId}</groupId>
1717
<artifactId>hprose-java</artifactId>
1818
<version>${project.version}</version>
19-
<classifier>jdk18</classifier>
19+
<classifier>jdk8</classifier>
2020
</dependency>
2121
</dependencies>
2222
</project>

example/Example/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>org.hprose</groupId>
55
<artifactId>hprose.example</artifactId>
6-
<version>2.0.36</version>
6+
<version>2.0.37</version>
77
<packaging>jar</packaging>
88
<properties>
99
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
10-
<maven.compiler.source>1.8</maven.compiler.source>
11-
<maven.compiler.target>1.8</maven.compiler.target>
10+
<maven.compiler.source>8</maven.compiler.source>
11+
<maven.compiler.target>8</maven.compiler.target>
1212
</properties>
1313
<name>Example</name>
1414
<dependencies>
1515
<dependency>
1616
<groupId>${project.groupId}</groupId>
1717
<artifactId>hprose-java</artifactId>
1818
<version>${project.version}</version>
19-
<classifier>jdk18</classifier>
19+
<classifier>jdk8</classifier>
2020
</dependency>
2121
<dependency>
2222
<groupId>org.apache.commons</groupId>
106 KB
Binary file not shown.

example/exam/client/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>org.hprose</groupId>
55
<artifactId>exam.client</artifactId>
6-
<version>2.0.36</version>
6+
<version>2.0.37</version>
77
<packaging>jar</packaging>
88
<dependencies>
99
<dependency>
1010
<groupId>${project.groupId}</groupId>
1111
<artifactId>hprose-java</artifactId>
1212
<version>${project.version}</version>
13-
<classifier>jdk18</classifier>
13+
<classifier>jdk8</classifier>
1414
</dependency>
1515
</dependencies>
1616
<properties>
1717
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
18-
<maven.compiler.source>1.7</maven.compiler.source>
19-
<maven.compiler.target>1.7</maven.compiler.target>
18+
<maven.compiler.source>8</maven.compiler.source>
19+
<maven.compiler.target>8</maven.compiler.target>
2020
</properties>
2121
<name>ExamClient</name>
2222
</project>

example/exam/server/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>org.hprose</groupId>
66
<artifactId>exam.server</artifactId>
7-
<version>2.0.36</version>
7+
<version>2.0.37</version>
88
<packaging>war</packaging>
99

1010
<name>ExamServer</name>
@@ -19,7 +19,7 @@
1919
<groupId>${project.groupId}</groupId>
2020
<artifactId>hprose-java</artifactId>
2121
<version>${project.version}</version>
22-
<classifier>jdk18</classifier>
22+
<classifier>jdk8</classifier>
2323
</dependency>
2424
<dependency>
2525
<groupId>javax</groupId>
@@ -36,8 +36,8 @@
3636
<artifactId>maven-compiler-plugin</artifactId>
3737
<version>3.1</version>
3838
<configuration>
39-
<source>1.7</source>
40-
<target>1.7</target>
39+
<source>8</source>
40+
<target>8</target>
4141
<compilerArguments>
4242
<endorseddirs>${endorsed.dir}</endorseddirs>
4343
</compilerArguments>

example/hello/client/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>org.hprose</groupId>
55
<artifactId>hello.client</artifactId>
6-
<version>2.0.36</version>
6+
<version>2.0.37</version>
77
<name>HelloClient</name>
88
<packaging>jar</packaging>
99
<build>
@@ -31,7 +31,7 @@
3131
<groupId>${project.groupId}</groupId>
3232
<artifactId>hprose-java</artifactId>
3333
<version>${project.version}</version>
34-
<classifier>jdk18</classifier>
34+
<classifier>jdk8</classifier>
3535
</dependency>
3636
</dependencies>
3737
<properties>

example/hello/server/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>org.hprose</groupId>
66
<artifactId>hello.server</artifactId>
7-
<version>2.0.36</version>
7+
<version>2.0.37</version>
88
<packaging>war</packaging>
99

1010
<name>HelloServer</name>
@@ -19,7 +19,7 @@
1919
<groupId>${project.groupId}</groupId>
2020
<artifactId>hprose-java</artifactId>
2121
<version>${project.version}</version>
22-
<classifier>jdk18</classifier>
22+
<classifier>jdk8</classifier>
2323
</dependency>
2424
<dependency>
2525
<groupId>javax</groupId>
@@ -36,8 +36,8 @@
3636
<artifactId>maven-compiler-plugin</artifactId>
3737
<version>3.1</version>
3838
<configuration>
39-
<source>1.7</source>
40-
<target>1.7</target>
39+
<source>8</source>
40+
<target>8</target>
4141
<compilerArguments>
4242
<endorseddirs>${endorsed.dir}</endorseddirs>
4343
</compilerArguments>

example/tcphelloexam/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>org.hprose</groupId>
55
<artifactId>tcphelloexam</artifactId>
6-
<version>2.0.36</version>
6+
<version>2.0.37</version>
77
<packaging>jar</packaging>
88
<properties>
99
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
10-
<maven.compiler.source>1.7</maven.compiler.source>
11-
<maven.compiler.target>1.7</maven.compiler.target>
10+
<maven.compiler.source>8</maven.compiler.source>
11+
<maven.compiler.target>8</maven.compiler.target>
1212
</properties>
1313
<name>TcpHelloExam</name>
1414
<dependencies>
1515
<dependency>
1616
<groupId>${project.groupId}</groupId>
1717
<artifactId>hprose-java</artifactId>
1818
<version>${project.version}</version>
19-
<classifier>jdk18</classifier>
19+
<classifier>jdk8</classifier>
2020
</dependency>
2121
</dependencies>
2222
</project>

example/tcpsessionexam/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>org.hprose</groupId>
55
<artifactId>tcpsessionexam</artifactId>
6-
<version>2.0.36</version>
6+
<version>2.0.37</version>
77
<packaging>jar</packaging>
88
<properties>
99
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
10-
<maven.compiler.source>1.7</maven.compiler.source>
11-
<maven.compiler.target>1.7</maven.compiler.target>
10+
<maven.compiler.source>8</maven.compiler.source>
11+
<maven.compiler.target>8</maven.compiler.target>
1212
</properties>
1313
<name>TcpSessionExam</name>
1414
<dependencies>
1515
<dependency>
1616
<groupId>${project.groupId}</groupId>
1717
<artifactId>hprose-java</artifactId>
1818
<version>${project.version}</version>
19-
<classifier>jdk18</classifier>
19+
<classifier>jdk8</classifier>
2020
</dependency>
2121
</dependencies>
2222
</project>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>org.hprose</groupId>
55
<artifactId>hprose-java</artifactId>
6-
<version>2.0.37-SNAPSHOT</version>
6+
<version>2.0.37</version>
77
<name>Hprose for Java</name>
88
<description>Hprose is a High Performance Remote Object Service Engine.
99

0 commit comments

Comments
 (0)