|
@@ -60,29 +60,18 @@
|
|
|
<plugin>
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
- <version>3.5.1</version>
|
|
|
+ <version>3.6.0</version>
|
|
|
<configuration>
|
|
|
- <source>1.8</source>
|
|
|
- <target>1.8</target>
|
|
|
+ <!-- put your configurations here -->
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
- <plugin>
|
|
|
- <groupId>com.googlecode.mavennatives</groupId>
|
|
|
- <artifactId>maven-nativedependencies-plugin</artifactId>
|
|
|
- <version>0.0.6</version>
|
|
|
- <executions>
|
|
|
- <execution>
|
|
|
- <id>unpacknatives</id>
|
|
|
- <phase>package</phase>
|
|
|
- <goals>
|
|
|
- <goal>copy</goal>
|
|
|
- </goals>
|
|
|
- </execution>
|
|
|
- </executions>
|
|
|
- </plugin>
|
|
|
</plugins>
|
|
|
|
|
|
<resources>
|
|
|
+ <resource>
|
|
|
+ <directory>src/main/resources</directory>
|
|
|
+ <filtering>false</filtering>
|
|
|
+ </resource>
|
|
|
<resource>
|
|
|
<directory>src/main/java</directory>
|
|
|
<includes>
|
|
@@ -93,6 +82,8 @@
|
|
|
</build>
|
|
|
|
|
|
<properties>
|
|
|
+ <maven.compiler.source>1.8</maven.compiler.source>
|
|
|
+ <maven.compiler.target>1.8</maven.compiler.target>
|
|
|
<build.number>SNAPSHOT</build.number>
|
|
|
</properties>
|
|
|
</project>
|