Skip to content

Commit

Permalink
Merge pull request #7 from Cosium/convert-to-maven
Browse files Browse the repository at this point in the history
Convert to maven project
  • Loading branch information
korhner committed May 29, 2016
2 parents 7dfb44f + 81fd4a7 commit 95c7764
Show file tree
Hide file tree
Showing 24 changed files with 2,049 additions and 2,050 deletions.
6 changes: 0 additions & 6 deletions .classpath

This file was deleted.

11 changes: 11 additions & 0 deletions .gitignore
@@ -1,3 +1,14 @@
### Maven template
target/
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
pom.xml.next
release.properties
dependency-reduced-pom.xml
buildNumber.properties
.mvn/timing.properties

*.class

# Mobile Tools for Java (J2ME)
Expand Down
17 changes: 0 additions & 17 deletions .project

This file was deleted.

11 changes: 0 additions & 11 deletions .settings/org.eclipse.jdt.core.prefs

This file was deleted.

2 changes: 0 additions & 2 deletions bin/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion compile.sh

This file was deleted.

22 changes: 22 additions & 0 deletions 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>io.korhner</groupId>
<artifactId>asciimg</artifactId>
<version>1.00-SNAPSHOT</version>
<packaging>jar</packaging>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 95c7764

Please sign in to comment.