Advertisement
Guest User

Untitled

a guest
Sep 19th, 2014
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.12 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>com.guildvnv</groupId>
  4. <artifactId>VnVGuildData</artifactId>
  5. <version>0.0.2</version>
  6. <name>VnVGuildData</name>
  7. <build>
  8. <plugins>
  9. <plugin>
  10. <artifactId>maven-assembly-plugin</artifactId>
  11. <configuration>
  12. <archive>
  13. <manifest>
  14. <mainClass>VnVGUildData.src.main.java.Interface</mainClass>
  15. </manifest>
  16. </archive>
  17. <descriptorRefs>
  18. <descriptorRef>jar-with-dependencies</descriptorRef>
  19. </descriptorRefs>
  20. </configuration>
  21. </plugin>
  22. <plugin>
  23. <groupId>org.apache.maven.plugins</groupId>
  24. <artifactId>maven-jar-plugin</artifactId>
  25. <configuration>
  26. <archive>
  27. <manifest>
  28. <addClasspath>true</addClasspath>
  29. <mainClass>com.gorkwobble.logmanager.LogManager</mainClass>
  30. </manifest>
  31. </archive>
  32. </configuration>
  33. </plugin>
  34. </plugins>
  35. </build>
  36. <dependencies>
  37. <dependency>
  38. <groupId>org.swinglabs.swingx</groupId>
  39. <artifactId>swingx-autocomplete</artifactId>
  40. <version>1.6.5-1</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.miglayout</groupId>
  44. <artifactId>miglayout</artifactId>
  45. <version>3.7.4</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.google.api-client</groupId>
  49. <artifactId>google-api-client</artifactId>
  50. <version>1.18.0-rc</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.google.gdata</groupId>
  54. <artifactId>core</artifactId>
  55. <version>1.47.1</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.google.http-client</groupId>
  59. <artifactId>google-http-client-jackson2</artifactId>
  60. <version>1.18.0-rc</version>
  61. </dependency>
  62. </dependencies>
  63. <properties>
  64. <maven.compiler.source>1.7</maven.compiler.source>
  65. <maven.compiler.target>1.7</maven.compiler.target>
  66. </properties>
  67. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement