1 Star 0 Fork 83

huawei / J2Chain

forked from 红薯 / J2Chain 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 3.98 KB
一键复制 编辑 原始数据 按行查看 历史
Winter Lau 提交于 2018-03-30 00:12 . add demo app
<?xml version="1.0" encoding="UTF-8"?>
<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>
<groupId>net.oschina.j2chain</groupId>
<artifactId>j2chain</artifactId>
<version>1.0</version>
<packaging>pom</packaging>
<name>j2chain</name>
<description>J2Chain is a blockchain project for Java.</description>
<url>https://gitee.com/ld/J2Chain</url>
<licenses>
<license>
<name>The MIT License (MIT)</name>
<url>https://opensource.org/licenses/MIT</url>
</license>
</licenses>
<scm>
<connection>scm:git:git@gitee.com:ld/J2Chain.git</connection>
<developerConnection>scm:git:git@gitee.com:ld/J2Chain.git</developerConnection>
<url>git@gitee.com:ld/J2Chain.git</url>
</scm>
<distributionManagement>
<snapshotRepository>
<id>snapshot</id>
<name>J2Chain SnapShot</name>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>release</id>
<name>J2Chain Release</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<j2chain-version>1.0</j2chain-version>
</properties>
<build>
<sourceDirectory>src</sourceDirectory>
<resources>
<resource>
<directory>resources</directory>
</resource>
</resources>
<plugins>
<!-- Source -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- GPG -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<release>10</release>
</configuration>
<dependencies>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>6.1</version> <!-- Use newer version of ASM -->
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
<modules>
<module>core</module>
<module>demo</module>
</modules>
<dependencies>
<!-- https://mvnrepository.com/artifact/junit/junit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
<developers>
<developer>
<name>Winter Lau</name>
<email>javayou@gmail.com</email>
</developer>
</developers>
</project>
Java
1
https://gitee.com/weizai118/J2Chain.git
git@gitee.com:weizai118/J2Chain.git
weizai118
J2Chain
J2Chain
master

搜索帮助