Explorar el Código

project setup

Leon hace 7 años
padre
commit
94c7f114aa
Se han modificado 2 ficheros con 39 adiciones y 0 borrados
  1. 27
    0
      .gitignore
  2. 12
    0
      pom.xml

+ 27
- 0
.gitignore Ver fichero

@@ -0,0 +1,27 @@
1
+target/
2
+!.mvn/wrapper/maven-wrapper.jar
3
+
4
+### STS ###
5
+.apt_generated
6
+.classpath
7
+.factorypath
8
+.project
9
+.settings
10
+.springBeans
11
+
12
+### IntelliJ IDEA ###
13
+.idea
14
+*.iws
15
+*.iml
16
+*.ipr
17
+
18
+### NetBeans ###
19
+nbproject/private/
20
+build/
21
+nbbuild/
22
+dist/
23
+nbdist/
24
+.nb-gradle/
25
+
26
+### OSX Files ###
27
+.DS_Store

+ 12
- 0
pom.xml Ver fichero

@@ -0,0 +1,12 @@
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>Polymorphism</artifactId>
9
+    <version>1.0-SNAPSHOT</version>
10
+
11
+
12
+</project>