Advertisement
Guest User

Untitled

a guest
Jan 21st, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. <plugin>
  2. <groupId>org.codehaus.mojo</groupId>
  3. <artifactId>build-helper-maven-plugin</artifactId>
  4. <version>${build-helper-maven-plugin-version}</version>
  5. <!-- -->
  6. <executions>
  7. <execution>
  8. <id>attach-artifacts</id>
  9. <phase>package</phase>
  10. <goals>
  11. <goal>attach-artifact</goal>
  12. </goals>
  13. <configuration>
  14. <artifacts>
  15. <artifact>
  16. <file>target/classes/features.xml</file>
  17. <type>xml</type>
  18. <classifier>features</classifier>
  19. </artifact>
  20. </artifacts>
  21. </configuration>
  22. </execution>
  23. </executions>
  24. <!-- -->
  25. </plugin>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement