Formatted POM file

This commit is contained in:
Patrick Gotthard 2015-02-07 09:49:58 +01:00
parent 7aee10a663
commit 5339abd2d1

184
pom.xml
View file

@ -1,48 +1,48 @@
<?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/maven-v4_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>
<parent> <parent>
<groupId>com.rometools</groupId> <groupId>com.rometools</groupId>
<artifactId>rome-parent</artifactId> <artifactId>rome-parent</artifactId>
<version>1.6.0-SNAPSHOT</version> <version>1.6.0-SNAPSHOT</version>
</parent> </parent>
<artifactId>rome-propono</artifactId> <artifactId>rome-propono</artifactId>
<version>1.6.0-SNAPSHOT</version> <version>1.6.0-SNAPSHOT</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>rome-propono</name> <name>rome-propono</name>
<description>The ROME Propono subproject is a Java class library that <description>The ROME Propono subproject is a Java class library that
supports publishing protocols, specifically the Atom Publishing Protocol supports publishing protocols, specifically the Atom Publishing Protocol
and the legacy MetaWeblog API. Propono includes an Atom client library, and the legacy MetaWeblog API. Propono includes an Atom client library,
Atom server framework and a Blog client that supports both Atom protocol Atom server framework and a Blog client that supports both Atom protocol
and the MetaWeblog API. and the MetaWeblog API.
</description> </description>
<url>http://rometools.github.io/rome-propono/</url> <url>http://rometools.github.io/rome-propono/</url>
<scm> <scm>
<connection>scm:git:ssh://github.com/rometools/rome-propono.git</connection> <connection>scm:git:ssh://github.com/rometools/rome-propono.git</connection>
<developerConnection>scm:git:ssh://git@github.com/rometools/rome-propono.git</developerConnection> <developerConnection>scm:git:ssh://git@github.com/rometools/rome-propono.git</developerConnection>
<url>https://github.com/rometools/rome-propono</url> <url>https://github.com/rometools/rome-propono</url>
</scm> </scm>
<developers> <developers>
<developer> <developer>
<name>Dave Johnson</name> <name>Dave Johnson</name>
<url>http://rollerweblogger.org/roller</url> <url>http://rollerweblogger.org/roller</url>
<timezone>-5</timezone> <timezone>-5</timezone>
</developer> </developer>
<developer> <developer>
<name>Robert Cooper</name> <name>Robert Cooper</name>
<email>kebernet@gmail.com</email> <email>kebernet@gmail.com</email>
<url>http://www.screaming-penguin.com</url> <url>http://www.screaming-penguin.com</url>
<timezone>-4</timezone> <timezone>-4</timezone>
</developer> </developer>
</developers> </developers>
<repositories> <repositories>
<repository> <repository>
@ -57,66 +57,66 @@
</repository> </repository>
</repositories> </repositories>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-publish-plugin</artifactId> <artifactId>maven-scm-publish-plugin</artifactId>
<configuration> <configuration>
<scmBranch>gh-pages</scmBranch> <scmBranch>gh-pages</scmBranch>
<pubScmUrl>${project.scm.developerConnection}</pubScmUrl> <pubScmUrl>${project.scm.developerConnection}</pubScmUrl>
<content>${project.build.directory}/site</content> <content>${project.build.directory}/site</content>
</configuration> </configuration>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>com.rometools</groupId> <groupId>com.rometools</groupId>
<artifactId>rome</artifactId> <artifactId>rome</artifactId>
<version>1.6.0-SNAPSHOT</version> <version>1.6.0-SNAPSHOT</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>commons-httpclient</groupId> <groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId> <artifactId>commons-httpclient</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.commons</groupId> <groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId> <artifactId>commons-lang3</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>commons-beanutils</groupId> <groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId> <artifactId>commons-beanutils</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.xmlrpc</groupId> <groupId>org.apache.xmlrpc</groupId>
<artifactId>xmlrpc-client</artifactId> <artifactId>xmlrpc-client</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>net.oauth.core</groupId> <groupId>net.oauth.core</groupId>
<artifactId>oauth</artifactId> <artifactId>oauth</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>javax.servlet</groupId> <groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId> <artifactId>servlet-api</artifactId>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>ch.qos.logback</groupId> <groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId> <artifactId>logback-classic</artifactId>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>junit</groupId> <groupId>junit</groupId>
<artifactId>junit</artifactId> <artifactId>junit</artifactId>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>jetty</groupId> <groupId>jetty</groupId>
<artifactId>jetty</artifactId> <artifactId>jetty</artifactId>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>