Advertisement
Guest User

Untitled

a guest
Apr 24th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <plugins>
  2. <plugin>
  3. <groupId>org.springframework.boot</groupId>
  4. <artifactId>spring-boot-maven-plugin</artifactId>
  5. </plugin>
  6. <plugin>
  7. <groupId>com.spotify</groupId>
  8. <artifactId>dockerfile-maven-plugin</artifactId>
  9. <version>${dockerfile-maven-version}</version>
  10. <executions>
  11. <execution>
  12. <id>default</id>
  13. <goals>
  14. <goal>build</goal>
  15. <goal>push</goal>
  16. </goals>
  17. </execution>
  18. </executions>
  19. <configuration>
  20. <repository>spotify/foobar</repository>
  21. <tag>${project.version}</tag>
  22. <buildArgs>
  23. <JAR_FILE>${project.build.finalName}.jar</JAR_FILE>
  24. </buildArgs>
  25. </configuration>
  26. </plugin>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement