Formatted POM file

This commit is contained in:
Patrick Gotthard 2015-02-07 09:49:43 +01:00
parent 1d15605d2c
commit 8588d21adb

110
pom.xml
View file

@ -1,37 +1,37 @@
<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">
<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"> <modelVersion>4.0.0</modelVersion>
<modelVersion>4.0.0</modelVersion> <parent>
<groupId>com.rometools</groupId>
<artifactId>rome-parent</artifactId>
<version>1.6.0-SNAPSHOT</version>
</parent>
<parent> <artifactId>rome-opml</artifactId>
<groupId>com.rometools</groupId> <version>1.6.0-SNAPSHOT</version>
<artifactId>rome-parent</artifactId> <packaging>jar</packaging>
<version>1.6.0-SNAPSHOT</version>
</parent>
<artifactId>rome-opml</artifactId> <name>rome-opml</name>
<version>1.6.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>rome-opml</name> <description>Support for OPML 1 and OPML 2 in ROME</description>
<description>Support for OPML 1 and OPML 2 in ROME</description> <url>http://rometools.github.io/rome-opml/</url>
<url>http://rometools.github.io/rome-opml/</url> <scm>
<connection>scm:git:ssh://github.com/rometools/rome-opml.git</connection>
<developerConnection>scm:git:ssh://git@github.com/rometools/rome-opml.git</developerConnection>
<url>https://github.com/rometools/rome-opml</url>
</scm>
<scm> <developers>
<connection>scm:git:ssh://github.com/rometools/rome-opml.git</connection> <developer>
<developerConnection>scm:git:ssh://git@github.com/rometools/rome-opml.git</developerConnection> <id>kebernet</id>
<url>https://github.com/rometools/rome-opml</url> <email>kebernet@gmail.com</email>
</scm> <name>Robert Cooper</name>
</developer>
<developers> </developers>
<developer>
<id>kebernet</id>
<email>kebernet@gmail.com</email>
<name>Robert Cooper</name>
</developer>
</developers>
<repositories> <repositories>
<repository> <repository>
@ -46,36 +46,36 @@
</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>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>
</dependencies> </dependencies>
</project> </project>