Browse Source

Added manager project;

tags/1.1.0
huanghaiquan 5 years ago
parent
commit
6ac03c4c69
4 changed files with 61 additions and 0 deletions
  1. +5
    -0
      source/deployment/deployment-peer/pom.xml
  2. +2
    -0
      source/deployment/deployment-peer/src/main/resources/assembly.xml
  3. +53
    -0
      source/manager/pom.xml
  4. +1
    -0
      source/pom.xml

+ 5
- 0
source/deployment/deployment-peer/pom.xml View File

@@ -15,6 +15,11 @@
<artifactId>peer</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.jd.blockchain</groupId>
<artifactId>manager</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.jd.blockchain</groupId>
<artifactId>runtime-modular</artifactId>


+ 2
- 0
source/deployment/deployment-peer/src/main/resources/assembly.xml View File

@@ -36,6 +36,7 @@
<include>com.jd.blockchain:runtime-modular</include>
<include>com.jd.blockchain:runtime-modular-booter</include>
<include>com.jd.blockchain:peer</include>
<include>com.jd.blockchain:manager</include>
<include>com.jd.blockchain:deployment-peer</include>
</includes>
</dependencySet>
@@ -52,6 +53,7 @@
<exclude>com.jd.blockchain:runtime-modular</exclude>
<exclude>com.jd.blockchain:runtime-modular-booter</exclude>
<exclude>com.jd.blockchain:peer</exclude>
<exclude>com.jd.blockchain:manager</exclude>
<exclude>com.jd.blockchain:deployment-peer</exclude>
</excludes>
</dependencySet>


+ 53
- 0
source/manager/pom.xml View File

@@ -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>

+ 1
- 0
source/pom.xml View File

@@ -32,6 +32,7 @@
<module>storage</module>
<module>gateway</module>
<module>peer</module>
<module>manager</module>
<module>sdk</module>
<module>tools</module>
<module>test</module>


Loading…
Cancel
Save