48 lines
1.4 KiB
XML
48 lines
1.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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
<groupId>com.stephenschafer</groupId>
|
||
|
|
<artifactId>budget.web</artifactId>
|
||
|
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
|
<packaging>war</packaging>
|
||
|
|
<build>
|
||
|
|
<plugins>
|
||
|
|
<plugin>
|
||
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
|
<version>3.13.0</version>
|
||
|
|
<configuration>
|
||
|
|
<source>17</source>
|
||
|
|
<target>17</target>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
<plugin>
|
||
|
|
<artifactId>maven-war-plugin</artifactId>
|
||
|
|
<version>3.4.0</version>
|
||
|
|
<configuration>
|
||
|
|
<warSourceDirectory>WebContent</warSourceDirectory>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
</plugins>
|
||
|
|
</build>
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>javax.servlet</groupId>
|
||
|
|
<artifactId>javax.servlet-api</artifactId>
|
||
|
|
<version>4.0.1</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>mysql</groupId>
|
||
|
|
<artifactId>mysql-connector-java</artifactId>
|
||
|
|
<version>5.1.38</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
||
|
|
<artifactId>jackson-core</artifactId>
|
||
|
|
<version>2.18.1</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
||
|
|
<artifactId>jackson-databind</artifactId>
|
||
|
|
<version>2.18.1</version>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
</project>
|