forked from neaos/HelloworldBlockchain
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
145 lines (129 loc) · 5.03 KB
/
pom.xml
File metadata and controls
145 lines (129 loc) · 5.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<?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>com.xingkaichun.helloworldblockchain</groupId>
<artifactId>helloworld-blockchain-parent</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<modules>
<module>helloworld-blockchain-core</module>
<module>helloworld-blockchain-crypto</module>
<module>helloworld-blockchain-netcore</module>
<module>helloworld-blockchain-netcore-dto</module>
<module>helloworld-blockchain-setting</module>
<module>helloworld-blockchain-util</module>
<module>helloworld-blockchain-netcore-client</module>
<module>helloworld-blockchain-application</module>
</modules>
<name>helloworld-blockchain-parent</name>
<url>http://www.helloworldblockchain.com</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<junit.version>4.13.1</junit.version>
<slf4j.version>1.7.21</slf4j.version>
<leveldb.version>0.12</leveldb.version>
<gson.version>2.8.6</gson.version>
<bcprov.version>1.59</bcprov.version>
<bitcoinj.version>0.15.10</bitcoinj.version>
<guava.version>30.0-jre</guava.version>
<springboot.version>2.0.1.RELEASE</springboot.version>
<netty-all.version>4.1.49.Final</netty-all.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
</dependency>
<dependency>
<groupId>com.xingkaichun.helloworldblockchain</groupId>
<artifactId>helloworld-blockchain-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.xingkaichun.helloworldblockchain</groupId>
<artifactId>helloworld-blockchain-application</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.xingkaichun.helloworldblockchain</groupId>
<artifactId>helloworld-blockchain-crypto</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.xingkaichun.helloworldblockchain</groupId>
<artifactId>helloworld-blockchain-netcore</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.xingkaichun.helloworldblockchain</groupId>
<artifactId>helloworld-blockchain-netcore-client</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.xingkaichun.helloworldblockchain</groupId>
<artifactId>helloworld-blockchain-netcore-dto</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.xingkaichun.helloworldblockchain</groupId>
<artifactId>helloworld-blockchain-setting</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.xingkaichun.helloworldblockchain</groupId>
<artifactId>helloworld-blockchain-util</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>${springboot.version}</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
<version>${bcprov.version}</version>
</dependency>
<dependency>
<groupId>org.iq80.leveldb</groupId>
<artifactId>leveldb</artifactId>
<version>${leveldb.version}</version>
</dependency>
<dependency>
<groupId>org.iq80.leveldb</groupId>
<artifactId>leveldb-api</artifactId>
<version>${leveldb.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${gson.version}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>${netty-all.version}</version>
</dependency>
<dependency>
<groupId>org.bitcoinj</groupId>
<artifactId>bitcoinj-core</artifactId>
<version>${bitcoinj.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>