|
<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>it.katalys.www.jwt</groupId>
|
|
<artifactId>webapp</artifactId>
|
|
<packaging>war</packaging>
|
|
<version>1.0</version>
|
|
<name>webapp Maven Webapp</name>
|
|
<url>http://maven.apache.org</url>
|
|
<repositories>
|
|
<repository>
|
|
<id>java.net</id>
|
|
<name>java.net</name>
|
|
<url>http://download.java.net/maven/2/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>katalys.repo.3rdparty</id>
|
|
<name>katalys.repo.3rdparty</name>
|
|
<url>http://maven.katalys.it/nexus/content/repositories/thirdparty/</url>
|
|
<releases>
|
|
<updatePolicy>always</updatePolicy>
|
|
<checksumPolicy>warn</checksumPolicy>
|
|
</releases>
|
|
</repository>
|
|
<repository>
|
|
<id>java.net.repo</id>
|
|
<name>java.net</name>
|
|
<url>http://download.java.net/maven/2/</url>
|
|
<releases>
|
|
<updatePolicy>always</updatePolicy>
|
|
<checksumPolicy>warn</checksumPolicy>
|
|
</releases>
|
|
</repository>
|
|
<repository>
|
|
<id>java.net.repo1</id>
|
|
<name>java.net</name>
|
|
<url>http://download.java.net/maven/1/</url>
|
|
<releases>
|
|
<updatePolicy>always</updatePolicy>
|
|
<checksumPolicy>warn</checksumPolicy>
|
|
</releases>
|
|
</repository>
|
|
</repositories>
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>java.net.glassfish</id>
|
|
<name>glassfish</name>
|
|
<url>http://download.java.net/maven/glassfish/</url>
|
|
<releases>
|
|
<updatePolicy>always</updatePolicy>
|
|
<checksumPolicy>warn</checksumPolicy>
|
|
</releases>
|
|
</pluginRepository>
|
|
<pluginRepository>
|
|
<id>java.net</id>
|
|
<name>glassfish</name>
|
|
<url>http://download.java.net/maven/2/</url>
|
|
<releases>
|
|
<updatePolicy>always</updatePolicy>
|
|
<checksumPolicy>warn</checksumPolicy>
|
|
</releases>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
<dependencies>
|
|
<!-- -->
|
|
<dependency>
|
|
<groupId>eu.webtoolkit.www.jwt</groupId>
|
|
<artifactId>servlet-api</artifactId>
|
|
<version>3.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!--<dependency> <groupId>eu.webtoolkit.www.jwt</groupId> <artifactId>servlet-api</artifactId>
|
|
<version>2.5-6.0.2</version> </dependency> -->
|
|
|
|
<dependency>
|
|
<groupId>eu.webtoolkit.www</groupId>
|
|
<artifactId>jwt</artifactId>
|
|
<version>3.1.6</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>1.4</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-fileupload</groupId>
|
|
<artifactId>commons-fileupload</artifactId>
|
|
<version>1.2.1</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<finalName>webapp</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>2.0.2</version>
|
|
<configuration>
|
|
<source>1.5</source>
|
|
<target>1.5</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
<version>2.2</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.mortbay.jetty</groupId>
|
|
<artifactId>jetty-maven-plugin</artifactId>
|
|
<version>8.0.0.M1</version>
|
|
|
|
<configuration>
|
|
<!-- <webAppConfig> <descriptor>${basedir}/src/main/webapp/WEB-INF/jetty-web.xml</descriptor>
|
|
</webAppConfig> -->
|
|
<systemProperties>
|
|
<systemProperty>
|
|
<name>logback.configurationFile</name>
|
|
<value>src/main/resources/logback.xml</value>
|
|
</systemProperty>
|
|
</systemProperties>
|
|
</configuration>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>ch.qos.logback</groupId>
|
|
<artifactId>logback-classic</artifactId>
|
|
<version>0.9.15</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|