Merge pull request #270 from rometools/pom-refactoring

Refactored POMs
This commit is contained in:
Patrick Gotthard 2016-02-20 16:12:47 +01:00
commit 10d6b126a3
9 changed files with 880 additions and 853 deletions

41
pom.xml
View file

@ -177,6 +177,47 @@
<dependencyManagement> <dependencyManagement>
<dependencies> <dependencies>
<!-- ROME -->
<dependency>
<groupId>com.rometools</groupId>
<artifactId>rome</artifactId>
<version>1.6.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.rometools</groupId>
<artifactId>rome-certiorem</artifactId>
<version>1.6.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.rometools</groupId>
<artifactId>rome-certiorem-webapp</artifactId>
<version>1.6.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.rometools</groupId>
<artifactId>rome-fetcher</artifactId>
<version>1.6.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.rometools</groupId>
<artifactId>rome-modules</artifactId>
<version>1.6.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.rometools</groupId>
<artifactId>rome-opml</artifactId>
<version>1.6.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.rometools</groupId>
<artifactId>rome-propono</artifactId>
<version>1.6.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.rometools</groupId>
<artifactId>rome-utils</artifactId>
<version>1.6.0-SNAPSHOT</version>
</dependency>
<!-- JDOM --> <!-- JDOM -->
<dependency> <dependency>
<groupId>org.jdom</groupId> <groupId>org.jdom</groupId>

View file

@ -1,61 +1,60 @@
<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>
<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-certiorem-webapp</artifactId> <artifactId>rome-certiorem-webapp</artifactId>
<packaging>war</packaging> <packaging>war</packaging>
<name>rome-certiorem-webapp</name> <name>rome-certiorem-webapp</name>
<licenses> <licenses>
<license> <license>
<name>The Apache Software License, Version 2.0</name> <name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution> <distribution>repo</distribution>
</license> </license>
</licenses> </licenses>
<scm> <scm>
<connection>scm:git:git@github.com:rometools/rome-certiorem-webapp.git</connection> <connection>scm:git:git@github.com:rometools/rome-certiorem-webapp.git</connection>
<developerConnection>scm:git:git@github.com:rometools/rome-certiorem-webapp.git</developerConnection> <developerConnection>scm:git:git@github.com:rometools/rome-certiorem-webapp.git</developerConnection>
<url>https://github.com/rometools/rome-certiorem-webapp/</url> <url>https://github.com/rometools/rome-certiorem-webapp/</url>
</scm> </scm>
<repositories> <repositories>
<repository> <repository>
<id>sonatype-nexus-snapshots</id> <id>sonatype-nexus-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url> <url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases> <releases>
<enabled>false</enabled> <enabled>false</enabled>
</releases> </releases>
<snapshots> <snapshots>
<enabled>true</enabled> <enabled>true</enabled>
</snapshots> </snapshots>
</repository> </repository>
</repositories> </repositories>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>com.rometools</groupId> <groupId>com.rometools</groupId>
<artifactId>rome-certiorem</artifactId> <artifactId>rome-certiorem</artifactId>
<version>1.5.0</version> </dependency>
</dependency> <dependency>
<dependency> <groupId>com.google.inject.extensions</groupId>
<groupId>com.google.inject.extensions</groupId> <artifactId>guice-servlet</artifactId>
<artifactId>guice-servlet</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> </dependencies>
</dependencies>
</project>
</project>

View file

