Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.92 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>eu.gebes</groupId>
  8. <artifactId>WashbowlBot</artifactId>
  9. <version>1.0</version>
  10.  
  11. <dependencies>
  12. <dependency>
  13. <groupId>org.projectlombok</groupId>
  14. <artifactId>lombok</artifactId>
  15. <version>LATEST</version>
  16. <scope>provided</scope>
  17. </dependency>
  18. <dependency>
  19. <groupId>net.minecrell</groupId>
  20. <artifactId>terminalconsoleappender</artifactId>
  21. <version>LATEST</version>
  22. <scope>compile</scope>
  23. </dependency>
  24. <!--log4j2 dependencies -->
  25. <dependency>
  26. <groupId>org.apache.logging.log4j</groupId>
  27. <artifactId>log4j-api</artifactId>
  28. <version>LATEST</version>
  29. <scope>compile</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.apache.logging.log4j</groupId>
  33. <artifactId>log4j-core</artifactId>
  34. <version>LATEST</version>
  35. <scope>compile</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.apache.logging.log4j</groupId>
  39. <artifactId>log4j-1.2-api</artifactId>
  40. <version>LATEST</version>
  41. <scope>compile</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.apache.logging.log4j</groupId>
  45. <artifactId>log4j-slf4j-impl</artifactId>
  46. <version>LATEST</version>
  47. <scope>compile</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.apache.logging.log4j</groupId>
  51. <artifactId>log4j-jcl</artifactId>
  52. <version>LATEST</version>
  53. <scope>compile</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.lmax</groupId>
  57. <artifactId>disruptor</artifactId>
  58. <version>LATEST</version>
  59. <scope>compile</scope>
  60. </dependency>
  61. <!-- https://mvnrepository.com/artifact/org.jline/jline -->
  62. <dependency>
  63. <groupId>jline</groupId>
  64. <artifactId>jline</artifactId>
  65. <version>LATEST</version>
  66. <scope>compile</scope>
  67. </dependency>
  68. </dependencies>
  69. <build>
  70. <plugins>
  71. <plugin>
  72. <groupId>org.apache.maven.plugins</groupId>
  73. <artifactId>maven-compiler-plugin</artifactId>
  74. <version>3.7.0</version>
  75. <configuration>
  76. <source>1.8</source>
  77. <target>1.8</target>
  78. </configuration>
  79. </plugin>
  80. </plugins>
  81. </build>
  82.  
  83. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement