pom.xml 3.1 KB

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