pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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.5</version>-->
  9. <version>3.5.14</version>
  10. <relativePath/> <!-- lookup parent from repository -->
  11. </parent>
  12. <groupId>com.datacomsolusindo</groupId>
  13. <artifactId>migration</artifactId>
  14. <version>0.0.1-SNAPSHOT</version>
  15. <name>migration</name>
  16. <description>Migration service data call partner to call master</description>
  17. <url/>
  18. <licenses>
  19. <license/>
  20. </licenses>
  21. <developers>
  22. <developer/>
  23. </developers>
  24. <scm>
  25. <connection/>
  26. <developerConnection/>
  27. <tag/>
  28. <url/>
  29. </scm>
  30. <properties>
  31. <java.version>21</java.version>
  32. <kotlin.version>2.0.0</kotlin.version>
  33. </properties>
  34. <dependencies>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.jetbrains.kotlin</groupId>
  41. <artifactId>kotlin-reflect</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.jetbrains.kotlin</groupId>
  45. <artifactId>kotlin-stdlib</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.microsoft.sqlserver</groupId>
  49. <artifactId>mssql-jdbc</artifactId>
  50. <scope>runtime</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-test</artifactId>
  55. <scope>test</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.jetbrains.kotlin</groupId>
  59. <artifactId>kotlin-test-junit5</artifactId>
  60. <scope>test</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.datacomsolusindo</groupId>
  64. <artifactId>cpx-shared-code</artifactId>
  65. <version>0.0.1-SNAPSHOT</version>
  66. </dependency>
  67. </dependencies>
  68. <repositories>
  69. <repository>
  70. <id>shibboleth-releases</id>
  71. <url>https://build.shibboleth.net/nexus/content/repositories/releases/</url>
  72. </repository>
  73. </repositories>
  74. <build>
  75. <sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory>
  76. <testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory>
  77. <plugins>
  78. <plugin>
  79. <groupId>org.springframework.boot</groupId>
  80. <artifactId>spring-boot-maven-plugin</artifactId>
  81. </plugin>
  82. <plugin>
  83. <groupId>org.jetbrains.kotlin</groupId>
  84. <artifactId>kotlin-maven-plugin</artifactId>
  85. <configuration>
  86. <args>
  87. <arg>-Xjsr305=strict</arg>
  88. <arg>-Xannotation-default-target=param-property</arg>
  89. </args>
  90. <compilerPlugins>
  91. <plugin>spring</plugin>
  92. </compilerPlugins>
  93. </configuration>
  94. <dependencies>
  95. <dependency>
  96. <groupId>org.jetbrains.kotlin</groupId>
  97. <artifactId>kotlin-maven-allopen</artifactId>
  98. <version>${kotlin.version}</version>
  99. </dependency>
  100. </dependencies>
  101. </plugin>
  102. </plugins>
  103. </build>
  104. </project>