@@ -17,6 +17,11 @@ | |||||
</dependency> | </dependency> | ||||
<dependency> | <dependency> | ||||
<groupId>com.jd.blockchain</groupId> | <groupId>com.jd.blockchain</groupId> | ||||
<artifactId>manager</artifactId> | |||||
<version>${project.version}</version> | |||||
</dependency> | |||||
<dependency> | |||||
<groupId>com.jd.blockchain</groupId> | |||||
<artifactId>runtime-modular</artifactId> | <artifactId>runtime-modular</artifactId> | ||||
<version>${project.version}</version> | <version>${project.version}</version> | ||||
</dependency> | </dependency> | ||||
@@ -36,6 +36,7 @@ | |||||
<include>com.jd.blockchain:runtime-modular</include> | <include>com.jd.blockchain:runtime-modular</include> | ||||
<include>com.jd.blockchain:runtime-modular-booter</include> | <include>com.jd.blockchain:runtime-modular-booter</include> | ||||
<include>com.jd.blockchain:peer</include> | <include>com.jd.blockchain:peer</include> | ||||
<include>com.jd.blockchain:manager</include> | |||||
<include>com.jd.blockchain:deployment-peer</include> | <include>com.jd.blockchain:deployment-peer</include> | ||||
</includes> | </includes> | ||||
</dependencySet> | </dependencySet> | ||||
@@ -52,6 +53,7 @@ | |||||
<exclude>com.jd.blockchain:runtime-modular</exclude> | <exclude>com.jd.blockchain:runtime-modular</exclude> | ||||
<exclude>com.jd.blockchain:runtime-modular-booter</exclude> | <exclude>com.jd.blockchain:runtime-modular-booter</exclude> | ||||
<exclude>com.jd.blockchain:peer</exclude> | <exclude>com.jd.blockchain:peer</exclude> | ||||
<exclude>com.jd.blockchain:manager</exclude> | |||||
<exclude>com.jd.blockchain:deployment-peer</exclude> | <exclude>com.jd.blockchain:deployment-peer</exclude> | ||||
</excludes> | </excludes> | ||||
</dependencySet> | </dependencySet> | ||||
@@ -0,0 +1,53 @@ | |||||
<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>jdchain-root</artifactId> | |||||
<version>1.1.0-SNAPSHOT</version> | |||||
</parent> | |||||
<artifactId>manager</artifactId> | |||||
<dependencies> | |||||
<dependency> | |||||
<groupId>org.springframework.boot</groupId> | |||||
<artifactId>spring-boot-starter-web</artifactId> | |||||
<exclusions> | |||||
<exclusion> | |||||
<groupId>org.springframework.boot</groupId> | |||||
<artifactId>spring-boot-starter-logging</artifactId> | |||||
</exclusion> | |||||
</exclusions> | |||||
</dependency> | |||||
<dependency> | |||||
<groupId>org.springframework.boot</groupId> | |||||
<artifactId>spring-boot-starter-log4j2</artifactId> | |||||
</dependency> | |||||
<dependency> | |||||
<groupId>org.springframework.boot</groupId> | |||||
<artifactId>spring-boot-starter-security</artifactId> | |||||
</dependency> | |||||
<dependency> | |||||
<groupId>org.springframework.boot</groupId> | |||||
<artifactId>spring-boot-configuration-processor</artifactId> | |||||
<optional>true</optional> | |||||
</dependency> | |||||
</dependencies> | |||||
<build> | |||||
<plugins> | |||||
<plugin> | |||||
<groupId>org.apache.maven.plugins</groupId> | |||||
<artifactId>maven-deploy-plugin</artifactId> | |||||
<configuration> | |||||
<skip>true</skip> | |||||
</configuration> | |||||
</plugin> | |||||
</plugins> | |||||
</build> | |||||
</project> |
@@ -32,6 +32,7 @@ | |||||
<module>storage</module> | <module>storage</module> | ||||
<module>gateway</module> | <module>gateway</module> | ||||
<module>peer</module> | <module>peer</module> | ||||
<module>manager</module> | |||||
<module>sdk</module> | <module>sdk</module> | ||||
<module>tools</module> | <module>tools</module> | ||||
<module>test</module> | <module>test</module> | ||||