Advertisement
Guest User

Untitled

a guest
Feb 17th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.15 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>org</groupId>
  4. <artifactId>recommender101</artifactId>
  5. <version>0.61</version>
  6. <build>
  7. <sourceDirectory>src</sourceDirectory>
  8. <plugins>
  9. <plugin>
  10. <artifactId>maven-antrun-plugin</artifactId>
  11. <dependencies>
  12. <dependency>
  13. <groupId>com.sun</groupId>
  14. <artifactId>tools</artifactId>
  15. <version>1.8.0</version>
  16. <scope>system</scope>
  17. <systemPath>${java.home}/../lib/tools.jar</systemPath>
  18. </dependency>
  19. </dependencies>
  20. <executions>
  21. <execution>
  22. <phase>process-resources</phase>
  23. <configuration>
  24. <tasks>
  25. <ant antfile="build.xml" target="jar"/>
  26. </tasks>
  27. </configuration>
  28. <goals>
  29. <goal>run</goal>
  30. </goals>
  31. </execution>
  32. </executions>
  33. </plugin>
  34. <plugin>
  35. <groupId>org.codehaus.mojo</groupId>
  36. <artifactId>build-helper-maven-plugin</artifactId>
  37. <version>1.3</version>
  38. <executions>
  39. <execution>
  40. <id>add-jar</id>
  41. <phase>package</phase>
  42. <goals>
  43. <goal>attach-artifact</goal>
  44. </goals>
  45. <configuration>
  46. <artifacts>
  47. <artifact>
  48. <file>build/jar/recommender101.jar</file>
  49. <type>jar</type>
  50. </artifact>
  51. </artifacts>
  52. </configuration>
  53. </execution>
  54. </executions>
  55. </plugin>
  56. <plugin>
  57. <artifactId>maven-jar-plugin</artifactId>
  58. <version></version>
  59. <executions>
  60. <execution>
  61. <id>default-jar</id>
  62. <phase>none</phase>
  63. </execution>
  64. </executions>
  65. </plugin>
  66. </plugins>
  67. </build>
  68. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement