You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <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-parent</artifactId>
- <version>1.1.1.RELEASE</version>
- <relativePath>../project/parent</relativePath>
- </parent>
-
- <groupId>com.jd.blockchain</groupId>
- <artifactId>jdchain-core</artifactId>
- <version>1.2.0-SNAPSHOT</version>
- <packaging>pom</packaging>
-
- <properties>
- <bftsmart.version>0.3.0.RELEASE</bftsmart.version>
-
- <framework.version>1.2.0-SNAPSHOT</framework.version>
- <explorer.version>1.1.2.RELEASE</explorer.version>
- </properties>
-
- <modules>
- <module>../libs/bft-smart</module>
-
- <module>../framework</module>
- <module>../explorer</module>
-
- <module>consensus</module>
- <module>contract</module>
- <module>crypto</module>
- <module>ledger</module>
- <module>runtime</module>
- <module>storage</module>
- <module>gateway</module>
- <module>peer</module>
- <module>manager</module>
- <module>tools</module>
- </modules>
-
-
- <licenses>
- <license>
- <name>The Apache Software License, Version 2.0</name>
- <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
- <distribution>repo</distribution>
- </license>
- </licenses>
-
- <scm>
- <url>https://github.com/blockchain-jd-com/jdchain-framework.git</url>
- <connection>https://github.com/blockchain-jd-com/jdchain-framework.git</connection>
- <developerConnection>https://github.com/blockchain-jd-com/jdchain-framework.git</developerConnection>
- </scm>
-
- <developers>
- <developer>
- <name>jdchain</name>
- <email>git-jdchain@jd.com</email>
- <url>https://github.com/blockchain-jd-com/jdchain-framework.git</url>
- </developer>
- </developers>
-
- <profiles>
- <profile>
- <id>disable-javadoc-doclint</id>
- <activation>
- <jdk>[1.8,)</jdk>
- </activation>
- <properties>
- <javadoc.opts>-Xdoclint:none</javadoc.opts>
- </properties>
- </profile>
- </profiles>
-
-
- </project>
|