ROME, RSS and atOM utilitiEs for Java.
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 (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....
Here is the list of declaration for rome. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>rome</groupId> <artifactId>rome</artifactId> <version>1.0</version> </dependency>
If you think this Maven repository POM file listing for rome is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The rome-1.0 has 2 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
JUnit | junit 3.8.2 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 555 |
The following table lists the most popular artifacts which are depending on rome-1.0. Their categories and depend by count are also listed.
The following plugins are used in the rome-1.0.jar
The following packages are defined in the rome-1.0.jar
com.sun.syndication.feed com.sun.syndication.feed.atom com.sun.syndication.feed.impl com.sun.syndication.feed.module com.sun.syndication.feed.module.impl com.sun.syndication.feed.rss com.sun.syndication.feed.synd com.sun.syndication.feed.synd.impl com.sun.syndication.io com.sun.syndication.io.impl
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <project> <modelVersion>4.0.0</modelVersion> <groupId>rome</groupId> <artifactId>rome</artifactId> <name>ROME, RSS and atOM utilitiEs for Java</name> <version>1.0</version> <packaging>jar</packaging> <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 (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 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 SyndFeed object that lets you work on with the data without bothering about the underlying format. </description> <url>https://rome.dev.java.net/</url> <issueManagement> <url>https://rome.dev.java.net/servlets/ProjectIssues</url> </issueManagement> <ciManagement> <notifiers> <notifier> <configuration> <address>dev@rome.dev.java.net</address> </configuration> </notifier> </notifiers> </ciManagement> <inceptionYear>2004</inceptionYear> <mailingLists> <mailingList> <name>dev@rome.dev.java.net</name> <subscribe> https://rome.dev.java.net/servlets/ProjectMailingListList</subscribe> <unsubscribe> https://rome.dev.java.net/servlets/ProjectMailingListList</unsubscribe> <archive> https://rome.dev.java.net/servlets/SummarizeList?listName=dev</archive> </mailingList> </mailingLists> <scm> <connection> scm:cvs:pserver:guest@cvs.dev.java.net:/cvs:rome</connection> <url>https://rome.dev.java.net/source/browse/rome/</url> </scm> <organization> <name>Sun Microsystems</name> <url>http://java.sun.com/</url> </organization> <repositories> <repository> <id>maven2-repository.dev.java.net</id> <name>Java.net Repository for Maven</name> <url>http://download.java.net/maven/2/</url> </repository> </repositories> <build> <defaultGoal>install</defaultGoal> <sourceDirectory>src/java</sourceDirectory> <testSourceDirectory>src/test</testSourceDirectory> <resources> <resource> <directory>src/java</directory> <includes> <include>**/*.properties</include> </includes> </resource> </resources> <testResources> <testResource> <directory>${basedir}/src/data</directory> <includes> <include>**/*.xml</include> </includes> </testResource> <testResource> <directory>src/test</directory> <includes> <include>rome.properties</include> </includes> </testResource> </testResources> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.4</source> <target>1.4</target> </configuration> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <excludePackageNames> com.sun.syndication.feed.impl,com.sun.syndication.feed.module.impl,com.sun.syndication.feed.synd.impl,com.sun.syndication.io.impl</excludePackageNames> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <includes> <include>**/Test*.java</include> </includes> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestFile> ${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <configuration> <instructions> <Private-Package></Private-Package> <Export-Package>com.sun.syndication.*</Export-Package> <Import-Package> oracle.*;resolution:=optional,org.jaxen*;resolution:=optional,org.jdom.*;resolution:=optional,*</Import-Package> <Embed-Dependency> *;scope=compile|runtime;inline=false</Embed-Dependency> <Embed-Transitive>true</Embed-Transitive> <Embed-Directory>META-INF/lib</Embed-Directory> <Bundle-ClassPath> .,{maven-dependencies}</Bundle-ClassPath> <Include-Resource> {maven-resources},{maven-dependencies}</Include-Resource> </instructions> </configuration> <executions> <execution> <id>bundle-manifest</id> <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> <extensions> <extension> <groupId>org.jvnet.wagon-svn</groupId> <artifactId>wagon-svn</artifactId> <version>RELEASE</version> </extension> </extensions> </build> <dependencies> <dependency> <groupId>jdom</groupId> <artifactId>jdom</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.2</version> <scope>test</scope> </dependency> </dependencies> <reporting> <plugins> <plugin> <artifactId>maven-changes-plugin</artifactId> <configuration> <xmlPath>${basedir}/xdocs/changes.xml</xmlPath> </configuration> </plugin> </plugins> </reporting> <distributionManagement> <repository> <id>java.net-m2-repository</id> <url>java-net:/maven2-repository/trunk/repository/</url> </repository> </distributionManagement> </project>