Upgraded to Java8
This commit is contained in:
parent
56c07550f2
commit
5dd9e8e35b
3 changed files with 14 additions and 2 deletions
2
.idea/compiler.xml
generated
2
.idea/compiler.xml
generated
|
@ -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>
|
|
@ -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
12
pom.xml
|
@ -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>
|
||||||
|
|
Loading…
Add table
Reference in a new issue