File tree 18 files changed +231
-54
lines changed
18 files changed +231
-54
lines changed Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <classpath >
3
+ <classpathentry kind =" output" path =" target/classes" />
4
+ </classpath >
Original file line number Diff line number Diff line change
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 number Diff line number Diff line change
1
+ eclipse.preferences.version =1
2
+ encoding/<project>=UTF-8
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
1
+ activeProfiles =
2
+ eclipse.preferences.version =1
3
+ resolveWorkspaceProjects =true
4
+ version =1
Original file line number Diff line number Diff line change 2
2
xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
3
3
<modelVersion >4.0.0</modelVersion >
4
4
5
- <groupId >sciuto.corey</groupId >
6
5
<artifactId >milltown-engine</artifactId >
7
- <version >0.0.1-SNAPSHOT</version >
8
6
<packaging >jar</packaging >
9
7
10
8
<name >milltown-engine</name >
15
13
</properties >
16
14
17
15
<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 >
30
22
</build >
31
23
32
24
<dependencies >
33
- <dependency >
34
- <groupId >junit</groupId >
35
- <artifactId >junit</artifactId >
36
- <version >4.11</version >
37
- <scope >test</scope >
38
- </dependency >
39
25
<dependency >
40
26
<groupId >org.apache.commons</groupId >
41
27
<artifactId >commons-lang3</artifactId >
42
28
<version >3.1</version >
43
29
</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 >
44
39
</dependencies >
45
40
41
+ <parent >
42
+ <groupId >sciuto.corey</groupId >
43
+ <artifactId >milltown</artifactId >
44
+ <version >0.0.1-SNAPSHOT</version >
45
+ <relativePath >..</relativePath >
46
+ </parent >
46
47
</project >
Original file line number Diff line number Diff line change 1
1
eclipse.preferences.version =1
2
2
encoding//src/main/java =UTF-8
3
3
encoding//src/main/resources =UTF-8
4
+ encoding//src/test/java =UTF-8
4
5
encoding/<project>=UTF-8
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<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 >
3
8
<modelVersion >4.0.0</modelVersion >
4
- <groupId >sciuto.corey</groupId >
5
9
<artifactId >milltown-map-swing</artifactId >
6
10
<name >milltown-map-swing</name >
7
- <version >0.0.1-SNAPSHOT</version >
8
11
<url >http://maven.apache.org</url >
9
12
<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 >
21
13
<plugins >
14
+ <plugin >
15
+ <artifactId >maven-compiler-plugin</artifactId >
16
+ </plugin >
22
17
<plugin >
23
18
<artifactId >maven-shade-plugin</artifactId >
24
19
<version >2.1</version >
44
39
<dependency >
45
40
<groupId >junit</groupId >
46
41
<artifactId >junit</artifactId >
47
- <version >4.11 </version >
42
+ <version >4.10 </version >
48
43
<scope >test</scope >
49
44
<exclusions >
50
45
<exclusion >
Original file line number Diff line number Diff line change 2
2
xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
3
3
<modelVersion >4.0.0</modelVersion >
4
4
5
- <groupId >sciuto.corey</groupId >
6
5
<artifactId >milltown-map-swing</artifactId >
7
- <version >0.0.1-SNAPSHOT</version >
8
6
<packaging >jar</packaging >
9
7
10
8
<name >milltown-map-swing</name >
15
13
</properties >
16
14
17
15
<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
16
<plugins >
17
+ <plugin >
18
+ <groupId >org.apache.maven.plugins</groupId >
19
+ <artifactId >maven-compiler-plugin</artifactId >
20
+ </plugin >
31
21
<plugin >
32
22
<groupId >org.apache.maven.plugins</groupId >
33
23
<artifactId >maven-shade-plugin</artifactId >
52
42
</build >
53
43
54
44
<dependencies >
55
- <dependency >
56
- <groupId >junit</groupId >
57
- <artifactId >junit</artifactId >
58
- <version >4.11</version >
59
- <scope >test</scope >
60
- </dependency >
61
45
<dependency >
62
46
<groupId >sciuto.corey</groupId >
63
47
<artifactId >milltown-engine</artifactId >
64
48
<version >0.0.1-SNAPSHOT</version >
65
49
</dependency >
50
+ <dependency >
51
+ <groupId >junit</groupId >
52
+ <artifactId >junit</artifactId >
53
+ </dependency >
66
54
</dependencies >
55
+ <parent >
56
+ <groupId >sciuto.corey</groupId >
57
+ <artifactId >milltown</artifactId >
58
+ <version >0.0.1-SNAPSHOT</version >
59
+ <relativePath >..</relativePath >
60
+ </parent >
67
61
</project >
Original file line number Diff line number Diff line change
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 >
Original file line number Diff line number Diff line change
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 number Diff line number Diff line change
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 number Diff line number Diff line change
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 number Diff line number Diff line change
1
+ activeProfiles =
2
+ eclipse.preferences.version =1
3
+ resolveWorkspaceProjects =true
4
+ version =1
Original file line number Diff line number Diff line change
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 number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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 >
You can’t perform that action at this time.
0 commit comments