Upgraded to Java8

This commit is contained in:
Carlos Galindo 2019-03-26 23:25:35 +01:00
parent 56c07550f2
commit 5dd9e8e35b
Signed by untrusted user who does not match committer: kauron
GPG Key ID: 83E68706DEE119A3
3 changed files with 14 additions and 2 deletions

View File

@ -10,7 +10,7 @@
</profile>
</annotationProcessing>
<bytecodeTargetLevel>
<module name="LTD_Proyecto2_Alumnos" target="1.5" />
<module name="LTD_Proyecto2_Alumnos" target="8" />
</bytecodeTargetLevel>
</component>
</project>

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<component LANGUAGE_LEVEL="JDK_1_5" inheritJdk="true">
<component LANGUAGE_LEVEL="JDK_1_8" inheritJdk="true">
<output-test url="file://$MODULE_DIR$/target/test-classes"/>
<contentEntry url="file://$MODULE_DIR$">
<testFolder url="file://$MODULE_DIR$/src/test/java"/>

12
pom.xml
View File

@ -5,6 +5,18 @@
<groupId>com.upv.ltd.graphs</groupId>
<artifactId>graphs</artifactId>
<version>0.0.1-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
</plugins>
</build>
<packaging>jar</packaging>
<name>graphs</name>