Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Copyright © Cryptlex LLP. All rights reserved. Use is subject to Cryptlex's Terms of Service: https://docs.cryptlex.com/legal/terms-of-service.
6 changes: 6 additions & 0 deletions NOTICE
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@

Lists of 4 third-party dependencies.
(The Apache Software License, Version 2.0) Jackson-annotations (com.fasterxml.jackson.core:jackson-annotations:2.14.2 - https://github.com/FasterXML/jackson)
(The Apache Software License, Version 2.0) Jackson-core (com.fasterxml.jackson.core:jackson-core:2.14.2 - https://github.com/FasterXML/jackson-core)
(The Apache Software License, Version 2.0) jackson-databind (com.fasterxml.jackson.core:jackson-databind:2.14.2 - https://github.com/FasterXML/jackson)
(Apache-2.0) (LGPL-2.1-or-later) Java Native Access (net.java.dev.jna:jna:5.10.0 - https://github.com/java-native-access/jna)
9 changes: 9 additions & 0 deletions download-libs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,31 @@ VERSION="v3.37.0";
mkdir -p tmp/windows
curl -O ${BASE_URL}/${VERSION}/LexActivator-Win.zip
unzip LexActivator-Win.zip -d ./tmp/windows
cp ./tmp/windows/THIRD-PARTY-NOTICES.txt src/main/resources/win32-x86-64/
cp ./tmp/windows/libs/vc14/x64/LexActivator.dll src/main/resources/win32-x86-64/
cp ./tmp/windows/THIRD-PARTY-NOTICES.txt src/main/resources/win32-x86/
cp ./tmp/windows/libs/vc14/x86/LexActivator.dll src/main/resources/win32-x86/
cp ./tmp/windows/THIRD-PARTY-NOTICES.txt src/main/resources/win32-aarch64/
cp ./tmp/windows/libs/vc17/arm64/LexActivator.dll src/main/resources/win32-aarch64/

mkdir -p tmp/macos
curl -O ${BASE_URL}/${VERSION}/LexActivator-Mac.zip
unzip LexActivator-Mac.zip -d ./tmp/macos
cp ./tmp/macos/THIRD-PARTY-NOTICES.txt src/main/resources/darwin-x86-64/
cp ./tmp/macos/libs/clang/x86_64/libLexActivator.dylib src/main/resources/darwin-x86-64/
cp ./tmp/macos/THIRD-PARTY-NOTICES.txt src/main/resources/darwin-aarch64/
cp ./tmp/macos/libs/clang/arm64/libLexActivator.dylib src/main/resources/darwin-aarch64/

mkdir -p tmp/linux
curl -O ${BASE_URL}/${VERSION}/LexActivator-Linux.zip
unzip LexActivator-Linux.zip -d ./tmp/linux
cp ./tmp/linux/THIRD-PARTY-NOTICES.txt src/main/resources/linux-x86-64/
cp ./tmp/linux/libs/gcc/amd64/libLexActivator.so src/main/resources/linux-x86-64/
cp ./tmp/linux/THIRD-PARTY-NOTICES.txt src/main/resources/linux-x86/
cp ./tmp/linux/libs/gcc/i386/libLexActivator.so src/main/resources/linux-x86/
cp ./tmp/linux/THIRD-PARTY-NOTICES.txt src/main/resources/linux-aarch64/
cp ./tmp/linux/libs/gcc/arm64/libLexActivator.so src/main/resources/linux-aarch64/
cp ./tmp/linux/THIRD-PARTY-NOTICES.txt src/main/resources/linux-arm/
cp ./tmp/linux/libs/gcc/armhf/libLexActivator.so src/main/resources/linux-arm/

rm -f LexActivator-Win.zip
Expand Down
13 changes: 11 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@

<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<name>Proprietary</name>
<url>https://docs.cryptlex.com/legal/terms-of-service</url>
<distribution>repo</distribution>
</license>
</licenses>
Expand Down Expand Up @@ -67,6 +67,15 @@
<filtering>false</filtering>
<directory>${basedir}/src/main/resources</directory>
</resource>
<resource>
<directory>${basedir}</directory>
<includes>
<include>LICENSE</include>
<include>NOTICE</include>
</includes>
<targetPath>META-INF</targetPath>
<filtering>false</filtering>
</resource>
</resources>

<plugins>
Expand Down