Skip to content

Commit

Permalink
Merge pull request #44 from SERG-Delft/jdk7
Browse files Browse the repository at this point in the history
Switching back to jdk7
  • Loading branch information
avandeursen committed Apr 18, 2015
2 parents 50e8bac + 7a8c8b1 commit c4d152d
Showing 1 changed file with 12 additions and 18 deletions.
30 changes: 12 additions & 18 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@
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>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<prerequisites>
<maven>3.0.1</maven>
</prerequisites>

<groupId>nl.tudelft.jpacman</groupId>
<artifactId>jpacman-framework</artifactId>
<version>6.1.1</version>
<version>6.2.0</version>
<url>https://github.com/serg-delft/jpacman-framework</url>
<description>
Pacman-inspired game, for teaching testing purposes.
Expand All @@ -26,10 +27,6 @@
</license>
</licenses>

<prerequisites>
<maven>3.0.1</maven>
</prerequisites>

<distributionManagement>
<repository>
<id>jpacman-deployment</id>
Expand All @@ -41,6 +38,13 @@
</snapshotRepository>
</distributionManagement>

<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>

<dependencies>
<dependency>
<groupId>junit</groupId>
Expand All @@ -61,16 +65,6 @@

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

<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.5.3</version>
Expand Down

0 comments on commit c4d152d

Please sign in to comment.