@ -1,111 +1,109 @@
<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>
<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-certiorem</artifactId> <artifactId>rome-certiorem</artifactId>
<version>1.6.0-SNAPSHOT</version> <packaging>jar</packaging>
<packaging>jar</packaging>
<name>rome-certiorem</name>
<name>rome-certiorem</name>
<description>A PubSubHubub implementation for Java based on ROME</description>
<description>A PubSubHubub implementation for Java based on ROME</description>
<scm>
<scm> <connection>scm:git:ssh://github.com/rometools/rome-certiorem.git</connection>
<connection>scm:git:ssh://github.com/rometools/rome-certiorem.git</connection> <developerConnection>scm:git:ssh://git@github.com/rometools/rome-certiorem.git</developerConnection>
<developerConnection>scm:git:ssh://git@github.com/rometools/rome-certiorem.git</developerConnection> <url>https://github.com/rometools/rome-certiorem</url>
<url>https://github.com/rometools/rome-certiorem</url> </scm>
</scm>
<developers>
<developers> <developer>
<developer> <name>Robert Cooper</name>
<name>Robert Cooper</name> <email>kebernet@gmail.comM</email>
<email>kebernet@gmail.comM</email> <url>http://www.kebernet.net</url>
<url>http://www.kebernet.net</url> </developer>
</developer> <developer>
<developer> <name>Farrukh Najmi</name>
<name>Farrukh Najmi</name> <url>http://wellfleetsoftware.com</url>
<url>http://wellfleetsoftware.com</url> </developer>
</developer> </developers>
</developers>
<repositories>
<repositories> <repository>
<repository> <id>sonatype-nexus-snapshots</id>
<id>sonatype-nexus-snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url>
<url>https://oss.sonatype.org/content/repositories/snapshots</url> <releases>
<releases> <enabled>false</enabled>
<enabled>false</enabled> </releases>
</releases> <snapshots>
<snapshots> <enabled>true</enabled>
<enabled>true</enabled> </snapshots>
</snapshots> </repository>
</repository> </repositories>
</repositories>
<build>
<build> <plugins>
<plugins> <plugin>
<plugin> <groupId>org.apache.maven.plugins</groupId>
<groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId>
<artifactId>maven-site-plugin</artifactId> <configuration>
<configuration> <port>9000</port>
<port>9000</port> <tempWebappDirectory>${basedir}/target/site/tempdir</tempWebappDirectory>
<tempWebappDirectory>${basedir}/target/site/tempdir</tempWebappDirectory> </configuration>
</configuration> </plugin>
</plugin> <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-fetcher</artifactId>
<artifactId>rome-fetcher</artifactId> <exclusions>
<version>1.6.0-SNAPSHOT</version> <exclusion>
<exclusions> <artifactId>commons-httpclient</artifactId>
<exclusion> <groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId> </exclusion>
<groupId>commons-httpclient</groupId> </exclusions>
</exclusion> </dependency>
</exclusions> <dependency>
</dependency> <groupId>javax.servlet</groupId>
<dependency> <artifactId>servlet-api</artifactId>
<groupId>javax.servlet</groupId> <scope>provided</scope>
<artifactId>servlet-api</artifactId> </dependency>
<scope>provided</scope> <dependency>
</dependency> <groupId>javax.persistence</groupId>
<dependency> <artifactId>persistence-api</artifactId>
<groupId>javax.persistence</groupId> <scope>provided</scope>
<artifactId>persistence-api</artifactId> </dependency>
<scope>provided</scope> <dependency>
</dependency> <groupId>org.slf4j</groupId>
<dependency> <artifactId>slf4j-api</artifactId>
<groupId>org.slf4j</groupId> </dependency>
<artifactId>slf4j-api</artifactId> <dependency>
</dependency> <groupId>ch.qos.logback</groupId>
<dependency> <artifactId>logback-classic</artifactId>
<groupId>ch.qos.logback</groupId> <scope>test</scope>
<artifactId>logback-classic</artifactId> </dependency>
<scope>test</scope> <dependency>
</dependency> <groupId>junit</groupId>
<dependency> <artifactId>junit</artifactId>
<groupId>junit</groupId> <scope>test</scope>
<artifactId>junit</artifactId> </dependency>
<scope>test</scope> </dependencies>
</dependency>
</dependencies> </project>
</project>

View file

@ -1,123 +1,121 @@
<?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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_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> <parent>
<artifactId>rome-parent</artifactId> <groupId>com.rometools</groupId>
<version>1.6.0-SNAPSHOT</version> <artifactId>rome-parent</artifactId>
</parent> <version>1.6.0-SNAPSHOT</version>
</parent>
<artifactId>rome-fetcher</artifactId>
<version>1.6.0-SNAPSHOT</version> <artifactId>rome-fetcher</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>rome-fetcher</name> <name>rome-fetcher</name>
<description>A well behaved feed fetcher API for ROME</description> <description>A well behaved feed fetcher API for ROME</description>
<url>http://rometools.github.io/rome-fetcher/</url> <url>http://rometools.github.io/rome-fetcher/</url>
<scm> <scm>
<connection>scm:git:ssh://github.com/rometools/rome-fetcher.git</connection> <connection>scm:git:ssh://github.com/rometools/rome-fetcher.git</connection>
<developerConnection>scm:git:ssh://git@github.com/rometools/rome-fetcher.git</developerConnection> <developerConnection>scm:git:ssh://git@github.com/rometools/rome-fetcher.git</developerConnection>
<url>https://github.com/rometools/rome-fetcher</url> <url>https://github.com/rometools/rome-fetcher</url>
</scm> </scm>
<developers> <developers>
<developer> <developer>
<name>Nick Lothian</name> <name>Nick Lothian</name>
<url>http://nicklothian.com</url> <url>http://nicklothian.com</url>
</developer> </developer>
<developer> <developer>
<name>Robert Cooper</name> <name>Robert Cooper</name>
<email>kebernet@gmail.comM</email> <email>kebernet@gmail.comM</email>
</developer> </developer>
</developers> </developers>
<repositories> <repositories>
<repository> <repository>
<id>sonatype-nexus-snapshots</id> <id>sonatype-nexus-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url> <url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases> <releases>
<enabled>false</enabled> <enabled>false</enabled>
</releases> </releases>
<snapshots> <snapshots>
<enabled>true</enabled> <enabled>true</enabled>
</snapshots> </snapshots>
</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>
<plugin> <plugin>
<groupId>org.apache.felix</groupId> <groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId> <artifactId>maven-bundle-plugin</artifactId>
<configuration> <configuration>
<instructions> <instructions>
<Export-Package> <Export-Package>
com.rometools.fetcher, com.rometools.fetcher,
com.rometools.fetcher.impl com.rometools.fetcher.impl
</Export-Package> </Export-Package>
<Import-Package> <Import-Package>
com.rometools.rome.feed.impl, com.rometools.rome.feed.impl,
com.rometools.rome.feed.synd, com.rometools.rome.feed.synd,
com.rometools.rome.io, com.rometools.rome.io,
com.rometools.utils, com.rometools.utils,
org.apache.commons.httpclient;resolution:=optional, org.apache.commons.httpclient;resolution:=optional,
org.apache.commons.httpclient.auth;resolution:=optional, org.apache.commons.httpclient.auth;resolution:=optional,
org.apache.commons.httpclient.methods;resolution:=optional, org.apache.commons.httpclient.methods;resolution:=optional,
org.apache.commons.httpclient.params;resolution:=optional, org.apache.commons.httpclient.params;resolution:=optional,
org.slf4j org.slf4j
</Import-Package> </Import-Package>
</instructions> </instructions>
</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> </dependency>
<version>1.6.0-SNAPSHOT</version> <dependency>
</dependency> <groupId>commons-httpclient</groupId>
<dependency> <artifactId>commons-httpclient</artifactId>
<groupId>commons-httpclient</groupId> <optional />
<artifactId>commons-httpclient</artifactId> </dependency>
<optional /> <dependency>
</dependency> <groupId>javax.servlet</groupId>
<dependency> <artifactId>servlet-api</artifactId>
<groupId>javax.servlet</groupId> <scope>test</scope>
<artifactId>servlet-api</artifactId> </dependency>
<scope>test</scope> <dependency>
</dependency> <groupId>jetty</groupId>
<dependency> <artifactId>jetty</artifactId>
<groupId>jetty</groupId> <scope>test</scope>
<artifactId>jetty</artifactId> </dependency>
<scope>test</scope> <dependency>
</dependency> <groupId>ch.qos.logback</groupId>
<dependency> <artifactId>logback-classic</artifactId>
<groupId>ch.qos.logback</groupId> <scope>test</scope>
<artifactId>logback-classic</artifactId> </dependency>
<scope>test</scope> <dependency>
</dependency> <groupId>junit</groupId>
<dependency> <artifactId>junit</artifactId>
<groupId>junit</groupId> <scope>test</scope>
<artifactId>junit</artifactId> </dependency>
<scope>test</scope> </dependencies>
</dependency>
</dependencies> </project>
</project>

View file

@ -1,119 +1,117 @@
<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>
<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-modules</artifactId> <artifactId>rome-modules</artifactId>
<version>1.6.0-SNAPSHOT</version> <packaging>jar</packaging>
<packaging>jar</packaging>
<name>rome-modules</name>
<name>rome-modules</name>
<description>Plugin collection for the ROME RSS and Atom Utilities</description>
<description>Plugin collection for the ROME RSS and Atom Utilities</description>
<url>http://rometools.github.io/rome-modules/</url>
<url>http://rometools.github.io/rome-modules/</url>
<scm>
<scm> <connection>scm:git:ssh://github.com/rometools/rome-modules.git</connection>
<connection>scm:git:ssh://github.com/rometools/rome-modules.git</connection> <developerConnection>scm:git:ssh://git@github.com/rometools/rome-modules.git</developerConnection>
<developerConnection>scm:git:ssh://git@github.com/rometools/rome-modules.git</developerConnection> <url>https://github.com/rometools/rome-modules</url>
<url>https://github.com/rometools/rome-modules</url> </scm>
</scm>
<developers>
<developers> <developer>
<developer> <id>kebernet</id>
<id>kebernet</id> <email>kebernet@gmail.com</email>
<email>kebernet@gmail.com</email> <name>Robert Cooper</name>
<name>Robert Cooper</name> </developer>
</developer> </developers>
</developers>
<repositories>
<repositories> <repository>
<repository> <id>sonatype-nexus-snapshots</id>
<id>sonatype-nexus-snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url>
<url>https://oss.sonatype.org/content/repositories/snapshots</url> <releases>
<releases> <enabled>false</enabled>
<enabled>false</enabled> </releases>
</releases> <snapshots>
<snapshots> <enabled>true</enabled>
<enabled>true</enabled> </snapshots>
</snapshots> </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> <plugin>
<plugin> <groupId>org.apache.felix</groupId>
<groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId>
<artifactId>maven-bundle-plugin</artifactId> <configuration>
<configuration> <instructions>
<instructions> <Export-Package>
<Export-Package> !com.rometools.modules.*.io,
!com.rometools.modules.*.io, com.rometools.modules.*,
com.rometools.modules.*, </Export-Package>
</Export-Package> <Import-Package>
<Import-Package> org.jdom2,
org.jdom2, org.jdom2.filter,
org.jdom2.filter, org.jdom2.input,
org.jdom2.input, org.jdom2.input.sax,
org.jdom2.input.sax, org.jdom2.output,
org.jdom2.output, org.slf4j,
org.slf4j, org.w3c.dom,
org.w3c.dom, org.xml.sax
org.xml.sax </Import-Package>
</Import-Package> <_exportcontents>
<_exportcontents> com.rometools.rome.feed,
com.rometools.rome.feed, com.rometools.rome.feed.atom,
com.rometools.rome.feed.atom, com.rometools.rome.feed.module,
com.rometools.rome.feed.module, com.rometools.rome.feed.rss,
com.rometools.rome.feed.rss, com.rometools.rome.feed.synd,
com.rometools.rome.feed.synd, com.rometools.rome.io,
com.rometools.rome.io, com.rometools.utils
com.rometools.utils </_exportcontents>
</_exportcontents> <Embed-Dependency>*;artifactId=rome|rome-utils</Embed-Dependency>
<Embed-Dependency>*;artifactId=rome|rome-utils</Embed-Dependency> <Embed-Transitive>true</Embed-Transitive>
<Embed-Transitive>true</Embed-Transitive> </instructions>
</instructions> </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> </dependency>
<version>1.6.0-SNAPSHOT</version> <dependency>
</dependency> <groupId>ch.qos.logback</groupId>
<dependency> <artifactId>logback-classic</artifactId>
<groupId>ch.qos.logback</groupId> <scope>test</scope>
<artifactId>logback-classic</artifactId> </dependency>
<scope>test</scope> <dependency>
</dependency> <groupId>junit</groupId>
<dependency> <artifactId>junit</artifactId>
<groupId>junit</groupId> <scope>test</scope>
<artifactId>junit</artifactId> </dependency>
<scope>test</scope> <dependency>
</dependency> <groupId>org.hamcrest</groupId>
<dependency> <artifactId>hamcrest-library</artifactId>
<groupId>org.hamcrest</groupId> <scope>test</scope>
<artifactId>hamcrest-library</artifactId> </dependency>
<scope>test</scope> </dependencies>
</dependency>
</dependencies> </project>
</project>

View file

@ -1,91 +1,89 @@
<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>
<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-opml</artifactId> <artifactId>rome-opml</artifactId>
<version>1.6.0-SNAPSHOT</version> <packaging>jar</packaging>
<packaging>jar</packaging>
<name>rome-opml</name>
<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>
<scm> <connection>scm:git:ssh://github.com/rometools/rome-opml.git</connection>
<connection>scm:git:ssh://github.com/rometools/rome-opml.git</connection> <developerConnection>scm:git:ssh://git@github.com/rometools/rome-opml.git</developerConnection>
<developerConnection>scm:git:ssh://git@github.com/rometools/rome-opml.git</developerConnection> <url>https://github.com/rometools/rome-opml</url>
<url>https://github.com/rometools/rome-opml</url> </scm>
</scm>
<developers>
<developers> <developer>
<developer> <id>kebernet</id>
<id>kebernet</id> <email>kebernet@gmail.com</email>
<email>kebernet@gmail.com</email> <name>Robert Cooper</name>
<name>Robert Cooper</name> </developer>
</developer> </developers>
</developers>
<repositories>
<repositories> <repository>
<repository> <id>sonatype-nexus-snapshots</id>
<id>sonatype-nexus-snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url>
<url>https://oss.sonatype.org/content/repositories/snapshots</url> <releases>
<releases> <enabled>false</enabled>
<enabled>false</enabled> </releases>
</releases> <snapshots>
<snapshots> <enabled>true</enabled>
<enabled>true</enabled> </snapshots>
</snapshots> </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> </dependency>
<version>1.6.0-SNAPSHOT</version> <dependency>
</dependency> <groupId>ch.qos.logback</groupId>
<dependency> <artifactId>logback-classic</artifactId>
<groupId>ch.qos.logback</groupId> <scope>test</scope>
<artifactId>logback-classic</artifactId> </dependency>
<scope>test</scope> <dependency>
</dependency> <groupId>junit</groupId>
<dependency> <artifactId>junit</artifactId>
<groupId>junit</groupId> <scope>test</scope>
<artifactId>junit</artifactId> </dependency>
<scope>test</scope> <dependency>
</dependency> <groupId>org.hamcrest</groupId>
<dependency> <artifactId>hamcrest-library</artifactId>
<groupId>org.hamcrest</groupId> </dependency>
<artifactId>hamcrest-library</artifactId> <dependency>
</dependency> <groupId>xmlunit</groupId>
<dependency> <artifactId>xmlunit</artifactId>
<groupId>xmlunit</groupId> <version>1.6</version>
<artifactId>xmlunit</artifactId> <scope>test</scope>
<version>1.6</version> </dependency>
<scope>test</scope> </dependencies>
</dependency>
</dependencies> </project>
</project>

