Guest User

Untitled

a guest
Apr 20th, 2025
7
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.93 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. <parent>
  7. <groupId>org.chommsi</groupId>
  8. <artifactId>HypixelSkybot</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. </parent>
  11.  
  12. <artifactId>DiscordBot</artifactId>
  13.  
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <kotlin.code.style>official</kotlin.code.style>
  17. <kotlin.compiler.jvmTarget>1.8</kotlin.compiler.jvmTarget>
  18. </properties>
  19.  
  20. <repositories>
  21. <repository>
  22. <id>mavenCentral</id>
  23. <url>https://repo1.maven.org/maven2/</url>
  24. </repository>
  25. </repositories>
  26.  
  27. <build>
  28. <sourceDirectory>src/main/kotlin</sourceDirectory>
  29. <testSourceDirectory>src/test/kotlin</testSourceDirectory>
  30. <plugins>
  31. <plugin>
  32. <groupId>org.jetbrains.kotlin</groupId>
  33. <artifactId>kotlin-maven-plugin</artifactId>
  34. <executions>
  35. <execution>
  36. <id>compile</id>
  37. <phase>compile</phase>
  38. <goals>
  39. <goal>compile</goal>
  40. </goals>
  41. </execution>
  42. <execution>
  43. <id>test-compile</id>
  44. <phase>test-compile</phase>
  45. <goals>
  46. <goal>test-compile</goal>
  47. </goals>
  48. </execution>
  49. </executions>
  50. </plugin>
  51. <plugin>
  52. <artifactId>maven-surefire-plugin</artifactId>
  53. </plugin>
  54. <plugin>
  55. <artifactId>maven-failsafe-plugin</artifactId>
  56. </plugin>
  57. <plugin>
  58. <groupId>org.codehaus.mojo</groupId>
  59. <artifactId>exec-maven-plugin</artifactId>
  60. <configuration>
  61. <mainClass>MainKt</mainClass>
  62. </configuration>
  63. </plugin>
  64. </plugins>
  65. </build>
  66.  
  67. <dependencies>
  68. <dependency>
  69. <groupId>org.jetbrains.kotlin</groupId>
  70. <artifactId>kotlin-test-junit5</artifactId>
  71. <version>2.1.10</version>
  72. <scope>test</scope>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.junit.jupiter</groupId>
  76. <artifactId>junit-jupiter</artifactId>
  77. <version>5.10.0</version>
  78. <scope>test</scope>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.jetbrains.kotlin</groupId>
  82. <artifactId>kotlin-stdlib</artifactId>
  83. <version>2.1.10</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>dev.kord</groupId>
  87. <artifactId>kord-common-jvm</artifactId>
  88. <version>0.15.0</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>dev.kord</groupId>
  92. <artifactId>kord-core-jvm</artifactId>
  93. <version>0.15.0</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>dev.kord</groupId>
  97. <artifactId>kord-rest-jvm</artifactId>
  98. <version>0.15.0</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>dev.kord</groupId>
  102. <artifactId>kord-gateway-jvm</artifactId>
  103. <version>0.15.0</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.chommsi</groupId>
  107. <artifactId>Service</artifactId>
  108. <version>1.0-SNAPSHOT</version>
  109. <scope>compile</scope>
  110. </dependency>
  111. </dependencies>
  112.  
  113. </project>
Add Comment
Please, Sign In to add comment