pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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>3.3.4</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.datacomsolusindo</groupId>
  12. <artifactId>cpx-processor</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>cpx-processor</name>
  15. <description>Cpx Data Processor</description>
  16. <url/>
  17. <licenses>
  18. <license/>
  19. </licenses>
  20. <developers>
  21. <developer/>
  22. </developers>
  23. <scm>
  24. <connection/>
  25. <developerConnection/>
  26. <tag/>
  27. <url/>
  28. </scm>
  29. <properties>
  30. <java.version>21</java.version>
  31. <kotlin.version>1.9.25</kotlin.version>
  32. </properties>
  33. <dependencies>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-actuator</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-data-jpa</artifactId>
  41. </dependency>
  42. <!-- <dependency>-->
  43. <!-- <groupId>org.springframework.boot</groupId>-->
  44. <!-- <artifactId>spring-boot-starter-web</artifactId>-->
  45. <!-- </dependency>-->
  46. <dependency>
  47. <groupId>com.fasterxml.jackson.module</groupId>
  48. <artifactId>jackson-module-kotlin</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.jetbrains.kotlin</groupId>
  52. <artifactId>kotlin-reflect</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.jetbrains.kotlin</groupId>
  56. <artifactId>kotlin-stdlib</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.datacomsolusindo</groupId>
  60. <artifactId>cpx-shared-code</artifactId>
  61. <version>0.0.1-SNAPSHOT</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.microsoft.sqlserver</groupId>
  65. <artifactId>mssql-jdbc</artifactId>
  66. <scope>runtime</scope>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.apache.mina</groupId>
  70. <artifactId>mina-core</artifactId>
  71. <version>2.2.3</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-starter-test</artifactId>
  76. <scope>test</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.jetbrains.kotlin</groupId>
  80. <artifactId>kotlin-test-junit5</artifactId>
  81. <scope>test</scope>
  82. </dependency>
  83. </dependencies>
  84. <build>
  85. <sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory>
  86. <testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory>
  87. <plugins>
  88. <plugin>
  89. <groupId>org.springframework.boot</groupId>
  90. <artifactId>spring-boot-maven-plugin</artifactId>
  91. </plugin>
  92. <plugin>
  93. <groupId>org.jetbrains.kotlin</groupId>
  94. <artifactId>kotlin-maven-plugin</artifactId>
  95. <configuration>
  96. <args>
  97. <arg>-Xjsr305=strict</arg>
  98. </args>
  99. <compilerPlugins>
  100. <plugin>spring</plugin>
  101. <plugin>jpa</plugin>
  102. </compilerPlugins>
  103. <pluginOptions>
  104. <option>all-open:annotation=jakarta.persistence.Entity</option>
  105. <option>all-open:annotation=jakarta.persistence.MappedSuperclass</option>
  106. <option>all-open:annotation=jakarta.persistence.Embeddable</option>
  107. </pluginOptions>
  108. </configuration>
  109. <dependencies>
  110. <dependency>
  111. <groupId>org.jetbrains.kotlin</groupId>
  112. <artifactId>kotlin-maven-allopen</artifactId>
  113. <version>${kotlin.version}</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.jetbrains.kotlin</groupId>
  117. <artifactId>kotlin-maven-noarg</artifactId>
  118. <version>${kotlin.version}</version>
  119. </dependency>
  120. </dependencies>
  121. </plugin>
  122. </plugins>
  123. </build>
  124. </project>