Advertisement
Guest User

Untitled

a guest
Aug 12th, 2014
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.37 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>me.timlampen.lcc</groupId>
  4. <artifactId>LCC</artifactId>
  5. <version>0.0.1-SNAPSHOT</version>
  6. <build>
  7. <plugins>
  8. <plugin>
  9. <groupId>org.apache.maven.plugins</groupId>
  10. <artifactId>maven-compiler-plugin</artifactId>
  11. <version>2.1</version>
  12. <executions>
  13. <execution>
  14. <phase>package</phase>
  15. <goals>
  16. <goal>shade</goal>
  17. </goals>
  18. <configuration>
  19. <source>1.7</source>
  20. <target>1.7</target>
  21. <createDependencyReducedPom>false</createDependencyReducedPom>
  22. <minimizeJar>true</minimizeJar>
  23. <artifactSet>
  24. <includes>
  25. <include>mkremins:fanciful</include>
  26. <include>org.json:json</include>
  27. </includes>
  28. </artifactSet>
  29. </configuration>
  30. </execution>
  31. </executions>
  32. </plugin>
  33. </plugins>
  34. </build>
  35. <repositories>
  36. <repository>
  37. <id>bukkit-repo</id>
  38. <url>http://repo.bukkit.org/content/groups/public/</url>
  39. </repository>
  40. <repository>
  41. <id>vault-repo</id>
  42. <url>http://nexus.theyeticave.net/content/repositories/pub_releases</url>
  43. </repository>
  44. <repository>
  45. <id>fanciful-mvn-repo</id>
  46. <url>https://raw.github.com/mkremins/fanciful/mvn-repo/</url>
  47. </repository>
  48. </repositories>
  49. <dependencies>
  50. <dependency>
  51. <groupId>org.bukkit</groupId>
  52. <artifactId>bukkit</artifactId>
  53. <version>1.7.9-R0.2</version>
  54. <type>jar</type>
  55. <scope>provided</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>net.milkbowl.vault</groupId>
  59. <artifactId>VaultAPI</artifactId>
  60. <version>1.4</version>
  61. <scope>provided</scope>
  62. </dependency>
  63. <dependency>
  64. <groupId>mkremins</groupId>
  65. <artifactId>fanciful</artifactId>
  66. <version>0.1.5</version>
  67. </dependency>
  68. </dependencies>
  69. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement