From a08f65601f9dab29919f3aa007460072230fad37 Mon Sep 17 00:00:00 2001 From: Huzaif Mushtaq Mir Date: Fri, 6 Feb 2026 11:18:01 +0530 Subject: [PATCH 1/2] chore: add license, notice --- LICENSE | 1 + NOTICE | 6 ++++++ download-libs.sh | 9 +++++++++ pom.xml | 9 +++++++++ 4 files changed, 25 insertions(+) create mode 100644 LICENSE create mode 100644 NOTICE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..69b1617 --- /dev/null +++ b/LICENSE @@ -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. diff --git a/NOTICE b/NOTICE new file mode 100644 index 0000000..8002599 --- /dev/null +++ b/NOTICE @@ -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) diff --git a/download-libs.sh b/download-libs.sh index 3b371ba..86f7981 100755 --- a/download-libs.sh +++ b/download-libs.sh @@ -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 diff --git a/pom.xml b/pom.xml index a4c65eb..03bcddd 100644 --- a/pom.xml +++ b/pom.xml @@ -67,6 +67,15 @@ false ${basedir}/src/main/resources + + ${basedir} + + LICENSE + NOTICE + + META-INF + false + From 383b912f7c1876c2e8e1f0726e042350024f279b Mon Sep 17 00:00:00 2001 From: Huzaif Mushtaq Mir Date: Fri, 6 Feb 2026 11:23:55 +0530 Subject: [PATCH 2/2] chore: change license type in pom --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 03bcddd..cc8e225 100644 --- a/pom.xml +++ b/pom.xml @@ -11,8 +11,8 @@ - MIT License - http://www.opensource.org/licenses/mit-license.php + Proprietary + https://docs.cryptlex.com/legal/terms-of-service repo