Skip to content
Snippets Groups Projects
Commit c82b9505 authored by Christian Wulf's avatar Christian Wulf
Browse files

added version to maven plugin

parent 6acbb520
No related branches found
No related tags found
No related merge requests found
...@@ -13,8 +13,8 @@ ...@@ -13,8 +13,8 @@
</attributes> </attributes>
</classpathentry> </classpathentry>
<classpathentry kind="src" path="conf"/> <classpathentry kind="src" path="conf"/>
<classpathentry kind="src" path="src/test/resources"/> <classpathentry including="**/*.java" kind="src" path="src/test/resources"/>
<classpathentry kind="src" path="src/main/resources"/> <classpathentry including="**/*.java" kind="src" path="src/main/resources"/>
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER"> <classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
<attributes> <attributes>
<attribute name="maven.pomderived" value="true"/> <attribute name="maven.pomderived" value="true"/>
......
eclipse.preferences.version=1 eclipse.preferences.version=1
encoding//src/main/java=UTF-8 encoding//src/main/java=UTF-8
encoding//src/main/resources=UTF-8
encoding//src/test/java=UTF-8 encoding//src/test/java=UTF-8
encoding//src/test/resources=UTF-8
encoding/<project>=UTF-8 encoding/<project>=UTF-8
...@@ -80,6 +80,7 @@ ...@@ -80,6 +80,7 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration> <configuration>
<source>1.6</source> <source>1.6</source>
...@@ -101,21 +102,21 @@ ...@@ -101,21 +102,21 @@
<version>2.5</version> <version>2.5</version>
</plugin> </plugin>
<plugin> <!-- <plugin> -->
<groupId>org.apache.maven.plugins</groupId> <!-- <groupId>org.apache.maven.plugins</groupId> -->
<artifactId>maven-shade-plugin</artifactId> <!-- <artifactId>maven-shade-plugin</artifactId> -->
<executions> <!-- <executions> -->
<execution> <!-- <execution> -->
<phase>package</phase> <!-- <phase>package</phase> -->
<goals> <!-- <goals> -->
<goal>shade</goal> <!-- <goal>shade</goal> -->
</goals> <!-- </goals> -->
</execution> <!-- </execution> -->
</executions> <!-- </executions> -->
<configuration> <!-- <configuration> -->
<finalName>${project.artifactId}-${project.version}-with-dependencies</finalName> <!-- <finalName>${project.artifactId}-${project.version}-with-dependencies</finalName> -->
</configuration> <!-- </configuration> -->
</plugin> <!-- </plugin> -->
</plugins> </plugins>
</build> </build>
</project> </project>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment