Skip to content

Commit

Permalink
Updated Libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
C4J committed Jan 19, 2025
1 parent df60fff commit 5b922e2
Show file tree
Hide file tree
Showing 17 changed files with 26 additions and 20 deletions.
14 changes: 7 additions & 7 deletions b6LabelServer/.classpath
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@
</attributes>
</classpathentry>
<classpathentry kind="src" path="src"/>
<classpathentry kind="lib" path="lib/commons-io-2.16.1.jar"/>
<classpathentry kind="lib" path="lib/commons-lang3-3.14.0.jar"/>
<classpathentry kind="lib" path="lib/commons-codec-1.17.0.jar"/>
<classpathentry kind="lib" path="lib/commons-io-2.18.0.jar"/>
<classpathentry kind="lib" path="lib/commons-lang3-3.16.0.jar"/>
<classpathentry kind="lib" path="lib/commons-codec-1.17.1.jar"/>
<classpathentry kind="lib" path="lib/opencsv-5.9.jar"/>
<classpathentry kind="lib" path="xml/config"/>
<classpathentry kind="lib" path="lib/log4j-api-2.23.1.jar"/>
<classpathentry kind="lib" path="lib/log4j-core-2.23.1.jar"/>
<classpathentry kind="lib" path="lib/log4j-api-2.24.3.jar"/>
<classpathentry kind="lib" path="lib/log4j-core-2.24.3.jar"/>
<classpathentry kind="lib" path="lib/commons-beanutils-1.9.4.jar"/>
<classpathentry kind="lib" path="lib/commons-collections-3.2.2.jar"/>
<classpathentry kind="lib" path="lib/commons-collections4-4.4.jar"/>
<classpathentry kind="lib" path="lib/commons-logging-1.3.2.jar"/>
<classpathentry kind="lib" path="lib/commons-text-1.11.0.jar"/>
<classpathentry kind="lib" path="lib/commons-logging-1.3.4.jar"/>
<classpathentry kind="lib" path="lib/commons-text-1.13.0.jar"/>
<classpathentry kind="output" path="bin"/>
</classpath>
Binary file modified b6LabelServer/LabelServer.jar
Binary file not shown.
14 changes: 7 additions & 7 deletions b6LabelServer/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
Manifest-Version: 1.0
Main-Class: com.commander4j.labeller.Service
Class-Path: lib/commons-beanutils-1.9.4.jar
lib/commons-codec-1.17.0.jar
lib/commons-codec-1.17.1.jar
lib/commons-collections-3.2.2.jar
lib/commons-collections4-4.4.jar
lib/commons-io-2.16.1.jar
lib/commons-lang3-3.14.0.jar
lib/commons-logging-1.3.2.jar
lib/commons-text-1.11.0.jar
lib/log4j-api-2.23.1.jar
lib/log4j-core-2.23.1.jar
lib/commons-io-2.18.0.jar
lib/commons-lang3-3.16.0.jar
lib/commons-logging-1.3.4.jar
lib/commons-text-1.13.0.jar
lib/log4j-api-2.24.3.jar
lib/log4j-core-2.24.3.jar
lib/opencsv-5.9.jar
18 changes: 12 additions & 6 deletions b6LabelServer/b6LabelServer_pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,44 +19,50 @@
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.16.1</version>
<version>2.18.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>
<version>1.17.1</version>
</dependency>
<!-- https://mvnrepository.com/artifact/commons-logging/commons-logging -->
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.3.2</version>
<version>1.3.4</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>
<version>2.24.3</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>
<version>2.24.3</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.14.0</version>
<version>3.16.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.opencsv/opencsv -->
<dependency>
<groupId>com.opencsv</groupId>
<artifactId>opencsv</artifactId>
<version>5.9</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-text -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
<version>1.13.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.install4j/install4j-runtime -->
<!-- <dependency>
<groupId>com.install4j</groupId>
Expand Down
Binary file not shown.
Binary file removed b6LabelServer/lib/commons-io-2.16.1.jar
Binary file not shown.
Binary file added b6LabelServer/lib/commons-io-2.18.0.jar
Binary file not shown.
Binary file removed b6LabelServer/lib/commons-lang3-3.14.0.jar
Binary file not shown.
Binary file added b6LabelServer/lib/commons-lang3-3.16.0.jar
Binary file not shown.
Binary file removed b6LabelServer/lib/commons-logging-1.3.2.jar
Binary file not shown.
Binary file added b6LabelServer/lib/commons-logging-1.3.4.jar
Binary file not shown.
Binary file removed b6LabelServer/lib/commons-text-1.11.0.jar
Binary file not shown.
Binary file added b6LabelServer/lib/commons-text-1.13.0.jar
Binary file not shown.
Binary file modified b6LabelServer/lib/devonly/i4jruntime.jar
Binary file not shown.
Binary file removed b6LabelServer/lib/log4j-api-2.23.1.jar
Binary file not shown.
Binary file added b6LabelServer/lib/log4j-api-2.24.3.jar
Binary file not shown.
Binary file not shown.

0 comments on commit 5b922e2

Please sign in to comment.