Guest User

Untitled

a guest
May 26th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. Caused by: java.lang.ClassNotFoundException: com.sun.mail.util.MailLogger
  2.  
  3. <build>
  4. <plugins>
  5. <plugin>
  6. <groupId>org.apache.maven.plugins</groupId>
  7. <artifactId>maven-compiler-plugin</artifactId>
  8. <configuration>
  9. <source>1.8</source>
  10. <target>1.8</target>
  11. </configuration>
  12. </plugin>
  13. </plugins>
  14. </build>
  15.  
  16. <repositories>
  17. <repository>
  18. <id>spigot-repo</id>
  19. <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
  20. </repository>
  21. </repositories>
  22.  
  23. <dependencies>
  24. <!--Spigot API-->
  25. <dependency>
  26. <groupId>org.spigotmc</groupId>
  27. <artifactId>spigot-api</artifactId>
  28. <version>1.12.2-R0.1-SNAPSHOT</version>
  29. <scope>provided</scope>
  30. </dependency>
  31. <!--Bukkit API-->
  32. <dependency>
  33. <groupId>org.bukkit</groupId>
  34. <artifactId>bukkit</artifactId>
  35. <version>1.12.2-R0.1-SNAPSHOT</version>
  36. <scope>provided</scope>
  37. </dependency>
  38. <!--Activation-->
  39. <dependency>
  40. <groupId>jaf</groupId>
  41. <artifactId>activation</artifactId>
  42. <version>1.0.2</version>
  43. </dependency>
  44. <!--Java Mail-->
  45. <dependency>
  46. <groupId>javax.mail</groupId>
  47. <artifactId>javax.mail-api</artifactId>
  48. <version>1.6.0</version>
  49. </dependency>
  50. <!--Google Authentication-->
  51. <dependency>
  52. <groupId>com.warrenstrange</groupId>
  53. <artifactId>googleauth</artifactId>
  54. <version>1.1.2</version>
  55. </dependency>
  56. </dependencies>
Add Comment
Please, Sign In to add comment