rome/pom.xml

63 lines
1.9 KiB
XML
Raw Normal View History

2013-10-11 23:46:36 +02:00
<?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"
2014-04-12 11:07:58 +02:00
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2013-10-11 23:46:36 +02:00
2014-04-12 11:07:58 +02:00
<modelVersion>4.0.0</modelVersion>
2013-10-11 23:46:36 +02:00
2014-04-12 11:07:58 +02:00
<parent>
2014-04-12 13:37:46 +02:00
<groupId>com.rometools</groupId>
<artifactId>rome-parent</artifactId>
2014-06-29 17:37:33 +02:00
<version>1.6.0-SNAPSHOT</version>
2014-04-12 11:07:58 +02:00
</parent>
2013-10-11 23:46:36 +02:00
2014-04-12 11:07:58 +02:00
<artifactId>rome-certiorem-webapp</artifactId>
<packaging>war</packaging>
2013-10-11 23:46:36 +02:00
2014-04-12 11:07:58 +02:00
<name>rome-certiorem-webapp</name>
2013-10-11 23:46:36 +02:00
2014-04-12 11:07:58 +02:00
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:rometools/rome-certiorem-webapp.git</connection>
<developerConnection>scm:git:git@github.com:rometools/rome-certiorem-webapp.git</developerConnection>
<url>https://github.com/rometools/rome-certiorem-webapp/</url>
</scm>
2014-04-28 17:49:17 +02:00
<repositories>
<repository>
<id>sonatype-nexus-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
2014-04-12 11:07:58 +02:00
<dependencies>
<dependency>
<groupId>com.rometools</groupId>
<artifactId>rome-certiorem</artifactId>
2014-06-04 22:21:46 +02:00
<version>1.5.0</version>
2014-04-12 11:07:58 +02:00
</dependency>
<dependency>
<groupId>com.google.inject.extensions</groupId>
<artifactId>guice-servlet</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
2013-10-11 23:46:36 +02:00
</project>