| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 | 
							- <?xml version="1.0" encoding="UTF-8"?>
 
- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 
- 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
 
- 	<modelVersion>4.0.0</modelVersion>
 
- 	<parent>
 
- 		<groupId>org.springframework.boot</groupId>
 
- 		<artifactId>spring-boot-starter-parent</artifactId>
 
- 		<version>3.5.7</version>
 
- 		<relativePath/> <!-- lookup parent from repository -->
 
- 	</parent>
 
- 	<groupId>co.id.datacomsolusindo.engineservice</groupId>
 
- 	<artifactId>report</artifactId>
 
- 	<version>0.0.1-SNAPSHOT</version>
 
- 	<name>report</name>
 
- 	<description>Engine Service Report</description>
 
- 	<url/>
 
- 	<licenses>
 
- 		<license/>
 
- 	</licenses>
 
- 	<developers>
 
- 		<developer/>
 
- 	</developers>
 
- 	<scm>
 
- 		<connection/>
 
- 		<developerConnection/>
 
- 		<tag/>
 
- 		<url/>
 
- 	</scm>
 
- 	<properties>
 
- 		<java.version>17</java.version>
 
- 		<kotlin.version>1.9.25</kotlin.version>
 
- 	</properties>
 
- 	<dependencies>
 
- 		<dependency>
 
- 			<groupId>org.springframework.boot</groupId>
 
- 			<artifactId>spring-boot-starter-data-jpa</artifactId>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>org.springframework.boot</groupId>
 
- 			<artifactId>spring-boot-starter-web</artifactId>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>com.fasterxml.jackson.module</groupId>
 
- 			<artifactId>jackson-module-kotlin</artifactId>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>org.jetbrains.kotlin</groupId>
 
- 			<artifactId>kotlin-reflect</artifactId>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>org.jetbrains.kotlin</groupId>
 
- 			<artifactId>kotlin-stdlib</artifactId>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>com.microsoft.sqlserver</groupId>
 
- 			<artifactId>mssql-jdbc</artifactId>
 
- 			<scope>runtime</scope>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>com.mysql</groupId>
 
- 			<artifactId>mysql-connector-j</artifactId>
 
- 			<scope>runtime</scope>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>org.springframework.boot</groupId>
 
- 			<artifactId>spring-boot-starter-test</artifactId>
 
- 			<scope>test</scope>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>org.jetbrains.kotlin</groupId>
 
- 			<artifactId>kotlin-test-junit5</artifactId>
 
- 			<scope>test</scope>
 
- 		</dependency>
 
- 		<!-- https://mvnrepository.com/artifact/net.sf.jasperreports/jasperreports -->
 
- 		<dependency>
 
- 			<groupId>net.sf.jasperreports</groupId>
 
- 			<artifactId>jasperreports</artifactId>
 
- 			<version>6.21.4</version>
 
- 		</dependency>
 
- 	</dependencies>
 
- 	<build>
 
- 		<sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory>
 
- 		<testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory>
 
- 		<plugins>
 
- 			<plugin>
 
- 				<groupId>org.springframework.boot</groupId>
 
- 				<artifactId>spring-boot-maven-plugin</artifactId>
 
- 			</plugin>
 
- 			<plugin>
 
- 				<groupId>org.jetbrains.kotlin</groupId>
 
- 				<artifactId>kotlin-maven-plugin</artifactId>
 
- 				<configuration>
 
- 					<args>
 
- 						<arg>-Xjsr305=strict</arg>
 
- 					</args>
 
- 					<compilerPlugins>
 
- 						<plugin>spring</plugin>
 
- 						<plugin>jpa</plugin>
 
- 						<plugin>all-open</plugin>
 
- 					</compilerPlugins>
 
- 					<pluginOptions>
 
- 						<option>all-open:annotation=jakarta.persistence.Entity</option>
 
- 						<option>all-open:annotation=jakarta.persistence.MappedSuperclass</option>
 
- 						<option>all-open:annotation=jakarta.persistence.Embeddable</option>
 
- 					</pluginOptions>
 
- 				</configuration>
 
- 				<dependencies>
 
- 					<dependency>
 
- 						<groupId>org.jetbrains.kotlin</groupId>
 
- 						<artifactId>kotlin-maven-allopen</artifactId>
 
- 						<version>${kotlin.version}</version>
 
- 					</dependency>
 
- 					<dependency>
 
- 						<groupId>org.jetbrains.kotlin</groupId>
 
- 						<artifactId>kotlin-maven-noarg</artifactId>
 
- 						<version>${kotlin.version}</version>
 
- 					</dependency>
 
- 				</dependencies>
 
- 			</plugin>
 
- 		</plugins>
 
- 	</build>
 
- </project>
 
 
  |