Skip to content

Commit b755a78

Browse files
committed
This is feeling more and more like I need a seperate data module
1 parent c428518 commit b755a78

18 files changed

+231
-54
lines changed

.classpath

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="output" path="target/classes"/>
4+
</classpath>

.project

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>milltown</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>org.eclipse.m2e.core.maven2Builder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
</buildSpec>
19+
<natures>
20+
<nature>org.eclipse.jdt.core.javanature</nature>
21+
<nature>org.eclipse.m2e.core.maven2Nature</nature>
22+
</natures>
23+
</projectDescription>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
eclipse.preferences.version=1
2+
encoding/<project>=UTF-8

.settings/org.eclipse.jdt.core.prefs

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
3+
org.eclipse.jdt.core.compiler.compliance=1.5
4+
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
5+
org.eclipse.jdt.core.compiler.source=1.5

.settings/org.eclipse.m2e.core.prefs

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
activeProfiles=
2+
eclipse.preferences.version=1
3+
resolveWorkspaceProjects=true
4+
version=1

milltown-engine/pom.xml

+21-20
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44

5-
<groupId>sciuto.corey</groupId>
65
<artifactId>milltown-engine</artifactId>
7-
<version>0.0.1-SNAPSHOT</version>
86
<packaging>jar</packaging>
97

108
<name>milltown-engine</name>
@@ -15,32 +13,35 @@
1513
</properties>
1614

1715
<build>
18-
<pluginManagement>
19-
<plugins>
20-
<plugin>
21-
<groupId>org.apache.maven.plugins</groupId>
22-
<artifactId>maven-compiler-plugin</artifactId>
23-
<configuration>
24-
<source>1.6</source>
25-
<target>1.6</target>
26-
</configuration>
27-
</plugin>
28-
</plugins>
29-
</pluginManagement>
16+
<plugins>
17+
<plugin>
18+
<groupId>org.apache.maven.plugins</groupId>
19+
<artifactId>maven-compiler-plugin</artifactId>
20+
</plugin>
21+
</plugins>
3022
</build>
3123

3224
<dependencies>
33-
<dependency>
34-
<groupId>junit</groupId>
35-
<artifactId>junit</artifactId>
36-
<version>4.11</version>
37-
<scope>test</scope>
38-
</dependency>
3925
<dependency>
4026
<groupId>org.apache.commons</groupId>
4127
<artifactId>commons-lang3</artifactId>
4228
<version>3.1</version>
4329
</dependency>
30+
<dependency>
31+
<groupId>sciuto.corey</groupId>
32+
<artifactId>milltown-model</artifactId>
33+
<version>0.0.1-SNAPSHOT</version>
34+
</dependency>
35+
<dependency>
36+
<groupId>junit</groupId>
37+
<artifactId>junit</artifactId>
38+
</dependency>
4439
</dependencies>
4540

41+
<parent>
42+
<groupId>sciuto.corey</groupId>
43+
<artifactId>milltown</artifactId>
44+
<version>0.0.1-SNAPSHOT</version>
45+
<relativePath>..</relativePath>
46+
</parent>
4647
</project>
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
eclipse.preferences.version=1
22
encoding//src/main/java=UTF-8
33
encoding//src/main/resources=UTF-8
4+
encoding//src/test/java=UTF-8
45
encoding/<project>=UTF-8

milltown-map-swing/dependency-reduced-pom.xml

+9-14
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,19 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<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">
3+
<parent>
4+
<artifactId>milltown</artifactId>
5+
<groupId>sciuto.corey</groupId>
6+
<version>0.0.1-SNAPSHOT</version>
7+
</parent>
38
<modelVersion>4.0.0</modelVersion>
4-
<groupId>sciuto.corey</groupId>
59
<artifactId>milltown-map-swing</artifactId>
610
<name>milltown-map-swing</name>
7-
<version>0.0.1-SNAPSHOT</version>
811
<url>http://maven.apache.org</url>
912
<build>
10-
<pluginManagement>
11-
<plugins>
12-
<plugin>
13-
<artifactId>maven-compiler-plugin</artifactId>
14-
<configuration>
15-
<source>1.6</source>
16-
<target>1.6</target>
17-
</configuration>
18-
</plugin>
19-
</plugins>
20-
</pluginManagement>
2113
<plugins>
14+
<plugin>
15+
<artifactId>maven-compiler-plugin</artifactId>
16+
</plugin>
2217
<plugin>
2318
<artifactId>maven-shade-plugin</artifactId>
2419
<version>2.1</version>
@@ -44,7 +39,7 @@
4439
<dependency>
4540
<groupId>junit</groupId>
4641
<artifactId>junit</artifactId>
47-
<version>4.11</version>
42+
<version>4.10</version>
4843
<scope>test</scope>
4944
<exclusions>
5045
<exclusion>

milltown-map-swing/pom.xml

+14-20
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44

5-
<groupId>sciuto.corey</groupId>
65
<artifactId>milltown-map-swing</artifactId>
7-
<version>0.0.1-SNAPSHOT</version>
86
<packaging>jar</packaging>
97

108
<name>milltown-map-swing</name>
@@ -15,19 +13,11 @@
1513
</properties>
1614

