Skip to content

Commit e3f1dc4

Browse files
committed
Maven pom.xml file added
1 parent 8ac8479 commit e3f1dc4

File tree

1 file changed

+69
-0
lines changed

1 file changed

+69
-0
lines changed

pom.xml

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>at.gmi.nordborglab</groupId>
5+
<artifactId>processingjs</artifactId>
6+
<version>0.5.0-SNAPSHOT</version>
7+
<name>processingjs</name>
8+
9+
<parent>
10+
<groupId>at.gmi.nordborglab</groupId>
11+
<artifactId>superpom</artifactId>
12+
<version>0.1</version>
13+
</parent>
14+
15+
<properties>
16+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
18+
<gwtVersion>2.4.0</gwtVersion>
19+
<github.maven.repository>file:///srv/uemit.seren/repository/maven-repository/</github.maven.repository>
20+
</properties>
21+
22+
23+
<dependencies>
24+
<dependency>
25+
<groupId>junit</groupId>
26+
<artifactId>junit</artifactId>
27+
<version>4.7</version>
28+
<scope>test</scope>
29+
</dependency>
30+
<dependency>
31+
<groupId>com.google.gwt</groupId>
32+
<artifactId>gwt-user</artifactId>
33+
<version>${gwtVersion}</version>
34+
<scope>provided</scope>
35+
</dependency>
36+
</dependencies>
37+
38+
<distributionManagement>
39+
<repository>
40+
<id>repo</id>
41+
<url>${github.maven.repository}/releases/</url>
42+
</repository>
43+
<snapshotRepository>
44+
<id>snapshot-repo</id>
45+
<url>${github.maven.repository}/snapshots/</url>
46+
</snapshotRepository>
47+
</distributionManagement>
48+
49+
50+
<organization>
51+
<name>GMI</name>
52+
<url>http://www.gmi.oeaw.ac.at</url>
53+
</organization>
54+
<build>
55+
<resources>
56+
<resource>
57+
<directory>src/main/java</directory>
58+
</resource>
59+
<resource>
60+
<directory>src/main/resources</directory>
61+
</resource>
62+
</resources>
63+
</build>
64+
<scm>
65+
<url>https://timeu@github.com/timeu/processing-js-gwt.git</url>
66+
<connection>https://timeu@github.com/timeu/processing-js-gwt.git</connection>
67+
<developerConnection>https://timeu@github.com/timeu/processing-js-gwt.git</developerConnection>
68+
</scm>
69+
</project>

0 commit comments

Comments
 (0)