View file

@ -1,122 +1,120 @@
<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>
<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> <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> <id>sonatype-nexus-snapshots</id>
<id>sonatype-nexus-snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url>
<url>https://oss.sonatype.org/content/repositories/snapshots</url> <releases>
<releases> <enabled>false</enabled>
<enabled>false</enabled> </releases>
</releases> <snapshots>
<snapshots> <enabled>true</enabled>
<enabled>true</enabled> </snapshots>
</snapshots> </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> </dependency>
<version>1.6.0-SNAPSHOT</version> <dependency>
</dependency> <groupId>commons-httpclient</groupId>
<dependency> <artifactId>commons-httpclient</artifactId>
<groupId>commons-httpclient</groupId> </dependency>
<artifactId>commons-httpclient</artifactId> <dependency>
</dependency> <groupId>org.apache.commons</groupId>
<dependency> <artifactId>commons-lang3</artifactId>
<groupId>org.apache.commons</groupId> </dependency>
<artifactId>commons-lang3</artifactId> <dependency>
</dependency> <groupId>commons-beanutils</groupId>
<dependency> <artifactId>commons-beanutils</artifactId>
<groupId>commons-beanutils</groupId> </dependency>
<artifactId>commons-beanutils</artifactId> <dependency>
</dependency> <groupId>org.apache.xmlrpc</groupId>
<dependency> <artifactId>xmlrpc-client</artifactId>
<groupId>org.apache.xmlrpc</groupId> </dependency>
<artifactId>xmlrpc-client</artifactId> <dependency>
</dependency> <groupId>net.oauth.core</groupId>
<dependency> <artifactId>oauth</artifactId>
<groupId>net.oauth.core</groupId> </dependency>
<artifactId>oauth</artifactId> <dependency>
</dependency> <groupId>javax.servlet</groupId>
<dependency> <artifactId>servlet-api</artifactId>
<groupId>javax.servlet</groupId> <scope>provided</scope>
<artifactId>servlet-api</artifactId> </dependency>
<scope>provided</scope> <dependency>
</dependency> <groupId>ch.qos.logback</groupId>
<dependency> <artifactId>logback-classic</artifactId>
<groupId>ch.qos.logback</groupId> <scope>test</scope>
<artifactId>logback-classic</artifactId> </dependency>
<scope>test</scope> <dependency>
</dependency> <groupId>junit</groupId>
<dependency> <artifactId>junit</artifactId>
<groupId>junit</groupId> <scope>test</scope>
<artifactId>junit</artifactId> </dependency>
<scope>test</scope> <dependency>
</dependency> <groupId>jetty</groupId>
<dependency> <artifactId>jetty</artifactId>
<groupId>jetty</groupId> <scope>test</scope>
<artifactId>jetty</artifactId> </dependency>
<scope>test</scope> </dependencies>
</dependency>
</dependencies> </project>
</project>

View file

@ -1,66 +1,65 @@
<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>
<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-utils</artifactId> <artifactId>rome-utils</artifactId>
<version>1.6.0-SNAPSHOT</version> <packaging>jar</packaging>
<packaging>jar</packaging>
<name>rome-utils</name>
<name>rome-utils</name>
<description>Utility classes for ROME projects</description>
<description>Utility classes for ROME projects</description>
<url>http://rometools.github.io/rome-utils/</url>
<url>http://rometools.github.io/rome-utils/</url>
<scm>
<scm> <connection>scm:git:ssh://github.com/rometools/rome-utils.git</connection>
<connection>scm:git:ssh://github.com/rometools/rome-utils.git</connection> <developerConnection>scm:git:ssh://git@github.com/rometools/rome-utils.git</developerConnection>
<developerConnection>scm:git:ssh://git@github.com/rometools/rome-utils.git</developerConnection> <url>https://github.com/rometools/rome-utils</url>
<url>https://github.com/rometools/rome-utils</url> </scm>
</scm>
<developers>
<developers> <developer>
<developer> <name>Patrick Gotthard</name>
<name>Patrick Gotthard</name> <url>http://www.patrick-gotthard.de</url>
<url>http://www.patrick-gotthard.de</url> <timezone>+1</timezone>
<timezone>+1</timezone> </developer>
</developer> </developers>
</developers>
<repositories>
<repositories> <repository>
<repository> <id>sonatype-nexus-snapshots</id>
<id>sonatype-nexus-snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url>
<url>https://oss.sonatype.org/content/repositories/snapshots</url> <releases>
<releases> <enabled>false</enabled>
<enabled>false</enabled> </releases>
</releases> <snapshots>
<snapshots> <enabled>true</enabled>
<enabled>true</enabled> </snapshots>
</snapshots> </repository>
</repository> </repositories>
</repositories>
<dependencies>
<dependencies> <dependency>
<dependency> <groupId>org.slf4j</groupId>
<groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId>
<artifactId>slf4j-api</artifactId> </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>org.hamcrest</groupId>
<groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId>
<artifactId>hamcrest-library</artifactId> <scope>test</scope>
<scope>test</scope> </dependency>
</dependency> </dependencies>
</dependencies>
</project> </project>

View file

