Preparing release 1.5.0

Cleaned up POM
This commit is contained in:
Patrick Gotthard 2014-04-12 11:07:58 +02:00
parent 3770ac7873
commit 1e11b00ac3

148
pom.xml
View file

@ -1,67 +1,99 @@
<?xml version="1.0" encoding="UTF-8"?> <?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" <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"> 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> <modelVersion>4.0.0</modelVersion>
<groupId>com.rometools</groupId> <parent>
<artifactId>rome-certiorem-webapp</artifactId> <groupId>org.sonatype.oss</groupId>
<version>1.0.0-SNAPSHOT</version> <artifactId>oss-parent</artifactId>
<packaging>war</packaging> <version>9</version>
</parent>
<properties> <groupId>com.rometools</groupId>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <artifactId>rome-certiorem-webapp</artifactId>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <version>1.5.0-SNAPSHOT</version>
</properties> <packaging>war</packaging>
<build> <name>rome-certiorem-webapp</name>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies> <licenses>
<dependency> <license>
<groupId>com.rometools</groupId> <name>The Apache Software License, Version 2.0</name>
<artifactId>rome-certiorem</artifactId> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<version>1.0.0-SNAPSHOT</version> <distribution>repo</distribution>
</dependency> </license>
<dependency> </licenses>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId> <scm>
<version>2.0</version> <connection>scm:git:git@github.com:rometools/rome-certiorem-webapp.git</connection>
</dependency> <developerConnection>scm:git:git@github.com:rometools/rome-certiorem-webapp.git</developerConnection>
<dependency> <url>https://github.com/rometools/rome-certiorem-webapp/</url>
<groupId>com.google.inject.extensions</groupId> </scm>
<artifactId>guice-servlet</artifactId>
<version>2.0</version> <properties>
</dependency> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<dependency> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<groupId>javax.servlet</groupId> </properties>
<artifactId>servlet-api</artifactId>
<version>2.5</version> <build>
<scope>provided</scope> <plugins>
</dependency> <plugin>
<dependency> <groupId>org.apache.maven.plugins</groupId>
<groupId>javax.servlet.jsp</groupId> <artifactId>maven-compiler-plugin</artifactId>
<artifactId>jsp-api</artifactId> <version>3.1</version>
<version>2.1</version> <configuration>
<scope>provided</scope> <source>1.6</source>
</dependency> <target>1.6</target>
<dependency> </configuration>
<groupId>junit</groupId> </plugin>
<artifactId>junit</artifactId> </plugins>
<version>4.11</version> </build>
<scope>test</scope>
</dependency> <reporting>
</dependencies> <plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.7</version>
</plugin>
</plugins>
</reporting>
<dependencies>
<dependency>
<groupId>com.rometools</groupId>
<artifactId>rome-certiorem</artifactId>
<version>1.5.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>com.google.inject.extensions</groupId>
<artifactId>guice-servlet</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
<version>2.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
</project> </project>