-
Notifications
You must be signed in to change notification settings - Fork 39
/
pom.xml
38 lines (32 loc) · 1.12 KB
/
pom.xml
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
<?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>org.nem.ncc</groupId>
<artifactId>nem-client</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>NEM Community Client</name>
<repositories>
<repository>
<id>repo2_maven_org</id>
<url>http://repo2.maven.org/maven2</url>
</repository>
</repositories>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- http://central.maven.org/maven2/org/eclipse/jetty/jetty-maven-plugin/ -->
<jetty.version>9.1.3.v20140225</jetty.version>
<spring.version>4.0.0.RELEASE</spring.version>
<ncc.version>0.0.1-SNAPSHOT</ncc.version>
</properties>
<modules>
<module>nem-client-api</module>
<!-- <module>nem-client-web</module> -->
<module>nem-client-download</module>
</modules>
<dependencies>
</dependencies>
<build>
<defaultGoal>install</defaultGoal>
</build>
</project>