Selaa lähdekoodia

新增第三方jar

xusonglin 5 vuotta sitten
vanhempi
commit
44e1241ff9

+ 103 - 3
pom.xml

@@ -21,6 +21,21 @@
         <model-mapper.version>2.3.0</model-mapper.version>
         <zalando.version>0.23.0</zalando.version>
         <fastjson.version>1.2.51</fastjson.version>
+        <etc.commons.logging.version>1.2</etc.commons.logging.version>
+        <etc.httpclient.version>4.5</etc.httpclient.version>
+        <etc.httpcore.version>4.4</etc.httpcore.version>
+        <etc.httpmime.version>4.5</etc.httpmime.version>
+        <jackson.annotations.version>2.8</jackson.annotations.version>
+        <jackson.core.version>2.8</jackson.core.version>
+        <jackson.databind.version>2.8</jackson.databind.version>
+        <jackson.datatype.version>2.8</jackson.datatype.version>
+        <sdk.common.version>1.0</sdk.common.version>
+        <waybill.protocol.version>1.3.4</waybill.protocol.version>
+        <slf4j.api.version>1.7</slf4j.api.version>
+        <validation.api.version>1.1.0</validation.api.version>
+        <jsonwebtoken.version>0.9.0</jsonwebtoken.version>
+        <commons.beanutils.version>1.9.4</commons.beanutils.version>
+        <mybatis.starter.version>2.1.1</mybatis.starter.version>
     </properties>
 
     <dependencies>
@@ -55,7 +70,7 @@
         <dependency>
             <groupId>org.mybatis.spring.boot</groupId>
             <artifactId>mybatis-spring-boot-starter</artifactId>
-            <version>2.1.1</version>
+            <version>${mybatis.starter.version}</version>
         </dependency>
 
         <dependency>
@@ -125,12 +140,97 @@
         <dependency>
             <groupId>io.jsonwebtoken</groupId>
             <artifactId>jjwt</artifactId>
-            <version>0.9.0</version>
+            <version>${jsonwebtoken.version}</version>
         </dependency>
         <dependency>
             <groupId>commons-beanutils</groupId>
             <artifactId>commons-beanutils</artifactId>
-            <version>1.9.4</version>
+            <version>${commons.beanutils.version}</version>
+        </dependency>
+        <!-- 引入第三方JAR-->
+        <dependency>
+            <groupId>etc.commons.logging</groupId>
+            <artifactId>etc-commons-logging</artifactId>
+            <version>${etc.commons.logging.version}</version>
+            <scope>system</scope>
+            <systemPath>${project.basedir}/src/main/resources/lib/etc-commons-logging-1.2.jar</systemPath>
+        </dependency>
+        <dependency>
+            <groupId>etc.httpclient</groupId>
+            <artifactId>etc-httpclient</artifactId>
+            <version>${etc.httpclient.version}</version>
+            <scope>system</scope>
+            <systemPath>${project.basedir}/src/main/resources/lib/etc-httpclient-4.5.jar</systemPath>
+        </dependency>
+        <dependency>
+            <groupId>etc.httpcore</groupId>
+            <artifactId>etc-httpcore</artifactId>
+            <version>${etc.httpcore.version}</version>
+            <scope>system</scope>
+            <systemPath>${project.basedir}/src/main/resources/lib/etc-httpcore-4.4.jar</systemPath>
+        </dependency>
+        <dependency>
+            <groupId>etc.httpmime</groupId>
+            <artifactId>etc-httpmime</artifactId>
+            <version>${etc.httpmime.version}</version>
+            <scope>system</scope>
+            <systemPath>${project.basedir}/src/main/resources/lib/etc-httpmime-4.5.jar</systemPath>
+        </dependency>
+        <dependency>
+            <groupId>etc.jackson.annotations</groupId>
+            <artifactId>etc-jackson-annotations</artifactId>
+            <version>${jackson.annotations.version}</version>
+            <scope>system</scope>
+            <systemPath>${project.basedir}/src/main/resources/lib/etc-jackson-annotations-2.8.jar</systemPath>
+        </dependency>
+        <dependency>
+            <groupId>etc.jackson.core</groupId>
+            <artifactId>etc-jackson-core</artifactId>
+            <version>${jackson.core.version}</version>
+            <scope>system</scope>
+            <systemPath>${project.basedir}/src/main/resources/lib/etc-jackson-core-2.8.jar</systemPath>
+        </dependency>
+        <dependency>
+            <groupId>etc.jackson.databind</groupId>
+            <artifactId>etc-jackson-databind</artifactId>
+            <version>${jackson.databind.version}</version>
+            <scope>system</scope>
+            <systemPath>${project.basedir}/src/main/resources/lib/etc-jackson-databind-2.8.jar</systemPath>
+        </dependency>
+        <dependency>
+            <groupId>etc.jackson.datatype-jsr310</groupId>
+            <artifactId>etc-jackson-datatype-jsr310</artifactId>
+            <version>${jackson.datatype.version}</version>
+            <scope>system</scope>
+            <systemPath>${project.basedir}/src/main/resources/lib/etc-jackson-datatype-jsr310-2.8.jar</systemPath>
+        </dependency>
+        <dependency>
+            <groupId>sdk.common</groupId>
+            <artifactId>sdk-common</artifactId>
+            <version>${sdk.common.version}</version>
+            <scope>system</scope>
+            <systemPath>${project.basedir}/src/main/resources/lib/sdk-common-1.0.jar</systemPath>
+        </dependency>
+        <dependency>
+            <groupId>sdk.waybill.protocol</groupId>
+            <artifactId>sdk-waybill-protocol</artifactId>
+            <version>${waybill.protocol.version}</version>
+            <scope>system</scope>
+            <systemPath>${project.basedir}/src/main/resources/lib/sdk-waybill-protocol-1.3.4.jar</systemPath>
+        </dependency>
+        <dependency>
+            <groupId>slf4j.api</groupId>
+            <artifactId>slf4j-api</artifactId>
+            <version>${slf4j.api.version}</version>
+            <scope>system</scope>
+            <systemPath>${project.basedir}/src/main/resources/lib/slf4j-api-1.7.jar</systemPath>
+        </dependency>
+        <dependency>
+            <groupId>validation.api</groupId>
+            <artifactId>validation-api</artifactId>
+            <version>${validation.api.version}</version>
+            <scope>system</scope>
+            <systemPath>${project.basedir}/src/main/resources/lib/validation-api-1.1.0.Final.jar</systemPath>
         </dependency>
     </dependencies>
 

BIN
src/main/resources/lib/etc-commons-logging-1.2.jar


BIN
src/main/resources/lib/etc-httpclient-4.5.jar


BIN
src/main/resources/lib/etc-httpcore-4.4.jar


BIN
src/main/resources/lib/etc-httpmime-4.5.jar


BIN
src/main/resources/lib/etc-jackson-annotations-2.8.jar


BIN
src/main/resources/lib/etc-jackson-core-2.8.jar


BIN
src/main/resources/lib/etc-jackson-databind-2.8.jar


BIN
src/main/resources/lib/etc-jackson-datatype-jsr310-2.8.jar


BIN
src/main/resources/lib/sdk-common-1.0.jar


BIN
src/main/resources/lib/sdk-waybill-protocol-1.3.4.jar


BIN
src/main/resources/lib/slf4j-api-1.7.jar


BIN
src/main/resources/lib/validation-api-1.1.0.Final.jar