246 lines
8.0 KiB
XML
246 lines
8.0 KiB
XML
<?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 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>com.nesoft</groupId>
|
|
<artifactId>GPA_Found_Data</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<version>3.1.0</version>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>repackage</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>3.0.0-M7</version>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>3.2.4</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
<configuration>
|
|
<transformers>
|
|
<transformer>
|
|
<mainClass>com.nesoft.Application</mainClass>
|
|
</transformer>
|
|
</transformers>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<version>8.0.33</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter</artifactId>
|
|
<version>5.8.1</version>
|
|
<scope>test</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>junit-jupiter-params</artifactId>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.junit.platform</groupId>
|
|
<artifactId>junit-platform-suite</artifactId>
|
|
<version>1.8.1</version>
|
|
<scope>test</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>junit-platform-suite-api</artifactId>
|
|
<groupId>org.junit.platform</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>junit-platform-suite-engine</artifactId>
|
|
<groupId>org.junit.platform</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<version>3.1.0</version>
|
|
<scope>test</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>spring-boot-test</artifactId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>spring-boot-test-autoconfigure</artifactId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>json-path</artifactId>
|
|
<groupId>com.jayway.jsonpath</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>jakarta.xml.bind-api</artifactId>
|
|
<groupId>jakarta.xml.bind</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>json-smart</artifactId>
|
|
<groupId>net.minidev</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>assertj-core</artifactId>
|
|
<groupId>org.assertj</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>hamcrest</artifactId>
|
|
<groupId>org.hamcrest</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>mockito-core</artifactId>
|
|
<groupId>org.mockito</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>mockito-junit-jupiter</artifactId>
|
|
<groupId>org.mockito</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>jsonassert</artifactId>
|
|
<groupId>org.skyscreamer</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>spring-test</artifactId>
|
|
<groupId>org.springframework</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>xmlunit-core</artifactId>
|
|
<groupId>org.xmlunit</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.h2database</groupId>
|
|
<artifactId>h2</artifactId>
|
|
<version>2.1.214</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
<artifactId>selenium-java</artifactId>
|
|
<version>4.11.0</version>
|
|
<scope>test</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>selenium-api</artifactId>
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>selenium-chrome-driver</artifactId>
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>selenium-devtools-v113</artifactId>
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>selenium-devtools-v114</artifactId>
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>selenium-devtools-v115</artifactId>
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>selenium-devtools-v85</artifactId>
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>selenium-edge-driver</artifactId>
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>selenium-firefox-driver</artifactId>
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>selenium-ie-driver</artifactId>
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>selenium-remote-driver</artifactId>
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>selenium-safari-driver</artifactId>
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>selenium-support</artifactId>
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.github.bonigarcia</groupId>
|
|
<artifactId>webdrivermanager</artifactId>
|
|
<version>5.4.1</version>
|
|
<scope>test</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>gson</artifactId>
|
|
<groupId>com.google.code.gson</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>docker-java</artifactId>
|
|
<groupId>com.github.docker-java</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>docker-java-transport-httpclient5</artifactId>
|
|
<groupId>com.github.docker-java</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>dec</artifactId>
|
|
<groupId>org.brotli</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>commons-lang3</artifactId>
|
|
<groupId>org.apache.commons</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>httpclient5</artifactId>
|
|
<groupId>org.apache.httpcomponents.client5</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
</dependencies>
|
|
<properties>
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
</project>
|