2 Star 18 Fork 15

京东开源/bftsmart

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 3.54 KB
一键复制 编辑 原始数据 按行查看 历史
imuge 提交于 2022-10-18 17:13 +08:00 . release 0.7.7
<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.9.RELEASE</version>
<relativePath>../../project/parent</relativePath>
</parent>
<artifactId>bft-smart</artifactId>
<version>0.7.7.RELEASE</version>
<properties>
<util.version>2.2.4.RELEASE</util.version>
</properties>
<dependencies>
<dependency>
<groupId>com.jd.utils</groupId>
<artifactId>utils-common</artifactId>
<version>${util.version}</version>
</dependency>
<dependency>
<groupId>com.jd.utils</groupId>
<artifactId>utils-serialize</artifactId>
<version>${util.version}</version>
</dependency>
<dependency>
<groupId>com.jd.utils</groupId>
<artifactId>utils-crypto-sm</artifactId>
<version>${util.version}</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-log4j2</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
</dependency>
</dependencies>
<build>
<!-- <sourceDirectory>src</sourceDirectory> -->
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<additionalparam>${javadoc.opts}</additionalparam>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>disable-javadoc-doclint</id>
<activation>
<jdk>[1.8,)</jdk>
</activation>
<properties>
<javadoc.opts>-Xdoclint:none</javadoc.opts>
</properties>
</profile>
</profiles>
<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/bftsmart.git</url>
<connection>https://github.com/blockchain-jd-com/bftsmart.git</connection>
<developerConnection>https://github.com/blockchain-jd-com/bftsmart.git</developerConnection>
</scm>
<developers>
<developer>
<name>jdchain</name>
<email>[email protected]</email>
<url>https://github.com/blockchain-jd-com/jdchain.git</url>
</developer>
</developers>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/JD-opensource/bftsmart.git
[email protected]:JD-opensource/bftsmart.git
JD-opensource
bftsmart
bftsmart
master

搜索帮助