Skip to content

Commit

Permalink
Merge pull request #20 from AElfProject/dev
Browse files Browse the repository at this point in the history
Release 1.2.3
  • Loading branch information
jason-aelf authored Mar 9, 2023
2 parents d82c221 + cd7a61c commit 1f75912
Show file tree
Hide file tree
Showing 59 changed files with 32,188 additions and 16,514 deletions.
27 changes: 27 additions & 0 deletions AElfClient/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
<jdk15on.version>1.60</jdk15on.version>
<bitcoinj-core.version>0.14.3</bitcoinj-core.version>
<protobuf-java.version>3.11.1</protobuf-java.version>
<junit.version>4.12</junit.version>
</properties>
<dependencies>
<dependency>
Expand Down Expand Up @@ -73,6 +74,24 @@
<artifactId>protobuf-java</artifactId>
<version>${protobuf-java.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.25</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.25</version>
<scope>test</scope>
</dependency>
</dependencies>
<developers>
<developer>
Expand All @@ -96,6 +115,14 @@
<build>
<finalName>AElfClient</finalName>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration>
<source>${jdk.version}</source>
<target>${jdk.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
Expand Down
Loading

0 comments on commit 1f75912

Please sign in to comment.