Skip to content
This repository has been archived by the owner on Aug 11, 2020. It is now read-only.

Commit

Permalink
updated plexus version for the nexus-indexer component
Browse files Browse the repository at this point in the history
git-svn-id: file:///opt/svn/repositories/sonatype.org/nexus/trunk/nexus-indexer@3071 2aa8b3fc-8ebb-4439-a84f-95066eaea8ab
  • Loading branch information
eu committed Jan 21, 2009
1 parent 6c9bf0a commit ff70fa5
Show file tree
Hide file tree
Showing 3 changed files with 101 additions and 2 deletions.
9 changes: 7 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
<properties>
<maven.version>2.1-SONATYPE-653485</maven.version>
<maven.artifact.version>3.0-SONATYPE-653272</maven.artifact.version>
<archetype.version>2.0-alpha-1</archetype.version>
</properties>

<!-- override the snapshot included in Maven -->
Expand All @@ -35,6 +36,11 @@
<artifactId>xbean-reflect</artifactId>
<version>3.4</version>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-container-default</artifactId>
<version>1.0-beta-3.0.5-SNAPSHOT</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand All @@ -43,7 +49,6 @@
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-container-default</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
Expand Down Expand Up @@ -86,7 +91,7 @@
<dependency>
<groupId>org.apache.maven.archetype</groupId>
<artifactId>archetype-common</artifactId>
<version>2.0-alpha-1</version>
<version>${archetype.version}</version>
<exclusions>
<exclusion>
<groupId>org.apache.maven</groupId>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
<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>
<groupId>ch.marcus-schulte.maven</groupId>
<artifactId>hivedoc-plugin</artifactId>
<packaging>maven-plugin</packaging>
<version>1.0.0</version>
<name>hivedoc-plugin for Maven</name>
<description>A plugin to generate Maven-site-docs for HiveMind descriptors</description>
<url>http://www.marcus-schulte.ch</url>
<developers>
<developer>
<id>MS</id>
<name>Marcus Schulte</name>
<email>marcus-schulte@s-i.ch</email>
</developer>
</developers>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:svn:http://svn.javaforge.com/svn/</connection>
<url>http://svn.javaforge.com/svn/</url>
</scm>
<organization>
<name>marcus-schulte</name>
<url>http://marcus-schulte.ch</url>
</organization>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>xom</groupId>
<artifactId>xom</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-model</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>org.apache.maven.reporting</groupId>
<artifactId>maven-reporting-impl</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>org.apache.maven.doxia</groupId>
<artifactId>doxia-site-renderer</artifactId>
<version>1.0-alpha-8</version>
</dependency>
<dependency>
<groupId>org.apache.maven.doxia</groupId>
<artifactId>doxia-sink-api</artifactId>
<version>1.0-alpha-8</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>

<distributionManagement>
<repository>
<id>myrepo</id>
<name>Local Repository</name>
<url>file:/Users/marcus/Honeycombrepo</url>
</repository>
<site>
<url>file:/Users/marcus/hivedocsite</url>
</site>
</distributionManagement>
</project>

0 comments on commit ff70fa5

Please sign in to comment.