Skip to content

Commit a77858e

Browse files
Artem LabazinArtem Labazin
authored andcommitted
make Jva8 build
1 parent 11dfff8 commit a77858e

8 files changed

Lines changed: 20 additions & 14 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1111

1212
- Add more unit and integration tests.
1313

14+
## [2.0.2](https://github.com/appulse-projects/epmd-java/releases/tag/2.0.2) - 2020-06-12
15+
16+
### Changed
17+
18+
- Java 8 support.
19+
1420
## [2.0.1](https://github.com/appulse-projects/epmd-java/releases/tag/2.0.1) - 2020-06-12
1521

1622
### Changed

client/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Client's library for `EPMD` server.
1414
<dependency>
1515
<groupId>io.appulse.epmd.java</groupId>
1616
<artifactId>client</artifactId>
17-
<version>2.0.1</version>
17+
<version>2.0.2</version>
1818
</dependency>
1919
...
2020
</dependencies>

client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ limitations under the License.
2525
<parent>
2626
<groupId>io.appulse</groupId>
2727
<artifactId>epmd-java</artifactId>
28-
<version>2.0.1</version>
28+
<version>2.0.2</version>
2929
</parent>
3030

3131
<groupId>io.appulse.epmd.java</groupId>

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ limitations under the License.
2525
<parent>
2626
<groupId>io.appulse</groupId>
2727
<artifactId>epmd-java</artifactId>
28-
<version>2.0.1</version>
28+
<version>2.0.2</version>
2929
</parent>
3030

3131
<groupId>io.appulse.epmd.java</groupId>

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ limitations under the License.
2424

2525
<groupId>io.appulse</groupId>
2626
<artifactId>epmd-java</artifactId>
27-
<version>2.0.1</version>
27+
<version>2.0.2</version>
2828
<packaging>pom</packaging>
2929

3030
<modules>
@@ -37,7 +37,7 @@ limitations under the License.
3737
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3838
<project.build.resourceEncoding>UTF-8</project.build.resourceEncoding>
3939

40-
<java.version>${java.vm.specification.version}</java.version>
40+
<java.version>1.8</java.version>
4141

4242
<maven.compiler.source>${java.version}</maven.compiler.source>
4343
<maven.compiler.target>${java.version}</maven.compiler.target>
@@ -72,7 +72,7 @@ limitations under the License.
7272
<url>https://github.com/appulse-projects/epmd-java</url>
7373
<connection>scm:git:https://github.com/appulse-projects/epmd-java.git</connection>
7474
<developerConnection>scm:git:https://github.com/appulse-projects/epmd-java.git</developerConnection>
75-
<tag>2.0.1</tag>
75+
<tag>2.0.2</tag>
7676
</scm>
7777

7878
<distributionManagement>
@@ -444,7 +444,7 @@ limitations under the License.
444444
<executions>
445445
<execution>
446446
<id>sign-artifacts</id>
447-
<phase>deploy</phase>
447+
<phase>verify</phase>
448448
<goals>
449449
<goal>sign</goal>
450450
</goals>

server/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,23 @@
99
Run it as a regular `Java` CLI app:
1010

1111
```bash
12-
$> java -jar epmd-2.0.1.jar server
12+
$> java -jar epmd-2.0.2.jar server
1313
2019-03-17 01:38:09.302 INFO : EPMD server started (debug: false, port: 4369, allowed-ips: [localhost/127.0.0.1], unsafe-commands: true)
1414

1515
```
1616

1717
To get names of all registered nodes:
1818

1919
```bash
20-
$> java -jar epmd-2.0.1.jar names
20+
$> java -jar epmd-2.0.2.jar names
2121
2019-03-17 01:45:39.310 INFO : EPMD up and running on port 4369 with the registered node(s):
2222
- node 'echo' at port 60045
2323
```
2424

2525
To see another options and commands, just type:
2626

2727
```bash
28-
$> java -jar epmd-2.0.1.jar --help
28+
$> java -jar epmd-2.0.2.jar --help
2929
Usage: epmd [-dhV] [-p=PORT] [COMMAND]
3030

3131
Erlang port mapper daemon. This is a small name server used by Erlang programs
@@ -59,7 +59,7 @@ Run 'epmd help COMMAND' for more information on a command.
5959
<dependency>
6060
<groupId>io.appulse.epmd.java</groupId>
6161
<artifactId>server</artifactId>
62-
<version>2.0.1</version>
62+
<version>2.0.2</version>
6363
</dependency>
6464
...
6565
</dependencies>
@@ -68,7 +68,7 @@ Run 'epmd help COMMAND' for more information on a command.
6868
**Gradle**:
6969

7070
```groovy
71-
compile 'io.appulse.epmd.java:server:2.0.1'
71+
compile 'io.appulse.epmd.java:server:2.0.2'
7272
```
7373

7474
To start EPMD server in your code:

server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ limitations under the License.
2525
<parent>
2626
<groupId>io.appulse</groupId>
2727
<artifactId>epmd-java</artifactId>
28-
<version>2.0.1</version>
28+
<version>2.0.2</version>
2929
</parent>
3030

3131
<groupId>io.appulse.epmd.java</groupId>

server/src/main/java/io/appulse/epmd/java/server/Epmd.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"Erlang communications.",
4444
mixinStandardHelpOptions = true,
4545
footer = "%nRun 'epmd help COMMAND' for more information on a command.",
46-
version = "epmd version \"2.0.1\" 2019-03-17",
46+
version = "epmd version \"2.0.2\" 2019-03-17",
4747
subcommands = {
4848
HelpCommand.class,
4949
SubcommandNames.class,

0 commit comments

Comments
 (0)