pom.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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>com.mysql</groupId>
  59. <artifactId>mysql-connector-j</artifactId>
  60. <scope>runtime</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-starter-test</artifactId>
  65. <scope>test</scope>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.springframework.security</groupId>
  69. <artifactId>spring-security-test</artifactId>
  70. <scope>test</scope>
  71. </dependency>
  72. </dependencies>
  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. </args>
  88. <compilerPlugins>
  89. <plugin>spring</plugin>
  90. <plugin>jpa</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. <dependency>
  100. <groupId>org.jetbrains.kotlin</groupId>
  101. <artifactId>kotlin-maven-noarg</artifactId>
  102. <version>${kotlin.version}</version>
  103. </dependency>
  104. </dependencies>
  105. </plugin>
  106. </plugins>
  107. </build>
  108. </project>