pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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.5.7</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>co.id.datacomsolusindo.engineservice</groupId>
  12. <artifactId>report</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>report</name>
  15. <description>Engine Service Report</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>17</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-data-jpa</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-web</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.fasterxml.jackson.module</groupId>
  44. <artifactId>jackson-module-kotlin</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.jetbrains.kotlin</groupId>
  48. <artifactId>kotlin-reflect</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.jetbrains.kotlin</groupId>
  52. <artifactId>kotlin-stdlib</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.microsoft.sqlserver</groupId>
  56. <artifactId>mssql-jdbc</artifactId>
  57. <scope>runtime</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.mysql</groupId>
  61. <artifactId>mysql-connector-j</artifactId>
  62. <scope>runtime</scope>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-starter-test</artifactId>
  67. <scope>test</scope>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.jetbrains.kotlin</groupId>
  71. <artifactId>kotlin-test-junit5</artifactId>
  72. <scope>test</scope>
  73. </dependency>
  74. <!-- https://mvnrepository.com/artifact/net.sf.jasperreports/jasperreports -->
  75. <dependency>
  76. <groupId>net.sf.jasperreports</groupId>
  77. <artifactId>jasperreports</artifactId>
  78. <version>6.21.4</version>
  79. </dependency>
  80. </dependencies>
  81. <build>
  82. <sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory>
  83. <testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory>
  84. <plugins>
  85. <plugin>
  86. <groupId>org.springframework.boot</groupId>
  87. <artifactId>spring-boot-maven-plugin</artifactId>
  88. </plugin>
  89. <plugin>
  90. <groupId>org.jetbrains.kotlin</groupId>
  91. <artifactId>kotlin-maven-plugin</artifactId>
  92. <configuration>
  93. <args>
  94. <arg>-Xjsr305=strict</arg>
  95. </args>
  96. <compilerPlugins>
  97. <plugin>spring</plugin>
  98. <plugin>jpa</plugin>
  99. <plugin>all-open</plugin>
  100. </compilerPlugins>
  101. <pluginOptions>
  102. <option>all-open:annotation=jakarta.persistence.Entity</option>
  103. <option>all-open:annotation=jakarta.persistence.MappedSuperclass</option>
  104. <option>all-open:annotation=jakarta.persistence.Embeddable</option>
  105. </pluginOptions>
  106. </configuration>
  107. <dependencies>
  108. <dependency>
  109. <groupId>org.jetbrains.kotlin</groupId>
  110. <artifactId>kotlin-maven-allopen</artifactId>
  111. <version>${kotlin.version}</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.jetbrains.kotlin</groupId>
  115. <artifactId>kotlin-maven-noarg</artifactId>
  116. <version>${kotlin.version}</version>
  117. </dependency>
  118. </dependencies>
  119. </plugin>
  120. </plugins>
  121. </build>
  122. </project>