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

2
.idea/compiler.xml generated
View file

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

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?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"/> <output-test url="file://$MODULE_DIR$/target/test-classes"/>
<contentEntry url="file://$MODULE_DIR$"> <contentEntry url="file://$MODULE_DIR$">
<testFolder url="file://$MODULE_DIR$/src/test/java"/> <testFolder url="file://$MODULE_DIR$/src/test/java"/>

12
pom.xml
View file

@ -5,6 +5,18 @@
<groupId>com.upv.ltd.graphs</groupId> <groupId>com.upv.ltd.graphs</groupId>
<artifactId>graphs</artifactId> <artifactId>graphs</artifactId>
<version>0.0.1-SNAPSHOT</version> <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> <packaging>jar</packaging>
<name>graphs</name> <name>graphs</name>