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.

71 lines
2.3 KiB

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-ktor</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. <ktor.version>2.0.3</ktor.version>
  17. </properties>
  18. <dependencies>
  19. <!-- YKonsole -->
  20. <dependency>
  21. <groupId>net.aiterp.git.trimlog</groupId>
  22. <artifactId>ykonsole-core</artifactId>
  23. <version>${project.version}</version>
  24. </dependency>
  25. <!-- ktor -->
  26. <dependency>
  27. <groupId>io.ktor</groupId>
  28. <artifactId>ktor-server-core-jvm</artifactId>
  29. <version>${ktor.version}</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>io.ktor</groupId>
  33. <artifactId>ktor-server-netty-jvm</artifactId>
  34. <version>${ktor.version}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>io.ktor</groupId>
  38. <artifactId>ktor-server-websockets-jvm</artifactId>
  39. <version>${ktor.version}</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>io.ktor</groupId>
  43. <artifactId>ktor-server-content-negotiation-jvm</artifactId>
  44. <version>${ktor.version}</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>io.ktor</groupId>
  48. <artifactId>ktor-serialization-jackson-jvm</artifactId>
  49. <version>${ktor.version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.fasterxml.jackson.datatype</groupId>
  53. <artifactId>jackson-datatype-jsr310</artifactId>
  54. <version>2.13.3</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>io.ktor</groupId>
  58. <artifactId>ktor-server-status-pages-jvm</artifactId>
  59. <version>${ktor.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.jetbrains.kotlin</groupId>
  63. <artifactId>kotlin-test-junit</artifactId>
  64. <version>1.7.10</version>
  65. <scope>test</scope>
  66. </dependency>
  67. </dependencies>
  68. </project>