Skip to content
Snippets Groups Projects
Commit 3fd6daa7 authored by Lange, Dr. Herbert's avatar Lange, Dr. Herbert
Browse files

change compiler version to 8 and add exec plugin to maven

parent ab573582
No related tags found
No related merge requests found
Pipeline #9175 passed
...@@ -16,10 +16,26 @@ ...@@ -16,10 +16,26 @@
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>3.6.2</version> <version>3.6.2</version>
<configuration> <configuration>
<source>1.7</source> <source>8</source>
<target>1.7</target> <target>8</target>
</configuration> </configuration>
</plugin> </plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<goals>
<goal>java</goal>
</goals>
</execution>
</executions>
<configuration>
<mainClass>de.uni_hamburg.corpora.CorpusMagician</mainClass>
</configuration>
</plugin>
<!-- <!--
https://stackoverflow.com/questions/574594/how-can-i-create-an-executable-jar-with-dependencies-using-maven https://stackoverflow.com/questions/574594/how-can-i-create-an-executable-jar-with-dependencies-using-maven
--> -->
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment