-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to build files and dependencies
- Loading branch information
Showing
38 changed files
with
207 additions
and
124 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,22 @@ | ||
Manifest-Version: 1.0 | ||
Main-Class: com.commander4j.sftp.Transfer | ||
Class-Path: lib/app/asn-one-0.6.0.jar | ||
lib/app/bcpkix-jdk15on-1.70.jar | ||
lib/app/bcprov-jdk15on-1.70.jar | ||
lib/app/commons-codec-1.15.jar | ||
lib/app/commons-io-2.13.0.jar | ||
lib/app/eddsa-0.3.0.jar | ||
lib/app/jzlib-1.1.3.jar | ||
lib/app/log4j-api-2.20.0.jar | ||
lib/app/log4j-core-2.20.0.jar | ||
lib/app/log4j-slf4j2-impl-2.20.0.jar | ||
lib/app/slf4j-api-2.0.7.jar | ||
lib/app/slf4j-jdk14-2.0.7.jar | ||
lib/app/slf4j-simple-2.0.7.jar | ||
lib/app/sshj-0.35.0.jar | ||
lib/mail/angus-activation-2.0.1.jar | ||
lib/mail/angus-mail-2.0.2.jar | ||
lib/mail/jakarta.activation-api-2.1.2.jar | ||
lib/mail/jakarta.mail-api-2.1.2.jar | ||
Class-Path: lib/angus-activation-2.0.2.jar | ||
lib/angus-mail-2.0.3.jar | ||
lib/asn-one-0.6.0.jar | ||
lib/bcpkix-jdk18on-1.75.jar | ||
lib/bcprov-jdk18on-1.75.jar | ||
lib/bcutil-jdk18on-1.75.jar | ||
lib/commons-codec-1.17.0.jar | ||
lib/commons-io-2.16.1.jar | ||
lib/eddsa-0.3.0.jar | ||
lib/jakarta.activation-api-2.1.3.jar | ||
lib/jakarta.mail-api-2.1.3.jar | ||
lib/jzlib-1.1.3.jar | ||
lib/log4j-api-2.23.1.jar | ||
lib/log4j-core-2.23.1.jar | ||
lib/log4j-slf4j-impl-2.23.1.jar | ||
lib/slf4j-api-2.0.13.jar | ||
lib/slf4j-jdk14-2.0.13.jar | ||
lib/slf4j-simple-2.0.13.jar | ||
lib/sshj-0.38.0.jar | ||
sftpSend.jar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
<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> | ||
<groupId>com.commander4j.middleware</groupId> | ||
<artifactId>middleware-test</artifactId> | ||
<version>1.0.0</version> | ||
<packaging>pom</packaging> | ||
<properties> | ||
<revision>7.0.0</revision> | ||
</properties> | ||
<!-- <repositories> | ||
<repository> | ||
<id>com.install4j</id> | ||
<name>com.install4j</name> | ||
<url>https://maven.ej-technologies.com/repository/</url> | ||
</repository> | ||
</repositories> --> | ||
<dependencies> | ||
<!-- https://mvnrepository.com/artifact/com.hierynomus/sshj --> | ||
<dependency> | ||
<groupId>com.hierynomus</groupId> | ||
<artifactId>sshj</artifactId> | ||
<version>0.38.0</version> | ||
</dependency> | ||
|
||
<!-- https://mvnrepository.com/artifact/commons-codec/commons-codec --> | ||
<dependency> | ||
<groupId>commons-codec</groupId> | ||
<artifactId>commons-codec</artifactId> | ||
<version>1.17.0</version> | ||
</dependency> | ||
|
||
<!-- https://mvnrepository.com/artifact/commons-io/commons-io --> | ||
<dependency> | ||
<groupId>commons-io</groupId> | ||
<artifactId>commons-io</artifactId> | ||
<version>2.16.1</version> | ||
</dependency> | ||
|
||
|
||
<!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-api --> | ||
<dependency> | ||
<groupId>org.apache.logging.log4j</groupId> | ||
<artifactId>log4j-api</artifactId> | ||
<version>2.23.1</version> | ||
</dependency> | ||
<!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core --> | ||
<dependency> | ||
<groupId>org.apache.logging.log4j</groupId> | ||
<artifactId>log4j-core</artifactId> | ||
<version>2.23.1</version> | ||
</dependency> | ||
|
||
<!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-slf4j-impl --> | ||
<dependency> | ||
<groupId>org.apache.logging.log4j</groupId> | ||
<artifactId>log4j-slf4j-impl</artifactId> | ||
<version>2.23.1</version> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
|
||
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api --> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-api</artifactId> | ||
<version>2.0.13</version> | ||
</dependency> | ||
|
||
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-simple --> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-simple</artifactId> | ||
<version>2.0.13</version> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-jdk14 --> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-jdk14</artifactId> | ||
<version>2.0.13</version> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
<!-- https://mvnrepository.com/artifact/com.jcraft/jzlib --> | ||
<dependency> | ||
<groupId>com.jcraft</groupId> | ||
<artifactId>jzlib</artifactId> | ||
<version>1.1.3</version> | ||
</dependency> | ||
|
||
<!-- https://mvnrepository.com/artifact/org.eclipse.angus/angus-mail --> | ||
<dependency> | ||
<groupId>org.eclipse.angus</groupId> | ||
<artifactId>angus-mail</artifactId> | ||
<version>2.0.3</version> | ||
</dependency> | ||
<!-- https://mvnrepository.com/artifact/org.eclipse.angus/angus-activation --> | ||
<dependency> | ||
<groupId>org.eclipse.angus</groupId> | ||
<artifactId>angus-activation</artifactId> | ||
<version>2.0.2</version> | ||
</dependency> | ||
<!-- https://mvnrepository.com/artifact/jakarta.activation/jakarta.activation-api --> | ||
<dependency> | ||
<groupId>jakarta.activation</groupId> | ||
<artifactId>jakarta.activation-api</artifactId> | ||
<version>2.1.3</version> | ||
</dependency> | ||
<!-- https://mvnrepository.com/artifact/jakarta.mail/jakarta.mail-api --> | ||
<dependency> | ||
<groupId>jakarta.mail</groupId> | ||
<artifactId>jakarta.mail-api</artifactId> | ||
<version>2.1.3</version> | ||
</dependency> | ||
<!-- https://mvnrepository.com/artifact/com.install4j/install4j-runtime --> | ||
<!-- <dependency> | ||
<groupId>com.install4j</groupId> | ||
<artifactId>install4j-runtime</artifactId> | ||
<version>10.0.8</version> | ||
<scope>provided</scope> | ||
</dependency> --> | ||
</dependencies> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
mvn -f b6sftpSend_pom.xml clean dependency:copy-dependencies |
Binary file renamed
BIN
+26.7 KB
...pSend/lib/mail/angus-activation-2.0.1.jar → b6sftpSend/lib/angus-activation-2.0.2.jar
Binary file not shown.
Binary file renamed
BIN
+480 KB
b6sftpSend/lib/mail/angus-mail-2.0.2.jar → b6sftpSend/lib/angus-mail-2.0.3.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File renamed without changes.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File renamed without changes.
Binary file not shown.
Binary file renamed
BIN
+231 KB
...pSend/lib/mail/jakarta.mail-api-2.1.2.jar → b6sftpSend/lib/jakarta.mail-api-2.1.3.jar
Binary file not shown.
File renamed without changes.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file renamed
BIN
+10.1 KB
b6sftpSend/lib/app/slf4j-jdk14-2.0.7.jar → b6sftpSend/lib/slf4j-jdk14-2.0.13.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters