Advertisement
Guest User

Pom.xml

a guest
May 1st, 2015
352
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.68 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4.  
  5. <groupId>com.FactFinder</groupId>
  6. <artifactId>FactFinderV2</artifactId>
  7. <version>0.1-ALPHA</version>
  8. <packaging>jar</packaging>
  9.  
  10. <name>FactFinderV2</name>
  11. <url>http://maven.apache.org</url>
  12.  
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. </properties>
  16.  
  17. <build>
  18. <plugins>
  19. <plugin>
  20. <groupId>org.codehaus.mojo</groupId>
  21. <artifactId>exec-maven-plugin</artifactId>
  22. <version>1.2.1</version>
  23. <configuration>
  24. <mainClass>com.FactFinder.App</mainClass>
  25. </configuration>
  26. </plugin>
  27. <plugin>
  28. <groupId>org.apache.maven.plugins</groupId>
  29. <artifactId>maven-dependency-plugin</artifactId>
  30. <executions>
  31. <execution>
  32. <id>copy-dependencies</id>
  33. <phase>prepare-package</phase>
  34. <goals>
  35. <goal>copy-dependencies</goal>
  36. </goals>
  37. <configuration>
  38. <outputDirectory>${project.build.directory}/lib</outputDirectory>
  39. <overWriteReleases>false</overWriteReleases>
  40. <overWriteSnapshots>false</overWriteSnapshots>
  41. <overWriteIfNewer>true</overWriteIfNewer>
  42. </configuration>
  43. </execution>
  44. </executions>
  45. </plugin>
  46. <plugin>
  47. <groupId>org.apache.maven.plugins</groupId>
  48. <artifactId>maven-jar-plugin</artifactId>
  49. <configuration>
  50. <archive>
  51. <manifest>
  52. <addClasspath>true</addClasspath>
  53. <classpathPrefix>lib\</classpathPrefix>
  54. <mainClass>com.FactFinder.App</mainClass>
  55. </manifest>
  56. </archive>
  57. </configuration>
  58. </plugin>
  59. </plugins>
  60. </build>
  61.  
  62. <repositories>
  63. <repository>
  64. <id>sonatype-nexus-snapshots</id>
  65. <name>Sonatype Nexus Snapshots</name>
  66. <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
  67. <snapshots>
  68. <enabled>true</enabled>
  69. </snapshots>
  70. </repository>
  71. </repositories>
  72.  
  73. <dependencies>
  74. <dependency>
  75. <groupId>junit</groupId>
  76. <artifactId>junit</artifactId>
  77. <version>3.8.1</version>
  78. <scope>test</scope>
  79. </dependency>
  80. <dependency>
  81. <groupId>net.sourceforge</groupId>
  82. <artifactId>jwbf</artifactId>
  83. <version>4.0.0-SNAPSHOT</version>
  84. </dependency>
  85. </dependencies>
  86. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement