<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>de.thm.arsnova</groupId> <artifactId>arsnova-backend</artifactId> <version>2.0.0-SNAPSHOT</version> <packaging>war</packaging> <properties> <org.springframework-version>4.0.7.RELEASE</org.springframework-version> <org.springframework.security-version>3.2.4.RELEASE</org.springframework.security-version> <org.springframework.integration-mail-version>4.0.3.RELEASE</org.springframework.integration-mail-version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.url>https://scm.thm.de/arsnova</project.url> <mobile.production.path>../arsnova-mobile/src/main/webapp/build/production/ARSnova</mobile.production.path> <mobile.testing.path>../arsnova-mobile/src/main/webapp/build/testing/ARSnova</mobile.testing.path> <mobile.path>${mobile.production.path}</mobile.path> <customization.path>${basedir}/../arsnova-customization/src/main/webapp</customization.path> <presenter.rootPath>${basedir}/../arsnova-presenter</presenter.rootPath> <presenter.outputDir>target/arsnova-presenter-${presenter.version}</presenter.outputDir> </properties> <developers> <developer> <name>Klaus Quibeldey-Cirkel</name> <organization>Technische Hochschule Mittelhessen</organization> <organizationUrl>http://www.thm.de</organizationUrl> </developer> <developer> <name>Andreas Gärtner</name> <organization>Technische Hochschule Mittelhessen</organization> <organizationUrl>http://www.thm.de</organizationUrl> <email>andreas.gaertner@mni.thm.de</email> </developer> <developer> <name>Daniel Gerhardt</name> <organization>Technische Hochschule Mittelhessen</organization> <organizationUrl>http://www.thm.de</organizationUrl> <email>daniel.gerhardt@mni.thm.de</email> </developer> <developer> <name>Christoph Thelen</name> <organization>Technische Hochschule Mittelhessen</organization> <organizationUrl>http://www.thm.de</organizationUrl> <email>christoph.thelen@mni.thm.de</email> </developer> <developer> <name>Paul-Christian Volkmer</name> <organization>Technische Hochschule Mittelhessen</organization> <organizationUrl>http://www.thm.de</organizationUrl> <email>paul-christian.volkmer@mni.thm.de</email> </developer> </developers> <distributionManagement> <site> <id>website</id> <url>https://arsnova.eu</url> </site> </distributionManagement> <issueManagement> <system>Redmine</system> <url>https://scm.thm.de/redmine/projects/arsnova</url> </issueManagement> <ciManagement> <system>Jenkins</system> <url>https://jenkins.mni.thm.de/jenkins/job/ARSnova-Backend/</url> </ciManagement> <scm> <url>https://github.com/thm-projects/arsnova-backend</url> <connection>scm:https://github.com/thm-projects/arsnova-backend.git</connection> <developerConnection>scm:ssh://gitorious@scm.thm.de/arsnova/arsnova-backend.git</developerConnection> </scm> <licenses> <license> <name>GNU General Public License v3.0 or later</name> <url>http://www.gnu.org/licenses/gpl.txt</url> </license> </licenses> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.7</version> <configuration> <dependencyLocationsEnabled>false</dependencyLocationsEnabled> <dependencyDetailsEnabled>false</dependencyDetailsEnabled> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <configuration></configuration> </plugin> </plugins> </reporting> <repositories> <repository> <id>thmrepo</id> <name>THM Maven Repository</name> <url>http://maven.mni.thm.de/content/repositories</url> </repository> <repository> <id>thmreposnapshots</id> <name>THM Maven Snapshot Repository</name> <url>http://maven.mni.thm.de/content/repositories/snapshots</url> </repository> <repository> <id>thmmirror</id> <name>THM Maven Mirror</name> <url>http://maven.mni.thm.de/content/groups/public</url> </repository> <repository> <id>sonatypesnapshots</id> <name>Sonatype Snapshot Repository</name> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </repository> </repositories> <dependencies> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.6</version> </dependency> <!-- Spring --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>${org.springframework-version}</version> <exclusions> <!-- Exclude Commons Logging in favor of SLF4j --> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>${org.springframework-version}</version> </dependency> <dependency> <groupId>org.springframework.integration</groupId> <artifactId>spring-integration-mail</artifactId> <version>${org.springframework.integration-mail-version}</version> </dependency> <!-- Security --> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-config</artifactId> <version>${org.springframework.security-version}</version> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-web</artifactId> <version>${org.springframework.security-version}</version> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-taglibs</artifactId> <version>${org.springframework.security-version}</version> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-cas</artifactId> <version>${org.springframework.security-version}</version> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-ldap</artifactId> <version>${org.springframework.security-version}</version> </dependency> <dependency> <groupId>jstl</groupId> <artifactId>jstl</artifactId> <version>1.2</version> </dependency> <dependency> <groupId>cglib</groupId> <artifactId>cglib</artifactId> <version>3.1</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.7</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>1.7.7</version> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.17</version> </dependency> <dependency> <groupId>couchdb4j</groupId> <artifactId>couchdb4j</artifactId> <version>0.3.0-i386-1</version> <exclusions> <!-- Exclude httpclient: Selenium loads a more current version --> <exclusion> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>net.sf.ezmorph</groupId> <artifactId>ezmorph</artifactId> <version>1.0.6</version> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>3.0.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.mail</groupId> <artifactId>mail</artifactId> <version>1.4.7</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <version>${org.springframework-version}</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId> com.github.leleuj.springframework.security </groupId> <artifactId>spring-security-oauth-client</artifactId> <version>1.0.0</version> </dependency> <dependency> <groupId>com.corundumstudio.socketio</groupId> <artifactId>netty-socketio</artifactId> <version>1.7.2</version> </dependency> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> <version>1</version> <scope>test</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.4.2</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-aop</artifactId> <version>${org.springframework-version}</version> </dependency> <dependency> <groupId>org.aspectj</groupId> <artifactId>aspectjrt</artifactId> <version>1.7.4</version> </dependency> <dependency> <groupId>org.aspectj</groupId> <artifactId>aspectjweaver</artifactId> <version>1.7.4</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-aspects</artifactId> <version>${org.springframework-version}</version> </dependency> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-java</artifactId> <version>2.42.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.9.5</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.3.5</version> </dependency> <dependency> <groupId>de.thm.arsnova.connector</groupId> <artifactId>connector-client</artifactId> <version>0.72.0</version> </dependency> <dependency> <groupId>com.jayway.jsonpath</groupId> <artifactId>json-path-assert</artifactId> <version>0.9.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.directory.server</groupId> <artifactId>apacheds-core</artifactId> <version>1.5.5</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.directory.server</groupId> <artifactId>apacheds-server-jndi</artifactId> <version>1.5.5</version> <scope>runtime</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-maven-plugin</artifactId> <version>9.2.2.v20140723</version> <configuration> <scanIntervalSeconds>1</scanIntervalSeconds> <webApp> <overrideDescriptor>src/main/webapp/WEB-INF/web-dev.xml</overrideDescriptor> </webApp> <contextHandlers> <contextHandler implementation="org.eclipse.jetty.webapp.WebAppContext"> <contextPath>/mobile</contextPath> <resourceBase>${mobile.path}</resourceBase> </contextHandler> <contextHandler implementation="org.eclipse.jetty.webapp.WebAppContext"> <contextPath>/presenter</contextPath> <baseResource implementation="org.eclipse.jetty.util.resource.ResourceCollection"> <resourcesAsCSV>${presenter.rootPath}/${presenter.outputDir},${presenter.rootPath}/src/main/websources,${presenter.rootPath}/src/main/webapp</resourcesAsCSV> </baseResource> <descriptor>${presenter.rootPath}/src/main/config/WEB-INF/web.dev.xml</descriptor> <aliasCheck implementation="org.eclipse.jetty.server.handler.AllowSymLinkAliasChecker" /> </contextHandler> <contextHandler implementation="org.eclipse.jetty.webapp.WebAppContext"> <contextPath>/customization</contextPath> <resourceBase>${customization.path}</resourceBase> </contextHandler> </contextHandlers> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.4</version> <configuration> <locales>en</locales> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.17</version> <configuration> <excludes> <exclude>**/Selenium*.java</exclude> <exclude>**/HttpRestApiTest.java</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <version>2.6</version> <configuration> <formats> <format>xml</format> <format>html</format> </formats> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>aspectj-maven-plugin</artifactId> <version>1.6</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>2.12.1</version> <configuration> <configLocation>ARSnova-checkstyle-checker.xml</configLocation> </configuration> </plugin> <plugin> <groupId>org.apache.tomcat.maven</groupId> <artifactId>tomcat7-maven-plugin</artifactId> <version>2.2</version> <configuration> <url>http://localhost:8080/manager/text</url> <server>arsnova</server> <path>/api</path> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <version>2.4</version> </plugin> </plugins> </build> <name>ARSnova Backend</name> <description>ARSnova is a great audience response system</description> <organization> <name>Technische Hochschule Mittelhessen</name> <url>http://www.thm.de</url> </organization> </project>