Bladeren bron

update jar and pom

garniwa_irawan 1 jaar geleden
bovenliggende
commit
07dd8d8618
4 gewijzigde bestanden met toevoegingen van 30 en 37 verwijderingen
  1. 4 10
      MWDAO/pom.xml
  2. 0 22
      MWUI/README.md
  3. 5 5
      MWUI/pom.xml
  4. 21 0
      README.md

+ 4 - 10
MWDAO/pom.xml

@@ -49,11 +49,9 @@
 
     <!-- SDO Dependencies -->
     <dependency>
-      <groupId>commonj</groupId>
-      <artifactId>commonj-sdo</artifactId>
-      <version>2.1.0</version>
-      <scope>system</scope>
-      <systemPath>${project.basedir}/../SharedLib/commonj-sdo-2.1.0.jar</systemPath>
+      <groupId>org.eclipse.persistence</groupId>
+      <artifactId>commonj.sdo</artifactId>
+      <version>2.1.1</version>
     </dependency>
 
     <!-- JSON Dependencies -->
@@ -61,8 +59,6 @@
       <groupId>org.json</groupId>
       <artifactId>json</artifactId>
       <version>20090211</version>
-      <scope>system</scope>
-      <systemPath>${project.basedir}/../SharedLib/json-java.jar</systemPath>
     </dependency>
   </dependencies>
 
@@ -107,9 +103,7 @@
           <dependency>
             <groupId>com.ibm.db2</groupId>
             <artifactId>db2jcc4</artifactId>
-            <version>4.0</version>
-            <scope>system</scope>
-            <systemPath>${project.basedir}/../SharedLib/db2jcc4.jar</systemPath>
+            <version>11.5.7.0</version>
           </dependency>
         </dependencies>
       </plugin>

+ 0 - 22
MWUI/README.md

@@ -1,22 +0,0 @@
-# Installing Required JARs in the Local Maven Repository
-
-This guide provides the steps to manually install the required JAR files into your local Maven repository using the `mvn install:install-file` command.
-
-## Prerequisites
-1. Ensure that you have Apache Maven installed and properly configured in your system.
-2. Verify that the JAR files listed below are available in the specified paths.
-
-## Installation Steps
-
-Run the following commands in your terminal to install each JAR file into your local Maven repository:
-
-```
-mvn install:install-file -Dfile=../MWDAO/target/MWDAO-1.0.jar -DgroupId=mwdao -DartifactId=mwdao -Dversion=1.0 -Dpackaging=jar
-mvn install:install-file -Dfile=../SharedLib/com.ibm.websphere.appserver.api.basics-1.2.15.jar -DgroupId=com.ibm.websphere -DartifactId=appserver.api.basics -Dversion=1.2.15 -Dpackaging=jar
-mvn install:install-file -Dfile=../SharedLib/commonj-sdo-2.1.0.jar -DgroupId=commonj -DartifactId=commonj-sdo -Dversion=2.1.0 -Dpackaging=jar
-mvn install:install-file -Dfile=../SharedLib/config.jar -DgroupId=id.co.hanoman -DartifactId=config -Dversion=1.0 -Dpackaging=jar
-mvn install:install-file -Dfile=../SharedLib/hanoman-util-1.0.jar -DgroupId=id.co.hanoman -DartifactId=hanoman-util -Dversion=1.0 -Dpackaging=jar
-mvn install:install-file -Dfile=../SharedLib/hcx.jar -DgroupId=id.co.hanoman -DartifactId=hcx -Dversion=1.0 -Dpackaging=jar
-mvn install:install-file -Dfile=../SharedLib/scutils.jar -DgroupId=com.scupid -DartifactId=scutils -Dversion=1.0 -Dpackaging=jar
-mvn install:install-file -Dfile=../SharedLib/SppSynchronizerLibrary.jar -DgroupId=com.ztdev -DartifactId=SppSynchronizerLibrary -Dversion=1.0 -Dpackaging=jar
-```

+ 5 - 5
MWUI/pom.xml

@@ -112,14 +112,14 @@
         <version>1.0</version>
     </dependency>
     <dependency>
-        <groupId>com.ibm.websphere</groupId>
-        <artifactId>appserver.api.basics</artifactId>
+        <groupId>com.ibm.websphere.appserver.api</groupId>
+        <artifactId>com.ibm.websphere.appserver.api.basics</artifactId>
         <version>1.2.15</version>
     </dependency>
     <dependency>
-        <groupId>commonj</groupId>
-        <artifactId>commonj-sdo</artifactId>
-        <version>2.1.0</version>
+        <groupId>org.eclipse.persistence</groupId>
+        <artifactId>commonj.sdo</artifactId>
+        <version>2.1.1</version>
     </dependency>
     <dependency>
         <groupId>id.co.hanoman</groupId>

+ 21 - 0
README.md

@@ -0,0 +1,21 @@
+# Installing Required JARs in the Local Maven Repository
+
+This guide provides the steps to manually install the required JAR files into your local Maven repository using the `mvn install:install-file` command.
+
+## Prerequisites
+1. Ensure that you have Apache Maven installed and properly configured in your system.
+2. Verify that the JAR files listed below are available in the specified paths.
+
+## Installation Steps
+
+Run the following commands in your terminal to install each JAR file into your local Maven repository:
+
+```
+mvn install:install-file -Dfile=./MWDAO/target/MWDAO-1.0.jar -DgroupId=mwdao -DartifactId=mwdao -Dversion=1.0 -Dpackaging=jar
+mvn install:install-file -Dfile=./SharedLib/commonj-sdo-2.1.0.jar -DgroupId=commonj -DartifactId=commonj-sdo -Dversion=2.1.0 -Dpackaging=jar
+mvn install:install-file -Dfile=./SharedLib/config.jar -DgroupId=id.co.hanoman -DartifactId=config -Dversion=1.0 -Dpackaging=jar
+mvn install:install-file -Dfile=./SharedLib/hanoman-util-1.0.jar -DgroupId=id.co.hanoman -DartifactId=hanoman-util -Dversion=1.0 -Dpackaging=jar
+mvn install:install-file -Dfile=./SharedLib/hcx.jar -DgroupId=id.co.hanoman -DartifactId=hcx -Dversion=1.0 -Dpackaging=jar
+mvn install:install-file -Dfile=./SharedLib/scutils.jar -DgroupId=com.scupid -DartifactId=scutils -Dversion=1.0 -Dpackaging=jar
+mvn install:install-file -Dfile=./SharedLib/SppSynchronizerLibrary.jar -DgroupId=com.ztdev -DartifactId=SppSynchronizerLibrary -Dversion=1.0 -Dpackaging=jar
+```