add site and other fixes

git-svn-id: https://svn.apache.org/repos/asf/maven/repository-manager/trunk@409500 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Porter 2006-05-25 23:10:58 +00:00
parent e3fbffbb75
commit a73a617326
6 changed files with 78 additions and 21 deletions

View File

@ -39,9 +39,6 @@
<id>apache.snapshots</id>
<name>Apache Snapshot Repository</name>
<url>http://svn.apache.org/maven-snapshot-repository</url>
<releases>
<enabled>false</enabled>
</releases>
</pluginRepository>
</pluginRepositories>
</project>

View File

@ -0,0 +1,23 @@
<?xml version="1.0"?><project>
<parent>
<artifactId>maven-repository-manager</artifactId>
<groupId>org.apache.maven.repository</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.maven.repository</groupId>
<artifactId>maven-repository-manager-site</artifactId>
<packaging>pom</packaging>
<name>Maven Repository Manager</name>
<scm>
<connection>scm:svn:http://svn.apache.org/repos/asf/maven/repository-manager/trunk</connection>
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/repository-manager/trunk</developerConnection>
<url>http://svn.apache.org/viewcvs.cgi/maven/repository-manager/trunk</url>
</scm>
<distributionManagement>
<site>
<id>apache.website</id>
<url>scp://minotaur.apache.org/www/maven.apache.org/repository-manager/</url>
</site>
</distributionManagement>
</project>

View File

@ -0,0 +1,26 @@
-----
Maven Repository Manager
-----
Brett Porter
-----
25 May 2006
-----
Maven Repository Manager
The Maven Repository Manager is currently under development. It provides several pieces of functionality for your remote repository:
* Browsing on POM information by group and artifact ID
* Search over various information in the POM and filename
* Locate JAR by checksum
* Repository management through reporting and maintenance
We welcome developers to the Maven community who are interested in contributing. If you'd like to discuss the Maven Repository manager, subscribe and post to
{{{/mail-lists.html} the development mailing list}}, <<<dev@maven.apache.org>>>.
If you'd like to obtain the code, you can get it from Subversion. See {{{source-repository.html} SCM details}} for more information.

View File

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<project>
<body>
<links>
<item name="Maven" href="http://maven.apache.org/"/>
</links>
<menu ref="reports" />
</body>
<skin>
<groupId>org.apache.maven.skins</groupId>
<artifactId>maven-stylus-skin</artifactId>
</skin>
<publishDate format="dd MMM yyyy" />
<bannerLeft>
<name>Maven</name>
<src>http://maven.apache.org/images/apache-maven-project-2.png</src>
<href>http://maven.apache.org/</href>
</bannerLeft>
<bannerRight>
<src>http://maven.apache.org/images/maven-logo-2.gif</src>
</bannerRight>
</project>

View File

@ -13,7 +13,7 @@
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-xwork-integration</artifactId>
<version>1.0-alpha-1-SNAPSHOT</version>
<version>1.0-alpha-1</version>
</dependency>
<dependency>
<groupId>org.apache.maven.repository</groupId>
@ -41,6 +41,7 @@
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>maven-jetty6-plugin</artifactId>
<version>6.0.0beta6</version>
<configuration>
<webAppSourceDirectory>${basedir}/target/${artifactId}</webAppSourceDirectory>
<scanIntervalSeconds>10</scanIntervalSeconds>
@ -72,11 +73,4 @@
</plugin>
</plugins>
</build>
<!-- For plexus xwork -->
<repositories>
<repository>
<id>snapshots</id>
<url>http://snapshots.maven.codehaus.org/maven2</url>
</repository>
</repositories>
</project>

13
pom.xml
View File

@ -1,3 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright 2005-2006 The Apache Software Foundation.
~
@ -12,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>
--><project>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.maven</groupId>
@ -104,6 +103,7 @@
<module>maven-repository-utils</module>
<module>maven-repository-webapp</module>
<module>maven-repository-proxy</module>
<module>maven-repository-manager-site</module>
</modules>
<dependencies>
<dependency>
@ -197,12 +197,6 @@
</dependency>
</dependencies>
</dependencyManagement>
<distributionManagement>
<site>
<id>website</id>
<url>scp://minotaur.apache.org/www/maven.apache.org/repository-manager/</url>
</site>
</distributionManagement>
<reporting>
<plugins>
<!-- TODO: should be omitted when there are no tests to run -->
@ -245,4 +239,3 @@
</plugins>
</reporting>
</project>