pom.xml 603 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
<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>org.sonatype.oss</groupId>
		<artifactId>oss-parent</artifactId>
		<version>7</version>
	</parent>
	
	<groupId>com.jd.blockchain</groupId>
	<artifactId>explorer</artifactId>
H
huanghaiquan 已提交
13
	<version>1.1.2.RELEASE</version>
14
	<packaging>pom</packaging>
15

16 17 18 19
	<modules>
		<module>data-explorer</module>
		<module>manager-explorer</module>
	</modules>
J
jinlong12 已提交
20
</project>