pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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.1.4</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.example</groupId>
  12. <artifactId>ALB</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>ALB</name>
  15. <description>Aplikasi List Bug</description>
  16. <properties>
  17. <java.version>17</java.version>
  18. <kotlin.version>1.8.22</kotlin.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-data-jpa</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-security</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-validation</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-web</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.fasterxml.jackson.module</groupId>
  43. <artifactId>jackson-module-kotlin</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.jetbrains.kotlin</groupId>
  47. <artifactId>kotlin-reflect</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.jetbrains.kotlin</groupId>
  51. <artifactId>kotlin-stdlib</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.thymeleaf.extras</groupId>
  55. <artifactId>thymeleaf-extras-springsecurity6</artifactId>
  56. </dependency>
  57. <!-- <dependency>-->
  58. <!-- <groupId>org.hibernate</groupId>-->
  59. <!-- <artifactId>hibernate-validator</artifactId>-->
  60. <!-- <version>6.0.10.Final</version>-->
  61. <!-- </dependency>-->
  62. <dependency>
  63. <groupId>com.mysql</groupId>
  64. <artifactId>mysql-connector-j</artifactId>
  65. <scope>runtime</scope>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-starter-test</artifactId>
  70. <scope>test</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework.security</groupId>
  74. <artifactId>spring-security-test</artifactId>
  75. <scope>test</scope>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.hibernate.orm</groupId>
  79. <artifactId>hibernate-core</artifactId>
  80. <version>6.2.9.Final</version>
  81. </dependency>
  82. </dependencies>
  83. <build>
  84. <sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory>
  85. <testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory>
  86. <plugins>
  87. <plugin>
  88. <groupId>org.springframework.boot</groupId>
  89. <artifactId>spring-boot-maven-plugin</artifactId>
  90. </plugin>
  91. <plugin>
  92. <groupId>org.jetbrains.kotlin</groupId>
  93. <artifactId>kotlin-maven-plugin</artifactId>
  94. <configuration>
  95. <args>
  96. <arg>-Xjsr305=strict</arg>
  97. </args>
  98. <compilerPlugins>
  99. <plugin>spring</plugin>
  100. <plugin>jpa</plugin>
  101. </compilerPlugins>
  102. </configuration>
  103. <dependencies>
  104. <dependency>
  105. <groupId>org.jetbrains.kotlin</groupId>
  106. <artifactId>kotlin-maven-allopen</artifactId>
  107. <version>${kotlin.version}</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.jetbrains.kotlin</groupId>
  111. <artifactId>kotlin-maven-noarg</artifactId>
  112. <version>${kotlin.version}</version>
  113. </dependency>
  114. </dependencies>
  115. </plugin>
  116. </plugins>
  117. </build>
  118. </project>