pom.xml 1.7 KB
Newer Older
1 2 3 4 5 6 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>
H
huanghaiquan 已提交
8
		<version>1.1.5.RELEASE</version>
9 10
		<relativePath>../project/parent</relativePath>
	</parent>
H
huanghaiquan 已提交
11
	<groupId>com.jd.utils</groupId>
12
	<artifactId>utils</artifactId>
13
	<version>2.0.3.RELEASE</version>
14 15 16
	<packaging>pom</packaging>

	<modules>
H
huanghaiquan 已提交
17 18 19 20
		<module>utils-common</module>
		<module>utils-crypto-base</module>
		<module>utils-crypto-classic</module>
		<module>utils-crypto-sm</module>
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
		<module>utils-serialize</module>
		<module>utils-web-server</module>
		<module>utils-test</module>
	</modules>

	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.mockito</groupId>
			<artifactId>mockito-core</artifactId>
			<scope>test</scope>
		</dependency>
	</dependencies>

	<dependencyManagement>
		<dependencies>
			<dependency>
				<groupId>net.i2p.crypto</groupId>
				<artifactId>eddsa</artifactId>
				<version>0.1.0</version>
			</dependency>

		</dependencies>
	</dependencyManagement>

	<!--<build> <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> &lt;!&ndash; <executable>C:/Java/jdk1.7.0_79/bin/javac</executable> 
		&ndash;&gt; </configuration> </plugin> </plugins> </build> -->
</project>