pom.xml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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. <groupId>com.anas.discordbots.quranfm</groupId>
  7. <artifactId>QuranFM</artifactId>
  8. <version>0.0.1</version>
  9. <repositories>
  10. <repository>
  11. <id>jitpack.io</id>
  12. <url>https://jitpack.io</url>
  13. </repository>
  14. <repository>
  15. <id>dv8tion</id>
  16. <name>m2-dv8tion</name>
  17. <url>https://m2.dv8tion.net/releases</url>
  18. </repository>
  19. </repositories>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.javacord</groupId>
  23. <artifactId>javacord-core</artifactId>
  24. <version>3.8.0</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.github.anas-elgarhy</groupId>
  28. <artifactId>alquran-cloud-api</artifactId>
  29. <version>0.2.1-v1</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.sedmelluq</groupId>
  33. <artifactId>lavaplayer</artifactId>
  34. <version>1.3.78</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.fasterxml.jackson.core</groupId>
  38. <artifactId>jackson-core</artifactId>
  39. <version>2.14.1</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.fasterxml.jackson.core</groupId>
  43. <artifactId>jackson-annotations</artifactId>
  44. <version>2.14.1</version>
  45. </dependency>
  46. </dependencies>
  47. <build>
  48. <plugins>
  49. <plugin>
  50. <groupId>org.apache.maven.plugins</groupId>
  51. <artifactId>maven-dependency-plugin</artifactId>
  52. <version>2.6</version>
  53. <executions>
  54. <execution>
  55. <id>unpack-dependencies</id>
  56. <phase>package</phase>
  57. <goals>
  58. <goal>unpack-dependencies</goal>
  59. </goals>
  60. <configuration>
  61. <excludeScope>system</excludeScope>
  62. <excludes>META-INF/*.SF,META-INF/*.DSA,META-INF/*.RSA</excludes>
  63. <excludeGroupIds>junit,org.mockito,org.hamcrest</excludeGroupIds>
  64. <outputDirectory>${project.build.directory}/classes</outputDirectory>
  65. </configuration>
  66. </execution>
  67. </executions>
  68. </plugin>
  69. <plugin>
  70. <!-- Build an executable JAR -->
  71. <groupId>org.apache.maven.plugins</groupId>
  72. <artifactId>maven-jar-plugin</artifactId>
  73. <version>3.1.0</version>
  74. <configuration>
  75. <archive>
  76. <manifest>
  77. <addClasspath>true</addClasspath>
  78. <classpathPrefix>lib/</classpathPrefix>
  79. <mainClass>com.anas.discordbots.quranfm.Main</mainClass>
  80. </manifest>
  81. </archive>
  82. </configuration>
  83. </plugin>
  84. <plugin>
  85. <groupId>org.apache.maven.plugins</groupId>
  86. <artifactId>maven-compiler-plugin</artifactId>
  87. <version>3.1</version>
  88. <configuration>
  89. <source>17</source>
  90. <target>17</target>
  91. </configuration>
  92. </plugin>
  93. </plugins>
  94. </build>
  95. <properties>
  96. <maven.compiler.source>17</maven.compiler.source>
  97. <maven.compiler.target>17</maven.compiler.target>
  98. </properties>
  99. </project>