121 lines
3.4 KiB
XML
121 lines
3.4 KiB
XML
|
|
<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/xsd/maven-4.0.0.xsd">
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
<groupId>com.stephenschafer</groupId>
|
||
|
|
<artifactId>budget</artifactId>
|
||
|
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
|
<packaging>jar</packaging>
|
||
|
|
<build>
|
||
|
|
<sourceDirectory>src/main/java</sourceDirectory>
|
||
|
|
<plugins>
|
||
|
|
<plugin>
|
||
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
|
<version>3.7.0</version>
|
||
|
|
<configuration>
|
||
|
|
<source>1.8</source>
|
||
|
|
<target>1.8</target>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
||
|
|
<executions>
|
||
|
|
<execution>
|
||
|
|
<id>copy-dependencies</id>
|
||
|
|
<phase>prepare-package</phase>
|
||
|
|
<goals>
|
||
|
|
<goal>copy-dependencies</goal>
|
||
|
|
</goals>
|
||
|
|
<configuration>
|
||
|
|
<outputDirectory>
|
||
|
|
${project.build.directory}/libs
|
||
|
|
</outputDirectory>
|
||
|
|
</configuration>
|
||
|
|
</execution>
|
||
|
|
</executions>
|
||
|
|
</plugin>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-jar-plugin</artifactId>
|
||
|
|
<configuration>
|
||
|
|
<archive>
|
||
|
|
<manifest>
|
||
|
|
<addClasspath>true</addClasspath>
|
||
|
|
<classpathPrefix>libs/</classpathPrefix>
|
||
|
|
<mainClass>
|
||
|
|
com.stephenschafer.budget.Amazon
|
||
|
|
</mainClass>
|
||
|
|
</manifest>
|
||
|
|
</archive>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
</plugins>
|
||
|
|
</build>
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>javax.servlet</groupId>
|
||
|
|
<artifactId>javax.servlet-api</artifactId>
|
||
|
|
<version>3.0.1</version>
|
||
|
|
<scope>provided</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>mysql</groupId>
|
||
|
|
<artifactId>mysql-connector-java</artifactId>
|
||
|
|
<version>8.0.11</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>commons-fileupload</groupId>
|
||
|
|
<artifactId>commons-fileupload</artifactId>
|
||
|
|
<version>1.3.3</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.commons</groupId>
|
||
|
|
<artifactId>commons-csv</artifactId>
|
||
|
|
<version>1.5</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
||
|
|
<artifactId>jackson-core</artifactId>
|
||
|
|
<version>2.9.5</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
||
|
|
<artifactId>jackson-databind</artifactId>
|
||
|
|
<version>2.9.5</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>jstl</groupId>
|
||
|
|
<artifactId>jstl</artifactId>
|
||
|
|
<version>1.2</version>
|
||
|
|
<scope>compile</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>taglibs</groupId>
|
||
|
|
<artifactId>standard</artifactId>
|
||
|
|
<version>1.1.2</version>
|
||
|
|
<scope>compile</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
||
|
|
<artifactId>selenium-java</artifactId>
|
||
|
|
<version>4.1.2</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.junit.jupiter</groupId>
|
||
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
||
|
|
<version>5.8.2</version>
|
||
|
|
<scope>test</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>io.github.bonigarcia</groupId>
|
||
|
|
<artifactId>webdrivermanager</artifactId>
|
||
|
|
<version>5.1.0</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.opencsv</groupId>
|
||
|
|
<artifactId>opencsv</artifactId>
|
||
|
|
<version>5.8</version>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
</project>
|