pom.xml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.3.3.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>co.id.datacomsolusindo</groupId>
  12. <artifactId>ipphone-bridge</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>ipphone-bridge</name>
  15. <description>Demo project for Spring Boot</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. <kotlin.version>1.3.72</kotlin.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-web</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-websocket</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.fasterxml.jackson.module</groupId>
  31. <artifactId>jackson-module-kotlin</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.jetbrains.kotlin</groupId>
  35. <artifactId>kotlin-reflect</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.jetbrains.kotlin</groupId>
  39. <artifactId>kotlin-stdlib-jdk8</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.ini4j</groupId>
  43. <artifactId>ini4j</artifactId>
  44. <version>0.5.4</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>commons-io</groupId>
  48. <artifactId>commons-io</artifactId>
  49. <version>2.6</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-test</artifactId>
  54. <scope>test</scope>
  55. <exclusions>
  56. <exclusion>
  57. <groupId>org.junit.vintage</groupId>
  58. <artifactId>junit-vintage-engine</artifactId>
  59. </exclusion>
  60. </exclusions>
  61. </dependency>
  62. </dependencies>
  63. <build>
  64. <sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory>
  65. <testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory>
  66. <plugins>
  67. <plugin>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-maven-plugin</artifactId>
  70. </plugin>
  71. <plugin>
  72. <groupId>org.jetbrains.kotlin</groupId>
  73. <artifactId>kotlin-maven-plugin</artifactId>
  74. <configuration>
  75. <args>
  76. <arg>-Xjsr305=strict</arg>
  77. </args>
  78. <compilerPlugins>
  79. <plugin>spring</plugin>
  80. </compilerPlugins>
  81. </configuration>
  82. <dependencies>
  83. <dependency>
  84. <groupId>org.jetbrains.kotlin</groupId>
  85. <artifactId>kotlin-maven-allopen</artifactId>
  86. <version>${kotlin.version}</version>
  87. </dependency>
  88. </dependencies>
  89. </plugin>
  90. </plugins>
  91. </build>
  92. </project>