forked from liferay/liferay-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
91333e4
commit a25c72e
Showing
8 changed files
with
359 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<ivy-module version="2.0" xmlns:m="http://ant.apache.org/ivy/maven"> | ||
<info organisation="jdom" | ||
module="jdom" | ||
revision="1.0" | ||
status="release" | ||
publication="20051222042056" | ||
> | ||
<description homepage="" /> | ||
</info> | ||
<configurations> | ||
<conf name="default" visibility="public" description="runtime dependencies and master artifact can be used with this conf" extends="runtime,master"/> | ||
<conf name="master" visibility="public" description="contains only the artifact published by this module itself, with no transitive dependencies"/> | ||
<conf name="compile" visibility="public" description="this is the default scope, used if none is specified. Compile dependencies are available in all classpaths."/> | ||
<conf name="provided" visibility="public" description="this is much like compile, but indicates you expect the JDK or a container to provide it. It is only available on the compilation classpath, and is not transitive."/> | ||
<conf name="runtime" visibility="public" description="this scope indicates that the dependency is not required for compilation, but is for execution. It is in the runtime and test classpaths, but not the compile classpath." extends="compile"/> | ||
<conf name="test" visibility="private" description="this scope indicates that the dependency is not required for normal use of the application, and is only available for the test compilation and execution phases." extends="runtime"/> | ||
<conf name="system" visibility="public" description="this scope is similar to provided except that you have to provide the JAR which contains it explicitly. The artifact is always available and is not looked up in a repository."/> | ||
<conf name="sources" visibility="public" description="this configuration contains the source artifact of this module, if any."/> | ||
<conf name="javadoc" visibility="public" description="this configuration contains the javadoc artifact of this module, if any."/> | ||
<conf name="optional" visibility="public" description="contains all optional dependencies"/> | ||
</configurations> | ||
<publications> | ||
<artifact name="jdom" type="jar" ext="jar" conf="master"/> | ||
<artifact name="jdom" type="source" ext="jar" conf="sources" m:classifier="sources"/> | ||
</publications> | ||
<dependencies> | ||
<dependency org="xerces" name="xercesImpl" rev="2.6.0" force="true" conf="optional->compile(*),master(*)"/> | ||
<dependency org="xml-apis" name="xml-apis" rev="1.0.b2" force="true" conf="optional->compile(*),master(*)"/> | ||
<dependency org="jaxen" name="jaxen" rev="1.0-FCS" force="true" conf="optional->compile(*),master(*)"/> | ||
<dependency org="saxpath" name="saxpath" rev="1.0-FCS" force="true" conf="optional->compile(*),master(*)"/> | ||
<dependency org="xalan" name="xalan" rev="2.5.0" force="true" conf="optional->compile(*),master(*)"/> | ||
</dependencies> | ||
</ivy-module> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<project> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>jdom</groupId> | ||
<artifactId>jdom</artifactId> | ||
<version>1.0</version> | ||
<dependencies> | ||
<dependency> | ||
<groupId>xerces</groupId> | ||
<artifactId>xercesImpl</artifactId> | ||
<version>2.6.0</version> | ||
<optional>true</optional> | ||
</dependency> | ||
<dependency> | ||
<groupId>xml-apis</groupId> | ||
<artifactId>xml-apis</artifactId> | ||
<version>1.0.b2</version> | ||
<optional>true</optional> | ||
</dependency> | ||
<!-- should be replaced jaxen-jdom provided with jdom --> | ||
<dependency> | ||
<groupId>jaxen</groupId> | ||
<artifactId>jaxen</artifactId> | ||
<version>1.0-FCS</version> | ||
<optional>true</optional> | ||
</dependency> | ||
<dependency> | ||
<groupId>saxpath</groupId> | ||
<artifactId>saxpath</artifactId> | ||
<version>1.0-FCS</version> | ||
<optional>true</optional> | ||
</dependency> | ||
<!-- should be replaced by xalan.jar from jdom, their version was 2.5.D1 --> | ||
<dependency> | ||
<groupId>xalan</groupId> | ||
<artifactId>xalan</artifactId> | ||
<version>2.5.0</version> | ||
<optional>true</optional> | ||
</dependency> | ||
</dependencies> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#ivy cached data file for jdom#jdom;1.0 | ||
artifact.resolver=default | ||
artifact\:ivy\#ivy\#xml\#-897458026.exists=true | ||
artifact\:ivy\#ivy\#xml\#-897458026.is-local=false | ||
artifact\:ivy\#ivy\#xml\#-897458026.location=http\://cdn.repository.liferay.com/nexus/content/groups/public/jdom/jdom/1.0/jdom-1.0.pom | ||
artifact\:jdom\#jar\#jar\#-875810887.exists=true | ||
artifact\:jdom\#jar\#jar\#-875810887.is-local=false | ||
artifact\:jdom\#jar\#jar\#-875810887.location=http\://cdn.repository.liferay.com/nexus/content/groups/public/jdom/jdom/1.0/jdom-1.0.jar | ||
artifact\:jdom\#pom.original\#pom\#776751775.exists=true | ||
artifact\:jdom\#pom.original\#pom\#776751775.is-local=false | ||
artifact\:jdom\#pom.original\#pom\#776751775.location=http\://cdn.repository.liferay.com/nexus/content/groups/public/jdom/jdom/1.0/jdom-1.0.pom | ||
resolver=liferay-public |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<ivy-module version="2.0" xmlns:m="http://ant.apache.org/ivy/maven"> | ||
<info organisation="rome" | ||
module="rome" | ||
revision="1.0" | ||
status="release" | ||
publication="20100519174733" | ||
> | ||
<description homepage="https://rome.dev.java.net/"> | ||
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> | ||
<m:maven.plugins>null__maven-compiler-plugin__null|null__maven-javadoc-plugin__null|null__maven-surefire-plugin__null|null__maven-jar-plugin__null|org.apache.felix__maven-bundle-plugin__null|org.apache.maven.plugins__maven-source-plugin__null|org.apache.maven.plugins__maven-javadoc-plugin__null</m:maven.plugins> | ||
</info> | ||
<configurations> | ||
<conf name="default" visibility="public" description="runtime dependencies and master artifact can be used with this conf" extends="runtime,master"/> | ||
<conf name="master" visibility="public" description="contains only the artifact published by this module itself, with no transitive dependencies"/> | ||
<conf name="compile" visibility="public" description="this is the default scope, used if none is specified. Compile dependencies are available in all classpaths."/> | ||
<conf name="provided" visibility="public" description="this is much like compile, but indicates you expect the JDK or a container to provide it. It is only available on the compilation classpath, and is not transitive."/> | ||
<conf name="runtime" visibility="public" description="this scope indicates that the dependency is not required for compilation, but is for execution. It is in the runtime and test classpaths, but not the compile classpath." extends="compile"/> | ||
<conf name="test" visibility="private" description="this scope indicates that the dependency is not required for normal use of the application, and is only available for the test compilation and execution phases." extends="runtime"/> | ||
<conf name="system" visibility="public" description="this scope is similar to provided except that you have to provide the JAR which contains it explicitly. The artifact is always available and is not looked up in a repository."/> | ||
<conf name="sources" visibility="public" description="this configuration contains the source artifact of this module, if any."/> | ||
<conf name="javadoc" visibility="public" description="this configuration contains the javadoc artifact of this module, if any."/> | ||
<conf name="optional" visibility="public" description="contains all optional dependencies"/> | ||
</configurations> | ||
<publications> | ||
<artifact name="rome" type="jar" ext="jar" conf="master"/> | ||
<artifact name="rome" type="source" ext="jar" conf="sources" m:classifier="sources"/> | ||
<artifact name="rome" type="javadoc" ext="jar" conf="javadoc" m:classifier="javadoc"/> | ||
</publications> | ||
<dependencies> | ||
<dependency org="jdom" name="jdom" rev="1.0" force="true" conf="compile->compile(*),master(*);runtime->runtime(*)"/> | ||
<dependency org="junit" name="junit" rev="3.8.2" force="true" conf="test->runtime(*),master(*)"/> | ||
</dependencies> | ||
</ivy-module> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,219 @@ | ||
<?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> | ||
<developers> | ||
<developer> | ||
<name>Alejandro Abdelnur</name> | ||
<url>http://blog.sun.com/roller/page/tucu/</url> | ||
<timezone>0</timezone> | ||
</developer> | ||
<developer> | ||
<name>Elaine Chien</name> | ||
<timezone>0</timezone> | ||
</developer> | ||
<developer> | ||
<name>Patrick Chanezon</name> | ||
<url>http://www.chanezon.com/pat/weblog/</url> | ||
<timezone>-9</timezone> | ||
</developer> | ||
</developers> | ||
<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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#ivy cached data file for rome#rome;1.0 | ||
artifact.resolver=default | ||
artifact\:ivy\#ivy\#xml\#1252245778.exists=true | ||
artifact\:ivy\#ivy\#xml\#1252245778.is-local=false | ||
artifact\:ivy\#ivy\#xml\#1252245778.location=http\://cdn.repository.liferay.com/nexus/content/groups/public/rome/rome/1.0/rome-1.0.pom | ||
artifact\:rome\#jar\#jar\#1614539818.exists=true | ||
artifact\:rome\#jar\#jar\#1614539818.is-local=false | ||
artifact\:rome\#jar\#jar\#1614539818.location=http\://cdn.repository.liferay.com/nexus/content/groups/public/rome/rome/1.0/rome-1.0.jar | ||
artifact\:rome\#pom.original\#pom\#-1027864816.exists=true | ||
artifact\:rome\#pom.original\#pom\#-1027864816.is-local=false | ||
artifact\:rome\#pom.original\#pom\#-1027864816.location=http\://cdn.repository.liferay.com/nexus/content/groups/public/rome/rome/1.0/rome-1.0.pom | ||
resolver=liferay-public |
Binary file not shown.