hs.hsadmin.jee/web/pom.xml

109 lines
2.5 KiB
XML
Raw Normal View History

2016-06-10 19:34:43 +02:00
<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>
<parent>
<groupId>de.hsadmin</groupId>
<artifactId>hsadmin-parent</artifactId>
2021-10-27 20:50:17 +02:00
<version>1.0.3</version>
</parent>
<artifactId>admin-web</artifactId>
2016-06-10 19:34:43 +02:00
<packaging>war</packaging>
<name>HSAdmin Webapp</name>
2016-06-10 19:34:43 +02:00
<dependencies>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
2018-06-12 15:21:15 +02:00
<version>3.1.0</version>
2016-06-10 19:34:43 +02:00
<scope>provided</scope>
</dependency>
2017-04-28 17:07:10 +02:00
<dependency>
<groupId>de.hsadmin</groupId>
<artifactId>framework</artifactId>
2021-09-13 18:55:46 +02:00
<version>${hsadmin.version}</version>
2017-05-08 19:25:13 +02:00
<exclusions>
<exclusion>
<groupId>org.apache.xmlrpc</groupId>
<artifactId>xmlrpc-server</artifactId>
</exclusion>
</exclusions>
2017-04-28 17:07:10 +02:00
</dependency>
2016-06-10 19:34:43 +02:00
<dependency>
<groupId>org.apache.xmlrpc</groupId>
<artifactId>xmlrpc-client</artifactId>
<version>3.1.3</version>
</dependency>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-compatibility-server</artifactId>
<version>8.9.4</version>
2016-06-10 19:34:43 +02:00
</dependency>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-themes</artifactId>
<version>8.9.4</version>
2016-06-10 19:34:43 +02:00
</dependency>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-compatibility-client-compiled</artifactId>
<version>8.9.4</version>
2016-06-10 19:34:43 +02:00
</dependency>
<dependency>
<groupId>net.kencochrane.raven</groupId>
<artifactId>raven-log4j</artifactId>
<version>6.0.0</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.7.30</version>
2016-06-10 19:34:43 +02:00
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
2016-06-10 19:34:43 +02:00
</plugin>
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<path>/</path>
2017-05-08 19:25:13 +02:00
<port>8081</port>
2016-06-10 19:34:43 +02:00
</configuration>
</plugin>
</plugins>
</pluginManagement>
<finalName>admin</finalName>
</build>
</project>