@ -1,161 +1,159 @@
<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>
<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</artifactId> <artifactId>rome</artifactId>
<version>1.6.0-SNAPSHOT</version> <packaging>jar</packaging>
<packaging>jar</packaging>
<name>rome</name>
<name>rome</name>
<description>All Roads Lead to ROME. ROME is a set of Atom/RSS Java utilities that make it
<description>All Roads Lead to ROME. ROME is a set of Atom/RSS Java utilities that make it easy to work in Java with most syndication formats. Today it accepts all flavors of RSS
easy to work in Java with most syndication formats. Today it accepts all flavors of RSS (0.90, 0.91, 0.92, 0.93, 0.94, 1.0 and 2.0), Atom 0.3 and Atom 1.0 feeds. Rome includes
(0.90, 0.91, 0.92, 0.93, 0.94, 1.0 and 2.0), Atom 0.3 and Atom 1.0 feeds. Rome includes a set of parsers and generators for the various flavors of feeds, as well as converters
a set of parsers and generators for the various flavors of feeds, as well as converters to convert from one format to another. The parsers can give you back Java objects that
to convert from one format to another. The parsers can give you back Java objects that are either specific for the format you want to work with, or a generic normalized
are either specific for the format you want to work with, or a generic normalized SyndFeed object that lets you work on with the data without bothering about the
SyndFeed object that lets you work on with the data without bothering about the underlying format.
underlying format. </description>
</description>
<url>http://rometools.github.io/rome/</url>
<url>http://rometools.github.io/rome/</url>
<scm>
<scm> <connection>scm:git:ssh://github.com/rometools/rome.git</connection>
<connection>scm:git:ssh://github.com/rometools/rome.git</connection> <developerConnection>scm:git:ssh://git@github.com/rometools/rome.git</developerConnection>
<developerConnection>scm:git:ssh://git@github.com/rometools/rome.git</developerConnection> <url>https://github.com/rometools/rome</url>
<url>https://github.com/rometools/rome</url> </scm>
</scm>
<developers>
<developers> <developer>
<developer> <name>Alejandro Abdelnur</name>
<name>Alejandro Abdelnur</name> <url>http://blog.sun.com/roller/page/tucu</url>
<url>http://blog.sun.com/roller/page/tucu</url> <timezone>0</timezone>
<timezone>0</timezone> </developer>
</developer> <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>Elaine Chien</name>
<name>Elaine Chien</name> <timezone>0</timezone>
<timezone>0</timezone> </developer>
</developer> <developer>
<developer> <name>Patrick Chanezon</name>
<name>Patrick Chanezon</name> <url>http://www.chanezon.com/pat/weblog</url>
<url>http://www.chanezon.com/pat/weblog</url> <timezone>-9</timezone>
<timezone>-9</timezone> </developer>
</developer> <developer>
<developer> <name>Patrick Gotthard</name>
<name>Patrick Gotthard</name> <url>http://www.patrick-gotthard.de</url>
<url>http://www.patrick-gotthard.de</url> <timezone>+1</timezone>
<timezone>+1</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> <developer>
<developer> <id>farrukhnajmi</id>
<id>farrukhnajmi</id> <name>Farrukh Najmi</name>
<name>Farrukh Najmi</name> <url>http://www.wellfleetsoftware.com/farrukh</url>
<url>http://www.wellfleetsoftware.com/farrukh</url> </developer>
</developer> <developer>
<developer> <id>imk</id>
<id>imk</id> <name>Martin Kurz</name>
<name>Martin Kurz</name> <timezone>Europe/Berlin</timezone>
<timezone>Europe/Berlin</timezone> </developer>
</developer> </developers>
</developers>
<repositories>
<repositories> <repository>
<repository> <id>sonatype-nexus-snapshots</id>
<id>sonatype-nexus-snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url>
<url>https://oss.sonatype.org/content/repositories/snapshots</url> <releases>
<releases> <enabled>false</enabled>
<enabled>false</enabled> </releases>
</releases> <snapshots>
<snapshots> <enabled>true</enabled>
<enabled>true</enabled> </snapshots>
</snapshots> </repository>
</repository> </repositories>
</repositories>
<build>
<build> <plugins>
<plugins> <plugin>
<plugin> <groupId>org.apache.maven.plugins</groupId>
<groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId>
<artifactId>maven-jar-plugin</artifactId> <version>2.4</version>
<version>2.4</version> <configuration>
<configuration> <archive>
<archive> <manifest>
<manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> </manifest>
</manifest> </archive>
</archive> </configuration>
</configuration> </plugin>
</plugin> <plugin>
<plugin> <groupId>org.apache.maven.plugins</groupId>
<groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId>
<artifactId>maven-site-plugin</artifactId> <dependencies>
<dependencies> <dependency>
<dependency> <groupId>org.apache.maven.doxia</groupId>
<groupId>org.apache.maven.doxia</groupId> <artifactId>doxia-module-markdown</artifactId>
<artifactId>doxia-module-markdown</artifactId> <version>1.5</version>
<version>1.5</version> </dependency>
</dependency> <dependency>
<dependency> <groupId>org.apache.maven.doxia</groupId>
<groupId>org.apache.maven.doxia</groupId> <artifactId>doxia-module-confluence</artifactId>
<artifactId>doxia-module-confluence</artifactId> <version>1.5</version>
<version>1.5</version> </dependency>
</dependency> </dependencies>
</dependencies> </plugin>
</plugin> <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-utils</artifactId>
<artifactId>rome-utils</artifactId> </dependency>
<version>1.6.0-SNAPSHOT</version> <dependency>
</dependency> <groupId>org.jdom</groupId>
<dependency> <artifactId>jdom2</artifactId>
<groupId>org.jdom</groupId> </dependency>
<artifactId>jdom2</artifactId> <dependency>
</dependency> <groupId>org.slf4j</groupId>
<dependency> <artifactId>slf4j-api</artifactId>
<groupId>org.slf4j</groupId> </dependency>
<artifactId>slf4j-api</artifactId> <dependency>
</dependency> <groupId>ch.qos.logback</groupId>
<dependency> <artifactId>logback-classic</artifactId>
<groupId>ch.qos.logback</groupId> <scope>test</scope>
<artifactId>logback-classic</artifactId> </dependency>
<scope>test</scope> <dependency>
</dependency> <groupId>junit</groupId>
<dependency> <artifactId>junit</artifactId>
<groupId>junit</groupId> <scope>test</scope>
<artifactId>junit</artifactId> </dependency>
<scope>test</scope> </dependencies>
</dependency>
</dependencies> </project>
</project>