pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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.4.1</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>11</java.version>
  18. <kotlin.version>1.4.21</kotlin.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter</artifactId>
  24. <exclusions>
  25. <exclusion>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-logging</artifactId>
  28. </exclusion>
  29. </exclusions>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-actuator</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-log4j2</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.apache.logging.log4j</groupId>
  41. <artifactId>log4j-web</artifactId>
  42. <version>2.13.3</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-websocket</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.fasterxml.jackson.module</groupId>
  50. <artifactId>jackson-module-kotlin</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.jetbrains.kotlin</groupId>
  54. <artifactId>kotlin-reflect</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.jetbrains.kotlin</groupId>
  58. <artifactId>kotlin-stdlib-jdk8</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.jetbrains.kotlinx</groupId>
  62. <artifactId>kotlinx-coroutines-core</artifactId>
  63. <version>1.3.2</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.ini4j</groupId>
  67. <artifactId>ini4j</artifactId>
  68. <version>0.5.4</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>commons-io</groupId>
  72. <artifactId>commons-io</artifactId>
  73. <version>2.6</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.apache.commons</groupId>
  77. <artifactId>commons-lang3</artifactId>
  78. <version>3.12.0</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.springframework.boot</groupId>
  82. <artifactId>spring-boot-starter-test</artifactId>
  83. <scope>test</scope>
  84. <exclusions>
  85. <exclusion>
  86. <groupId>org.junit.vintage</groupId>
  87. <artifactId>junit-vintage-engine</artifactId>
  88. </exclusion>
  89. </exclusions>
  90. </dependency>
  91. </dependencies>
  92. <build>
  93. <sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory>
  94. <testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory>
  95. <plugins>
  96. <plugin>
  97. <groupId>org.springframework.boot</groupId>
  98. <artifactId>spring-boot-maven-plugin</artifactId>
  99. </plugin>
  100. <plugin>
  101. <groupId>org.jetbrains.kotlin</groupId>
  102. <artifactId>kotlin-maven-plugin</artifactId>
  103. <configuration>
  104. <args>
  105. <arg>-Xjsr305=strict</arg>
  106. </args>
  107. <compilerPlugins>
  108. <plugin>spring</plugin>
  109. </compilerPlugins>
  110. </configuration>
  111. <dependencies>
  112. <dependency>
  113. <groupId>org.jetbrains.kotlin</groupId>
  114. <artifactId>kotlin-maven-allopen</artifactId>
  115. <version>${kotlin.version}</version>
  116. </dependency>
  117. </dependencies>
  118. </plugin>
  119. </plugins>
  120. </build>
  121. </project>