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.

63 lines
1.9 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  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. <parent>
  6. <artifactId>ykonsole</artifactId>
  7. <groupId>net.aiterp.git.trimlog</groupId>
  8. <version>2.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>ykonsole-core</artifactId>
  12. <properties>
  13. <maven.compiler.source>11</maven.compiler.source>
  14. <maven.compiler.target>11</maven.compiler.target>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.jetbrains.kotlinx</groupId>
  20. <artifactId>kotlinx-coroutines-core-jvm</artifactId>
  21. <version>1.6.4</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.jetbrains.kotlinx</groupId>
  25. <artifactId>kotlinx-coroutines-jdk8</artifactId>
  26. <version>1.6.4</version>
  27. </dependency>
  28. </dependencies>
  29. <build>
  30. <sourceDirectory>src/main/kotlin</sourceDirectory>
  31. <testSourceDirectory>src/test/kotlin</testSourceDirectory>
  32. <plugins>
  33. <plugin>
  34. <groupId>org.jetbrains.kotlin</groupId>
  35. <artifactId>kotlin-maven-plugin</artifactId>
  36. <version>${kotlin.version}</version>
  37. <executions>
  38. <execution>
  39. <id>compile</id>
  40. <phase>compile</phase>
  41. <goals>
  42. <goal>compile</goal>
  43. </goals>
  44. </execution>
  45. <execution>
  46. <id>test-compile</id>
  47. <phase>test-compile</phase>
  48. <goals>
  49. <goal>test-compile</goal>
  50. </goals>
  51. </execution>
  52. </executions>
  53. <configuration>
  54. <jvmTarget>${maven.compiler.target}</jvmTarget>
  55. </configuration>
  56. </plugin>
  57. </plugins>
  58. </build>
  59. </project>