Advertisement
Guest User

Untitled

a guest
May 1st, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.63 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6.  
  7. <groupId>LobbySystem</groupId>
  8. <artifactId>LobbySystem</artifactId>
  9. <version>3.0.2-SNAPSHOT</version>
  10.  
  11. <build>
  12. <plugins>
  13. <plugin>
  14. <groupId>org.apache.maven.plugins</groupId>
  15. <artifactId>maven-compiler-plugin</artifactId>
  16. <configuration>
  17. <source>1.8</source>
  18. <target>1.8</target>
  19. </configuration>
  20. </plugin>
  21. <plugin>
  22. <groupId>org.apache.maven.plugins</groupId>
  23. <artifactId>maven-shade-plugin</artifactId>
  24. <version>3.2.1</version>
  25. <executions>
  26. <execution>
  27. <phase>package</phase>
  28. <goals>
  29. <goal>shade</goal>
  30. </goals>
  31. </execution>
  32. </executions>
  33. </plugin>
  34. <plugin>
  35. <groupId>org.apache.maven.plugins</groupId>
  36. <artifactId>maven-compiler-plugin</artifactId>
  37. <version>3.8.0</version>
  38. </plugin>
  39. </plugins>
  40. </build>
  41.  
  42. <repositories>
  43. <repository>
  44. <id>spigot-repo</id>
  45. <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
  46. </repository>
  47. <!--Bungeecord Repo-->
  48. <!--Only include if using the Spigot API dependency-->
  49. </repositories>
  50. <dependencies>
  51. <!--Spigot API-->
  52. <!--You only need one of the two, don't put both. Spigot is recommended.-->
  53.  
  54. <dependency>
  55. <groupId>org.spigotmc</groupId>
  56. <artifactId>spigot</artifactId>
  57. <version>1.8.8-R0.1-SNAPSHOT</version>
  58. <scope>provided</scope>
  59. </dependency>
  60.  
  61. <dependency>
  62. <groupId>com.sun.mail</groupId>
  63. <artifactId>smtp</artifactId>
  64. <version>1.4.5</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>javax.mail</groupId>
  68. <artifactId>javax.mail-api</artifactId>
  69. <version>1.6.2</version>
  70. <scope>compile</scope>
  71. </dependency>
  72.  
  73.  
  74. </dependencies>
  75.  
  76. <!-- https://mvnrepository.com/artifact/javax.mail/javax.mail-api -->
  77.  
  78.  
  79.  
  80. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement