Browse Source

add eclipse project setup

David Ginzberg 7 years ago
parent
commit
ea4d38577d
4 changed files with 39 additions and 0 deletions
  1. 7
    0
      .gitignore
  2. 32
    0
      pom.xml
  3. 0
    0
      src/main/java/.deleteme
  4. 0
    0
      src/test/java/.deleteme

+ 7
- 0
.gitignore View File

@@ -1,5 +1,9 @@
1 1
 *.class
2 2
 
3
+.classpath
4
+.settings
5
+.project
6
+
3 7
 # Mobile Tools for Java (J2ME)
4 8
 .mtj.tmp/
5 9
 
@@ -10,3 +14,6 @@
10 14
 
11 15
 # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
12 16
 hs_err_pid*
17
+/target/
18
+/bin/
19
+

+ 32
- 0
pom.xml View File

@@ -0,0 +1,32 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<project xmlns="http://maven.apache.org/POM/4.0.0"
3
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5
+    <modelVersion>4.0.0</modelVersion>
6
+
7
+    <groupId>zcw</groupId>
8
+    <artifactId>generics</artifactId>
9
+    <version>1.0-SNAPSHOT</version>
10
+    <build>
11
+        <plugins>
12
+            <plugin>
13
+                <groupId>org.apache.maven.plugins</groupId>
14
+                <artifactId>maven-compiler-plugin</artifactId>
15
+                <configuration>
16
+                    <source>1.7</source>
17
+                    <target>1.7</target>
18
+                </configuration>
19
+            </plugin>
20
+        </plugins>
21
+    </build>
22
+    <dependencies>
23
+
24
+
25
+        <dependency>
26
+            <groupId>junit</groupId>
27
+            <artifactId>junit</artifactId>
28
+            <version>RELEASE</version>
29
+        </dependency>
30
+    </dependencies>
31
+
32
+</project>

+ 0
- 0
src/main/java/.deleteme View File


+ 0
- 0
src/test/java/.deleteme View File