|
@@ -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>
|