1715
<build>
18-
<pluginManagement>
19-
<plugins>
20-
<plugin>
21-
<groupId>org.apache.maven.plugins</groupId>
22-
<artifactId>maven-compiler-plugin</artifactId>
23-
<configuration>
24-
<source>1.6</source>
25-
<target>1.6</target>
26-
</configuration>
27-
</plugin>
28-
</plugins>
29-
</pluginManagement>
3016
<plugins>
17+
<plugin>
18+
<groupId>org.apache.maven.plugins</groupId>
19+
<artifactId>maven-compiler-plugin</artifactId>
20+
</plugin>
3121
<plugin>
3222
<groupId>org.apache.maven.plugins</groupId>
3323
<artifactId>maven-shade-plugin</artifactId>
@@ -52,16 +42,20 @@
5242
</build>
5343

5444
<dependencies>
55-
<dependency>
56-
<groupId>junit</groupId>
57-
<artifactId>junit</artifactId>
58-
<version>4.11</version>
59-
<scope>test</scope>
60-
</dependency>
6145
<dependency>
6246
<groupId>sciuto.corey</groupId>
6347
<artifactId>milltown-engine</artifactId>
6448
<version>0.0.1-SNAPSHOT</version>
6549
</dependency>
50+
<dependency>
51+
<groupId>junit</groupId>
52+
<artifactId>junit</artifactId>
53+
</dependency>
6654
</dependencies>
55+
<parent>
56+
<groupId>sciuto.corey</groupId>
57+
<artifactId>milltown</artifactId>
58+
<version>0.0.1-SNAPSHOT</version>
59+
<relativePath>..</relativePath>
60+
</parent>
6761
</project>

milltown-model/.classpath

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" output="target/classes" path="src/main/java">
4+
<attributes>
5+
<attribute name="optional" value="true"/>
6+
<attribute name="maven.pomderived" value="true"/>
7+
</attributes>
8+
</classpathentry>
9+
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
10+
<attributes>
11+
<attribute name="optional" value="true"/>
12+
<attribute name="maven.pomderived" value="true"/>
13+
</attributes>
14+
</classpathentry>
15+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6">
16+
<attributes>
17+
<attribute name="maven.pomderived" value="true"/>
18+
</attributes>
19+
</classpathentry>
20+
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
21+
<attributes>
22+
<attribute name="maven.pomderived" value="true"/>
23+
</attributes>
24+
</classpathentry>
25+
<classpathentry kind="output" path="target/classes"/>
26+
</classpath>

milltown-model/.project

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>milltown-model</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>org.eclipse.m2e.core.maven2Builder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
</buildSpec>
19+
<natures>
20+
<nature>org.eclipse.jdt.core.javanature</nature>
21+
<nature>org.eclipse.m2e.core.maven2Nature</nature>
22+
</natures>
23+
</projectDescription>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
eclipse.preferences.version=1
2+
encoding//src/main/java=UTF-8
3+
encoding//src/test/java=UTF-8
4+
encoding/<project>=UTF-8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
3+
org.eclipse.jdt.core.compiler.compliance=1.6
4+
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
5+
org.eclipse.jdt.core.compiler.source=1.6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
activeProfiles=
2+
eclipse.preferences.version=1
3+
resolveWorkspaceProjects=true
4+
version=1

milltown-model/pom.xml

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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+
5+
<artifactId>milltown-model</artifactId>
6+
<packaging>jar</packaging>
7+
8+
<name>milltown-model</name>
9+
<url>http://maven.apache.org</url>
10+
11+
<properties>
12+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
13+
</properties>
14+
15+
<build>
16+
<plugins>
17+
<plugin>
18+
<groupId>org.apache.maven.plugins</groupId>
19+
<artifactId>maven-compiler-plugin</artifactId>
20+
</plugin>
21+
</plugins>
22+
</build>
23+
<dependencies>
24+
<dependency>
25+
<groupId>junit</groupId>
26+
<artifactId>junit</artifactId>
27+
</dependency>
28+
</dependencies>
29+
<parent>
30+
<groupId>sciuto.corey</groupId>
31+
<artifactId>milltown</artifactId>
32+
<version>0.0.1-SNAPSHOT</version>
33+
<relativePath>..</relativePath>
34+
</parent>
35+
</project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#Generated by Maven
2+
#Wed Aug 14 22:55:36 EDT 2013
3+
version=0.0.1-SNAPSHOT
4+
groupId=sciuto.corey
5+
artifactId=milltown-model
Binary file not shown.

pom.xml

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
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+
5+
<groupId>sciuto.corey</groupId>
6+
<artifactId>milltown</artifactId>
7+
<version>0.0.1-SNAPSHOT</version>
8+
<packaging>pom</packaging>
9+
10+
<name>milltown</name>
11+
<url>http://maven.apache.org</url>
12+
13+
<properties>
14+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15+
</properties>
16+
17+
<build>
18+
<pluginManagement>
19+
<plugins>
20+
<plugin>
21+
<groupId>org.apache.maven.plugins</groupId>
22+
<artifactId>maven-compiler-plugin</artifactId>
23+
<configuration>
24+
<source>1.6</source>
25+
<target>1.6</target>
26+
</configuration>
27+
</plugin>
28+
</plugins>
29+
</pluginManagement>
30+
</build>
31+
<dependencyManagement>
32+
<dependencies>
33+
<dependency>
34+
<groupId>junit</groupId>
35+
<artifactId>junit</artifactId>
36+
<version>4.10</version>
37+
<scope>test</scope>
38+
</dependency>
39+
</dependencies>
40+
</dependencyManagement>
41+
<modules>
42+
<module>milltown-engine</module>
43+
<module>milltown-map-swing</module>
44+
<module>milltown-model</module>
45+
</modules>
46+
</project>

0 commit comments

Comments
 (0)