Guest User

Untitled

a guest
Aug 20th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. <build>
  2. <plugins>
  3. <plugin>
  4. <groupId>org.apache.maven.plugins</groupId>
  5. <artifactId>maven-compiler-plugin</artifactId>
  6. <version>2.3.2</version>
  7. <configuration>
  8. <source>1.6</source>
  9. <target>1.6</target>
  10. <encoding>UTF-8</encoding>
  11. <compilerArgument>-AloggingVersion=3.0</compilerArgument>
  12. </configuration>
  13. </plugin>
  14. <plugin>
  15. <groupId>org.apache.maven.plugins</groupId>
  16. <artifactId>maven-source-plugin</artifactId>
  17. <version>2.1.2</version>
  18. <executions>
  19. <execution>
  20. <id>attach-sources</id>
  21. <phase>verify</phase>
  22. <goals>
  23. <goal>jar-no-fork</goal>
  24. </goals>
  25. </execution>
  26. </executions>
  27. </plugin>
Add Comment
Please, Sign In to add comment