80 lines
2.4 KiB
XML
80 lines
2.4 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>se.koc</groupId>
|
||
|
|
<artifactId>zallery</artifactId>
|
||
|
|
<version>1.0.0-SNAPSHOT</version>
|
||
|
|
<packaging>war</packaging>
|
||
|
|
|
||
|
|
<name>Zallery</name>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
<properties>
|
||
|
|
<java.version>1.8</java.version>
|
||
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
|
</properties>
|
||
|
|
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>se.koc</groupId>
|
||
|
|
<artifactId>zutil</artifactId>
|
||
|
|
<version>1.0.0-SNAPSHOT</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>javax.mail</groupId>
|
||
|
|
<artifactId>mail</artifactId>
|
||
|
|
<version>1.3.2</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>mysql</groupId>
|
||
|
|
<artifactId>mysql-connector-java</artifactId>
|
||
|
|
<version>5.1.36</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>xuggle</groupId>
|
||
|
|
<artifactId>xuggle-xuggler</artifactId>
|
||
|
|
<version>5.4</version>
|
||
|
|
<scope>system</scope>
|
||
|
|
<systemPath>${basedir}/WebContent/WEB-INF/lib/xuggle-xuggler-5.4.jar</systemPath>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>javax.servlet</groupId>
|
||
|
|
<artifactId>javax.servlet-api</artifactId>
|
||
|
|
<version>3.1.0</version>
|
||
|
|
<scope>provided</scope>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
<build>
|
||
|
|
<sourceDirectory>src</sourceDirectory>
|
||
|
|
<testSourceDirectory>test</testSourceDirectory>
|
||
|
|
|
||
|
|
<plugins>
|
||
|
|
<plugin>
|
||
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
|
<version>3.6.1</version>
|
||
|
|
<configuration>
|
||
|
|
<source>${java.version}</source>
|
||
|
|
<target>${java.version}</target>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-war-plugin</artifactId>
|
||
|
|
<version>3.2.0</version>
|
||
|
|
<configuration>
|
||
|
|
<warSourceDirectory>WebContent</warSourceDirectory>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
|
||
|
|
</plugins>
|
||
|
|
</build>
|
||
|
|
|
||
|
|
|
||
|
|
</project>
|