Advertisement
Guest User

Untitled

a guest
Aug 12th, 2014
339
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.80 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. <artifactId>maven-eclipse-plugin</artifactId>
  10. <version>2.9</version>
  11. <configuration>
  12. <additionalProjectnatures>
  13. <projectnature>org.eclipse.m2e.core.maven2Nature</projectnature>
  14. </additionalProjectnatures>
  15. <buildcommands>
  16. <buildcommand>org.eclipse.jdt.core.javabuilder</buildcommand>
  17. <buildcommand>org.eclipse.m2e.core.maven2Builder</buildcommand>
  18. </buildcommands>
  19. <useProjectReferences>false</useProjectReferences>
  20. </configuration>
  21. </plugin>
  22. <plugin>
  23. <groupId>org.apache.maven.plugins</groupId>
  24. <artifactId>maven-compiler-plugin</artifactId>
  25. <version>2.3.2</version>
  26. <configuration>
  27. <source>1.7</source>
  28. <target>1.7</target>
  29. </configuration>
  30. </plugin>
  31. <plugin>
  32. <groupId>org.apache.maven.plugins</groupId>
  33. <artifactId>maven-shade-plugin</artifactId>
  34. <version>1.5</version>
  35. <executions>
  36. <execution>
  37. <phase>package</phase>
  38. <goals>
  39. <goal>shade</goal>
  40. </goals>
  41. <configuration>
  42. <minimizeJar>true</minimizeJar>
  43. <relocations>
  44. <relocation>
  45. <pattern>mkremins.fanciful</pattern>
  46. <shadedPattern>me.timlampen.lcc.mkremins.fanciful</shadedPattern>
  47. </relocation>
  48. </relocations>
  49. </configuration>
  50. </execution>
  51. </executions>
  52. </plugin>
  53. </plugins>
  54. </build>
  55. <repositories>
  56. <repository>
  57. <id>bukkit-repo</id>
  58. <url>http://repo.bukkit.org/content/groups/public/</url>
  59. </repository>
  60. <repository>
  61. <id>vault-repo</id>
  62. <url>http://nexus.theyeticave.net/content/repositories/pub_releases</url>
  63. </repository>
  64. <repository>
  65. <id>fanciful-mvn-repo</id>
  66. <url>https://raw.github.com/mkremins/fanciful/mvn-repo/</url>
  67. </repository>
  68. <repository>
  69. <id>fanciful-mvn-repo</id>
  70. <url>https://raw.github.com/mkremins/fanciful/mvn-repo/</url>
  71. <snapshots>
  72. <enabled>true</enabled>
  73. <updatePolicy>always</updatePolicy>
  74. </snapshots>
  75. </repository>
  76. </repositories>
  77. <dependencies>
  78. <dependency>
  79. <groupId>org.bukkit</groupId>
  80. <artifactId>bukkit</artifactId>
  81. <version>1.7.9-R0.2</version>
  82. <type>jar</type>
  83. <scope>provided</scope>
  84. </dependency>
  85. <dependency>
  86. <groupId>net.milkbowl.vault</groupId>
  87. <artifactId>VaultAPI</artifactId>
  88. <version>1.4</version>
  89. <scope>provided</scope>
  90. </dependency>
  91. <dependency>
  92. <groupId>mkremins</groupId>
  93. <artifactId>fanciful</artifactId>
  94. <version>0.1.5</version>
  95. <scope>compile</scope>
  96. </dependency>
  97. </dependencies>
  98. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement