Skip to content

Commit

Permalink
create new module - tweetnacl where it is recompiled with java 8
Browse files Browse the repository at this point in the history
  • Loading branch information
neodix42 committed May 31, 2024
1 parent ccfa7cb commit 7a1c680
Show file tree
Hide file tree
Showing 10 changed files with 6,023 additions and 30 deletions.
9 changes: 4 additions & 5 deletions address/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,10 @@
</dependency>
<!-- recompiled from source with Java 8 -->
<dependency>
<groupId>org.purejava</groupId>
<artifactId>tweetnacl-java</artifactId>
<version>1.1.2</version>
<scope>system</scope>
<systemPath>${project.basedir}/../tweetnacl-java-1.1.2.jar</systemPath>
<groupId>io.github.neodix42</groupId>
<artifactId>tweetnacl-java-8</artifactId>
<version>1.1.12</version>
<scope>compile</scope>
</dependency>
<!-- test -->
<dependency>
Expand Down
9 changes: 4 additions & 5 deletions bitstring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,10 @@
</dependency>
<!-- recompiled from source with Java 8 -->
<dependency>
<groupId>org.purejava</groupId>
<artifactId>tweetnacl-java</artifactId>
<version>1.1.2</version>
<scope>system</scope>
<systemPath>${project.basedir}/../tweetnacl-java-1.1.2.jar</systemPath>
<groupId>io.github.neodix42</groupId>
<artifactId>tweetnacl-java-8</artifactId>
<version>1.1.12</version>
<scope>compile</scope>
</dependency>
<!-- test -->
<dependency>
Expand Down
9 changes: 4 additions & 5 deletions cell/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,10 @@
</dependency>
<!-- recompiled from source with Java 8 -->
<dependency>
<groupId>org.purejava</groupId>
<artifactId>tweetnacl-java</artifactId>
<version>1.1.2</version>
<scope>system</scope>
<systemPath>${project.basedir}/../tweetnacl-java-1.1.2.jar</systemPath>
<groupId>io.github.neodix42</groupId>
<artifactId>tweetnacl-java-8</artifactId>
<version>1.1.12</version>
<scope>compile</scope>
</dependency>
<!-- test -->
<dependency>
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
<module>tl</module>
<module>emulator</module>
<module>liteclient</module>
<module>tweetnacl-java</module>
</modules>

<properties>
Expand Down
9 changes: 4 additions & 5 deletions smartcontract/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,10 @@
</dependency>
<!-- recompiled from source with Java 8 -->
<dependency>
<groupId>org.purejava</groupId>
<artifactId>tweetnacl-java</artifactId>
<version>1.1.2</version>
<scope>system</scope>
<systemPath>${project.basedir}/../tweetnacl-java-1.1.2.jar</systemPath>
<groupId>io.github.neodix42</groupId>
<artifactId>tweetnacl-java-8</artifactId>
<version>1.1.12</version>
<scope>compile</scope>
</dependency>
<!-- test -->
<dependency>
Expand Down
9 changes: 4 additions & 5 deletions tonlib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,10 @@
</dependency>
<!-- recompiled from source with Java 8 -->
<dependency>
<groupId>org.purejava</groupId>
<artifactId>tweetnacl-java</artifactId>
<version>1.1.2</version>
<scope>system</scope>
<systemPath>${project.basedir}/../tweetnacl-java-1.1.2.jar</systemPath>
<groupId>io.github.neodix42</groupId>
<artifactId>tweetnacl-java-8</artifactId>
<version>1.1.12</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>net.java.dev.jna</groupId>
Expand Down
13 changes: 13 additions & 0 deletions tweetnacl-java/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.neodix42</groupId>
<artifactId>top</artifactId>
<version>0.4.3</version>
</parent>

<artifactId>tweetnacl-java-8</artifactId>
<version>1.1.12</version>
<name>TON Java - tweetnacl-java-8</name>
</project>
Loading

0 comments on commit 7a1c680

Please sign in to comment.