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.

68 lines
1.9 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-iconsole</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. <repositories>
  18. <repository>
  19. <id>jitpack</id>
  20. <url>https://jitpack.io</url>
  21. </repository>
  22. </repositories>
  23. <dependencies>
  24. <dependency>
  25. <groupId>net.aiterp.git.trimlog</groupId>
  26. <artifactId>ykonsole-core</artifactId>
  27. <version>${project.version}</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.github.weliem.blessed-bluez</groupId>
  31. <artifactId>blessed</artifactId>
  32. <version>0.40</version>
  33. </dependency>
  34. </dependencies>
  35. <build>
  36. <plugins>
  37. <plugin>
  38. <groupId>org.jetbrains.kotlin</groupId>
  39. <artifactId>kotlin-maven-plugin</artifactId>
  40. <version>${kotlin.version}</version>
  41. <executions>
  42. <execution>
  43. <id>compile</id>
  44. <phase>compile</phase>
  45. <goals>
  46. <goal>compile</goal>
  47. </goals>
  48. </execution>
  49. <execution>
  50. <id>test-compile</id>
  51. <phase>test-compile</phase>
  52. <goals>
  53. <goal>test-compile</goal>
  54. </goals>
  55. </execution>
  56. </executions>
  57. <configuration>
  58. <jvmTarget>${maven.compiler.target}</jvmTarget>
  59. </configuration>
  60. </plugin>
  61. </plugins>
  62. </build>
  63. </project>