-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
executable file
·54 lines (52 loc) · 1.85 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<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>9</version>
</parent>
<groupId>net.sourceforge.javydreamercsw.deck.manager</groupId>
<artifactId>Deck-Manager</artifactId>
<version>0.3-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Deck Manager Parent</name>
<modules>
<module>Deck-Manager</module>
<module>card-game-interface</module>
</modules>
<properties>
<netbeans.version>RELEASE82</netbeans.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<repositories>
<repository>
<id>EclipseLink</id>
<url>http://download.eclipse.org/rt/eclipselink/maven.repo</url>
</repository>
<repository>
<id>Sonatype Snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
<repository>
<id>NetBeans</id>
<url>http://bits.netbeans.org/maven2/</url>
</repository>
<repository>
<id>SourceForge</id>
<name>SourceForge</name>
<url>https://mvnrepository.com/artifact/</url>
</repository>
</repositories>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>nbm-maven-plugin</artifactId>
<version>3.13.3</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>