|
@@ -1,71 +1,77 @@ |
|
|
<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/xsd/maven-4.0.0.xsd">
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
<parent>
|
|
|
|
|
|
<groupId>com.jd.blockchain</groupId>
|
|
|
|
|
|
<artifactId>utils</artifactId>
|
|
|
|
|
|
<version>1.0.1.RELEASE</version>
|
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
|
<binary-proto.version>0.5.0-SNAPSHOT</binary-proto.version>
|
|
|
|
|
|
<ledger-model.version>0.5.0-SNAPSHOT</ledger-model.version>
|
|
|
|
|
|
|
|
|
|
|
|
</properties>
|
|
|
|
|
|
<artifactId>utils-http</artifactId>
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.jd.blockchain</groupId>
|
|
|
|
|
|
<artifactId>utils-common</artifactId>
|
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.jd.blockchain</groupId>
|
|
|
|
|
|
<artifactId>utils-serialize</artifactId>
|
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.jd.blockchain</groupId>
|
|
|
|
|
|
<artifactId>utils-web-server</artifactId>
|
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
|
<artifactId>spring-core</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
|
<artifactId>spring-beans</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- <dependency>
|
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
|
|
|
</dependency> -->
|
|
|
|
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- <build>
|
|
|
|
|
|
<plugins>
|
|
|
|
|
|
<plugin>
|
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
|
<version>3.3</version>
|
|
|
|
|
|
<configuration>
|
|
|
|
|
|
<source>1.6</source>
|
|
|
|
|
|
<target>1.6</target>
|
|
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
|
|
<optimize>false</optimize>
|
|
|
|
|
|
<debug>true</debug>
|
|
|
|
|
|
<showDeprecation>false</showDeprecation>
|
|
|
|
|
|
<showWarnings>false</showWarnings>
|
|
|
|
|
|
</configuration>
|
|
|
|
|
|
</plugin>
|
|
|
|
|
|
</plugins>
|
|
|
|
|
|
</build> -->
|
|
|
|
|
|
|
|
|
<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/xsd/maven-4.0.0.xsd"> |
|
|
|
|
|
<modelVersion>4.0.0</modelVersion> |
|
|
|
|
|
<parent> |
|
|
|
|
|
<groupId>com.jd.blockchain</groupId> |
|
|
|
|
|
<artifactId>utils</artifactId> |
|
|
|
|
|
<version>1.0.1.RELEASE</version> |
|
|
|
|
|
</parent> |
|
|
|
|
|
|
|
|
|
|
|
<properties> |
|
|
|
|
|
<binary-proto.version>0.5.0-SNAPSHOT</binary-proto.version> |
|
|
|
|
|
<ledger-model.version>0.5.0-SNAPSHOT</ledger-model.version> |
|
|
|
|
|
|
|
|
|
|
|
</properties> |
|
|
|
|
|
<artifactId>utils-http</artifactId> |
|
|
|
|
|
<dependencies> |
|
|
|
|
|
<dependency> |
|
|
|
|
|
<groupId>com.jd.blockchain</groupId> |
|
|
|
|
|
<artifactId>utils-common</artifactId> |
|
|
|
|
|
<version>${project.version}</version> |
|
|
|
|
|
</dependency> |
|
|
|
|
|
<dependency> |
|
|
|
|
|
<groupId>com.jd.blockchain</groupId> |
|
|
|
|
|
<artifactId>utils-serialize</artifactId> |
|
|
|
|
|
<version>${project.version}</version> |
|
|
|
|
|
</dependency> |
|
|
|
|
|
<dependency> |
|
|
|
|
|
<groupId>com.jd.blockchain</groupId> |
|
|
|
|
|
<artifactId>utils-web-server</artifactId> |
|
|
|
|
|
<scope>test</scope> |
|
|
|
|
|
<version>${project.version}</version> |
|
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
|
<groupId>org.apache.httpcomponents</groupId> |
|
|
|
|
|
<artifactId>httpclient</artifactId> |
|
|
|
|
|
</dependency> |
|
|
|
|
|
<dependency> |
|
|
|
|
|
<groupId>org.springframework</groupId> |
|
|
|
|
|
<artifactId>spring-core</artifactId> |
|
|
|
|
|
</dependency> |
|
|
|
|
|
<dependency> |
|
|
|
|
|
<groupId>org.springframework</groupId> |
|
|
|
|
|
<artifactId>spring-beans</artifactId> |
|
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
|
|
<artifactId>spring-boot-starter-log4j2</artifactId> |
|
|
|
|
|
<scope>test</scope> |
|
|
|
|
|
</dependency> |
|
|
|
|
|
<!-- <dependency> |
|
|
|
|
|
<groupId>com.alibaba</groupId> |
|
|
|
|
|
<artifactId>fastjson</artifactId> |
|
|
|
|
|
</dependency> --> |
|
|
|
|
|
|
|
|
|
|
|
</dependencies> |
|
|
|
|
|
|
|
|
|
|
|
<!-- <build> |
|
|
|
|
|
<plugins> |
|
|
|
|
|
<plugin> |
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId> |
|
|
|
|
|
<version>3.3</version> |
|
|
|
|
|
<configuration> |
|
|
|
|
|
<source>1.6</source> |
|
|
|
|
|
<target>1.6</target> |
|
|
|
|
|
<encoding>UTF-8</encoding> |
|
|
|
|
|
<optimize>false</optimize> |
|
|
|
|
|
<debug>true</debug> |
|
|
|
|
|
<showDeprecation>false</showDeprecation> |
|
|
|
|
|
<showWarnings>false</showWarnings> |
|
|
|
|
|
</configuration> |
|
|
|
|
|
</plugin> |
|
|
|
|
|
</plugins> |
|
|
|
|
|
</build> --> |
|
|
</project> |
|
|
</project> |