[MRM-123]

-move the rss classes to it's own module


git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@644151 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Maria Odea B. Ching 2008-04-03 03:42:59 +00:00
parent ab7e4fad1d
commit ff44aa71b4
6 changed files with 44 additions and 18 deletions

View File

@ -63,22 +63,12 @@
<artifactId>xalan</artifactId>
<version>2.7.0</version>
</dependency>
<dependency>
<groupId>rome</groupId>
<artifactId>rome</artifactId>
<version>0.9</version>
</dependency>
<dependency>
<groupId>dom4j</groupId>
<artifactId>dom4j</artifactId>
<version>1.6.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>xmlunit</groupId>
<artifactId>xmlunit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>

View File

@ -0,0 +1,37 @@
<?xml version="1.0"?><project>
<parent>
<artifactId>archiva-web</artifactId>
<groupId>org.apache.archiva</groupId>
<version>1.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>archiva-rss</artifactId>
<name>Archiva Web :: RSS</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>rome</groupId>
<artifactId>rome</artifactId>
<version>0.9</version>
</dependency>
<dependency>
<groupId>xmlunit</groupId>
<artifactId>xmlunit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>

View File

@ -1,4 +1,4 @@
package org.apache.maven.archiva.common.rss;
package org.apache.archiva.rss;
/*
* Licensed to the Apache Software Foundation (ASF) under one

View File

@ -1,4 +1,4 @@
package org.apache.maven.archiva.common.rss;
package org.apache.archiva.rss;
/*
* Licensed to the Apache Software Foundation (ASF) under one
@ -42,7 +42,7 @@ import com.sun.syndication.io.SyndFeedOutput;
/**
* Generates RSS feeds.
*
* @plexus.component role="org.apache.maven.archiva.common.rss.RssFeedGenerator"
* @plexus.component role="org.apache.archiva.rss.RssFeedGenerator"
*
* @author <a href="mailto:oching@apache.org">Maria Odea Ching</a>
* @version

View File

@ -1,4 +1,4 @@
package org.apache.maven.archiva.common.rss;
package org.apache.archiva.rss;
/*
* Licensed to the Apache Software Foundation (ASF) under one

View File

@ -13,9 +13,7 @@
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<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>
<parent>
<groupId>org.apache.archiva</groupId>
@ -34,6 +32,7 @@
<module>archiva-security</module>
<module>archiva-webapp</module>
<module>archiva-webdav</module>
<module>archiva-rss</module>
</modules>
<profiles>