Guest User

Untitled

a guest
Feb 19th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. Manifest-Version: 1.0
  2. Archiver-Version: Plexus Archiver
  3. Built-By: sbt-tanikin-e
  4. Created-By: Apache Maven 3.3.9
  5. Build-Jdk: 1.8.0_162
  6.  
  7.  
  8.  
  9. <build>
  10. <finalName>${name}-${version}</finalName>
  11. <plugins>
  12. <plugin>
  13. <groupId>org.apache.maven.plugins</groupId>
  14. <artifactId>maven-compiler-plugin</artifactId>
  15. <configuration>
  16. <source>1.8</source>
  17. <target>1.8</target>
  18. </configuration>
  19. </plugin>
  20. <plugin>
  21. <artifactId>maven-war-plugin</artifactId>
  22. <configuration>
  23. <failOnMissingWebXml>false</failOnMissingWebXml>
  24. </configuration>
  25. </plugin>
  26. <plugin>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-maven-plugin</artifactId>
  29. <version>1.5.10.RELEASE</version>
  30. <executions>
  31. <execution>
  32. <goals>
  33. <goal>repackage</goal>
  34. </goals>
  35. </execution>
  36. </executions>
  37. </plugin>
  38. </plugins>
  39. </build>
Add Comment
Please, Sign In to add comment