Advertisement
Guest User

Untitled

a guest
Aug 18th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. <plugin>
  2. <artifactId>maven-resources-plugin</artifactId>
  3. <executions>
  4. <execution>
  5. <id>copy-resources</id>
  6. <phase>validate</phase>
  7. <goals>
  8. <goal>copy-resources</goal>
  9. </goals>
  10. <configuration>
  11. <outputDirectory>${basedir}/target/${project.artifactId}-${project.version}/</outputDirectory>
  12. <resources>
  13. <resource>
  14. <directory>D:\PROJETOS - GIT\cerbero-repository-front\dist\pw130</directory> <-- aqui você fala o caminho onde está o html, assets, etc..
  15. </resource>
  16. </resources>
  17. </configuration>
  18. </execution>
  19. </executions>
  20. </plugin>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement