You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
109 lines
3.7 KiB
XML
109 lines
3.7 KiB
XML
4 years ago
|
<?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/xsd/maven-4.0.0.xsd">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<groupId>com.peteralbus</groupId>
|
||
|
<artifactId>EpidemicTraces</artifactId>
|
||
|
<version>1.0-Release</version>
|
||
|
<name>EpidemicTraces</name>
|
||
|
<packaging>war</packaging>
|
||
|
|
||
|
<properties>
|
||
|
<maven.compiler.target>1.8</maven.compiler.target>
|
||
|
<maven.compiler.source>1.8</maven.compiler.source>
|
||
|
<junit.version>5.7.0</junit.version>
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>javax.servlet</groupId>
|
||
|
<artifactId>javax.servlet-api</artifactId>
|
||
|
<version>4.0.1</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
<version>4.10</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework</groupId>
|
||
|
<artifactId>spring-context</artifactId>
|
||
|
<version>5.0.5.RELEASE</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.aspectj</groupId>
|
||
|
<artifactId>aspectjweaver</artifactId>
|
||
|
<version>1.8.7</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework</groupId>
|
||
|
<artifactId>spring-jdbc</artifactId>
|
||
|
<version>5.0.5.RELEASE</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework</groupId>
|
||
|
<artifactId>spring-tx</artifactId>
|
||
|
<version>5.0.5.RELEASE</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework</groupId>
|
||
|
<artifactId>spring-test</artifactId>
|
||
|
<version>5.0.5.RELEASE</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework</groupId>
|
||
|
<artifactId>spring-webmvc</artifactId>
|
||
|
<version>5.0.5.RELEASE</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>javax.servlet.jsp</groupId>
|
||
|
<artifactId>jsp-api</artifactId>
|
||
|
<version>2.2</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.mybatis</groupId>
|
||
|
<artifactId>mybatis</artifactId>
|
||
|
<version>3.4.5</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.mybatis</groupId>
|
||
|
<artifactId>mybatis-spring</artifactId>
|
||
|
<version>1.3.1</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>mysql</groupId>
|
||
|
<artifactId>mysql-connector-java</artifactId>
|
||
|
<version>8.0.22</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>c3p0</groupId>
|
||
|
<artifactId>c3p0</artifactId>
|
||
|
<version>0.9.1.2</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>jstl</groupId>
|
||
|
<artifactId>jstl</artifactId>
|
||
|
<version>1.2</version>
|
||
|
</dependency>
|
||
|
<!--json-->
|
||
|
<dependency>
|
||
|
<groupId>com.google.code.gson</groupId>
|
||
|
<artifactId>gson</artifactId>
|
||
|
<version>2.8.3</version>
|
||
|
</dependency>
|
||
|
<!--json-->
|
||
|
</dependencies>
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-war-plugin</artifactId>
|
||
|
<version>3.3.0</version>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|