Softwareprojektmanagement/pom.xml

62 lines
1.9 KiB
XML
Raw Normal View History

<?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>
<name>BauDas Kundenkarten Verwaltung</name>
<groupId>de.hs-el.spm</groupId>
<artifactId>bauDas-kundenkarten</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>war</packaging>
<contributors>
<contributor>
<name>Johannes Theiner</name>
<email>johannes.theiner@informatik-emden.de</email>
<roles>
<role>Technisches Management</role>
<role>Server Admin</role>
</roles>
</contributor>
</contributors>
<issueManagement>
<system>YouTrack</system>
<url>https://youtrack.joethei.xyz/issues/SPM</url>
</issueManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<url>https://spm.joethei.space/manager/text</url>
<server>TomcatServer</server>
<path>/bauDas</path>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>4.0.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>nz.ac.waikato.cms.weka</groupId>
<artifactId>weka-stable</artifactId>
<version>3.8.3</version>
</dependency>
</dependencies>
</project>