Merge pull request #395 from jackygurui/master

Some optimisations in pom.xml
pull/400/head
Nikita Koksharov 9 years ago
commit 73578495c2

@ -86,6 +86,12 @@
</plugins> </plugins>
</build> </build>
</profile> </profile>
<profile>
<id>unit-test</id>
<properties>
<maven.test.skip>false</maven.test.skip>
</properties>
</profile>
</profiles> </profiles>
<dependencies> <dependencies>
@ -308,6 +314,22 @@
<optimize>true</optimize> <optimize>true</optimize>
<showDeprecations>true</showDeprecations> <showDeprecations>true</showDeprecations>
</configuration> </configuration>
<executions>
<execution>
<id>default-testCompile</id>
<phase>process-test-sources</phase>
<goals>
<goal>testCompile</goal>
</goals>
<configuration>
<fork>true</fork>
<source>1.8</source>
<target>1.8</target>
<optimize>true</optimize>
<showDeprecations>true</showDeprecations>
</configuration>
</execution>
</executions>
</plugin> </plugin>
<plugin> <plugin>

Loading…
Cancel
Save