Quellcode durchsuchen

Adding gitignore and pom file

Zach Marcin vor 7 Jahren
Ursprung
Commit
78feb7bfe1
2 geänderte Dateien mit 35 neuen und 0 gelöschten Zeilen
  1. 3
    0
      .gitignore
  2. 32
    0
      pom.xml

+ 3
- 0
.gitignore Datei anzeigen

@@ -0,0 +1,3 @@
1
+.idea/*
2
+*.iml
3
+target/*

+ 32
- 0
pom.xml Datei anzeigen

@@ -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>io.zipcoder</groupId>
8
+    <artifactId>Generics</artifactId>
9
+    <version>1.0-SNAPSHOT</version>
10
+
11
+    <dependencies>
12
+        <dependency>
13
+            <groupId>junit</groupId>
14
+            <artifactId>junit</artifactId>
15
+            <version>4.12</version>
16
+        </dependency>
17
+    </dependencies>
18
+
19
+    <build>
20
+        <plugins>
21
+            <plugin>
22
+                <groupId>org.apache.maven.plugins</groupId>
23
+                <artifactId>maven-compiler-plugin</artifactId>
24
+                <configuration>
25
+                    <source>1.8</source>
26
+                    <target>1.8</target>
27
+                </configuration>
28
+            </plugin>
29
+        </plugins>
30
+    </build>
31
+
32
+</project>