Skip to content

Commit f343090

Browse files
author
Markus Binsteiner
committed
Refactored into it's own project. Added gitignore.
1 parent a14d69c commit f343090

File tree

2 files changed

+39
-6
lines changed

2 files changed

+39
-6
lines changed

.gitignore

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
.classpath
2+
.project
3+
target
4+
.settings
5+
derby.log
6+
*.class
7+
nbactions.xml
8+
.pydevproject
9+
*~
10+
nb-configuration.xml
11+
rebel.xml
12+
grisu-server.config

pom.xml

+27-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
<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/maven-v4_0_0.xsd">
2-
<parent>
3-
<artifactId>jgrith</artifactId>
4-
<groupId>grith</groupId>
5-
<version>0.5.5-SNAPSHOT</version>
6-
</parent>
72
<modelVersion>4.0.0</modelVersion>
8-
<artifactId>simpleProxyLib</artifactId>
3+
<artifactId>jgrith</artifactId>
4+
<groupId>grith</groupId>
5+
<version>0.5.6-SNAPSHOT</version>
96

107
<properties>
118
<maven.test.skip>true</maven.test.skip>
@@ -23,6 +20,30 @@
2320
</repository>
2421
</repositories>
2522

23+
<scm>
24+
<connection>scm:git:git://github.com/grith/jgrith.git
25+
</connection>
26+
<url>scm:git:[email protected]:grith/jgrith.git
27+
</url>
28+
</scm>
29+
30+
<distributionManagement>
31+
<repository>
32+
<id>arcs.release</id>
33+
<name>ARCS Release Repository</name>
34+
<url>http://code.arcs.org.au/nexus/content/repositories/releases
35+
</url>
36+
<uniqueVersion>false</uniqueVersion>
37+
</repository>
38+
<snapshotRepository>
39+
<id>arcs.snapshot</id>
40+
<name>ARCS SNAPSHOT Repository</name>
41+
<url>http://code.arcs.org.au/nexus/content/repositories/snapshots
42+
</url>
43+
<uniqueVersion>false</uniqueVersion>
44+
</snapshotRepository>
45+
</distributionManagement>
46+
2647

2748
<dependencies>
2849

0 commit comments

Comments
 (0)