You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

127 lines
4.3 KiB

2 years ago
2 years ago
2 years ago
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  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. <artifactId>ykonsole</artifactId>
  7. <modules>
  8. <module>ykonsole-core</module>
  9. <module>ykonsole-iconsole</module>
  10. <module>ykonsole-mysql</module>
  11. <module>ykonsole-server</module>
  12. <module>ykonsole-ktor</module>
  13. <module>ykonsole-exporter</module>
  14. </modules>
  15. <groupId>net.aiterp.git.trimlog</groupId>
  16. <version>2.0.0</version>
  17. <packaging>pom</packaging>
  18. <name>ykonsole</name>
  19. <properties>
  20. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  21. <kotlin.code.style>official</kotlin.code.style>
  22. <kotlin.compiler.jvmTarget>11</kotlin.compiler.jvmTarget>
  23. <kotlin.version>1.7.10</kotlin.version>
  24. </properties>
  25. <repositories>
  26. <repository>
  27. <id>mavenCentral</id>
  28. <url>https://repo1.maven.org/maven2/</url>
  29. </repository>
  30. </repositories>
  31. <dependencies>
  32. <!-- Kotlin -->
  33. <dependency>
  34. <groupId>org.jetbrains.kotlin</groupId>
  35. <artifactId>kotlin-stdlib-jdk8</artifactId>
  36. <version>1.7.10</version>
  37. </dependency>
  38. <!-- Logging -->
  39. <dependency>
  40. <groupId>org.slf4j</groupId>
  41. <artifactId>slf4j-api</artifactId>
  42. <version>1.7.36</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.apache.logging.log4j</groupId>
  46. <artifactId>log4j-slf4j-impl</artifactId>
  47. <version>2.18.0</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.apache.logging.log4j</groupId>
  51. <artifactId>log4j-api</artifactId>
  52. <version>2.18.0</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.apache.logging.log4j</groupId>
  56. <artifactId>log4j-core</artifactId>
  57. <version>2.18.0</version>
  58. </dependency>
  59. <!-- Testing -->
  60. <dependency>
  61. <groupId>org.jetbrains.kotlin</groupId>
  62. <artifactId>kotlin-test-junit5</artifactId>
  63. <version>1.7.0</version>
  64. <scope>test</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.junit.jupiter</groupId>
  68. <artifactId>junit-jupiter-engine</artifactId>
  69. <version>5.6.0</version>
  70. <scope>test</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>io.mockk</groupId>
  74. <artifactId>mockk</artifactId>
  75. <version>1.12.4</version>
  76. <scope>test</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.jetbrains.kotlinx</groupId>
  80. <artifactId>kotlinx-coroutines-test-jvm</artifactId>
  81. <version>1.6.4</version>
  82. <scope>test</scope>
  83. </dependency>
  84. </dependencies>
  85. <build>
  86. <sourceDirectory>src/main/kotlin</sourceDirectory>
  87. <testSourceDirectory>src/test/kotlin</testSourceDirectory>
  88. <plugins>
  89. <plugin>
  90. <groupId>org.jetbrains.kotlin</groupId>
  91. <artifactId>kotlin-maven-plugin</artifactId>
  92. <version>1.7.10</version>
  93. <executions>
  94. <execution>
  95. <id>compile</id>
  96. <phase>compile</phase>
  97. <goals>
  98. <goal>compile</goal>
  99. </goals>
  100. </execution>
  101. <execution>
  102. <id>test-compile</id>
  103. <phase>test-compile</phase>
  104. <goals>
  105. <goal>test-compile</goal>
  106. </goals>
  107. </execution>
  108. </executions>
  109. </plugin>
  110. <plugin>
  111. <artifactId>maven-surefire-plugin</artifactId>
  112. <version>2.22.2</version>
  113. </plugin>
  114. <plugin>
  115. <artifactId>maven-failsafe-plugin</artifactId>
  116. <version>2.22.2</version>
  117. </plugin>
  118. </plugins>
  119. </build>
  120. </project>