Browse Source

Initial setup

Tankernn 8 years ago
commit
19f01ccd88
3 changed files with 39 additions and 0 deletions
  1. 12 0
      .gitignore
  2. 22 0
      pom.xml
  3. 5 0
      src/main/java/eu/tankernn/julklapp/Julklapp.java

+ 12 - 0
.gitignore

@@ -0,0 +1,12 @@
+.settings/
+.classpath
+.project
+
+tmp/
+*.tmp
+*.bak
+*.swp
+
+bin/
+target/
+.DS_Store

+ 22 - 0
pom.xml

@@ -0,0 +1,22 @@
+<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/xsd/maven-4.0.0.xsd">
+	<modelVersion>4.0.0</modelVersion>
+	<groupId>julspel</groupId>
+	<artifactId>eu.tankernn.julspel</artifactId>
+	<version>0.0.1</version>
+	<name>Julspel</name>
+	<description>Ett simpelt julspel.</description>
+
+	<build>
+		<plugins>
+			<plugin>
+				<artifactId>maven-compiler-plugin</artifactId>
+				<version>3.5.1</version>
+				<configuration>
+					<source>1.8</source>
+					<target>1.8</target>
+				</configuration>
+			</plugin>
+		</plugins>
+	</build>
+</project>

+ 5 - 0
src/main/java/eu/tankernn/julklapp/Julklapp.java

@@ -0,0 +1,5 @@
+package eu.tankernn.julklapp;
+
+public class Julklapp {
+
+}