Skip to content

Commit

Permalink
merging back from my branch (in preparation for final tidy-up and fin…
Browse files Browse the repository at this point in the history
…ishing refactoring)

git-svn-id: file:///home/tiste/MOJOHAUS-TO-GIT/SVN-MOJO-WIP/trunk/mojo/versions-maven-plugin@9262 52ab4f32-60fc-0310-b215-8acea882cd1b
  • Loading branch information
stephenc committed Mar 21, 2009
1 parent e450889 commit b0b1cda
Show file tree
Hide file tree
Showing 36 changed files with 3,860 additions and 385 deletions.
79 changes: 70 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<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>
Expand Down Expand Up @@ -31,9 +32,9 @@
</issueManagement>

<scm>
<connection>scm:svn:http://svn.codehaus.org/mojo/trunk/mojo/versions-maven-plugin</connection>
<developerConnection>scm:svn:https://svn.codehaus.org/mojo/trunk/mojo/versions-maven-plugin</developerConnection>
<url>http://fisheye.codehaus.org/browse/mojo/trunk/mojo/versions-maven-plugin</url>
<connection>scm:svn:https://svn.codehaus.org/mojo/branches/stephenconnolly/versions-maven-plugin</connection>
<developerConnection>scm:svn:https://svn.codehaus.org/mojo/branches/stephenconnolly/versions-maven-plugin</developerConnection>
<url>https://svn.codehaus.org/mojo/branches/stephenconnolly/versions-maven-plugin</url>
</scm>

<developers>
Expand All @@ -51,6 +52,12 @@
<maven>2.0.6</maven>
</prerequisites>

<properties>
<doxiaVersion>1.0-alpha-11</doxiaVersion>
<doxia-sitetoolsVersion>1.0-alpha-11</doxia-sitetoolsVersion>
<pluginVersion>${project.version}</pluginVersion>
</properties>

<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
Expand Down Expand Up @@ -97,11 +104,46 @@
<artifactId>maven-reporting-impl</artifactId>
<version>2.0.4.1</version>
</dependency>

<!-- Doxia -->
<dependency>
<groupId>org.apache.maven.doxia</groupId>
<artifactId>doxia-core</artifactId>
<version>${doxiaVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.maven.doxia</groupId>
<artifactId>doxia-module-xhtml</artifactId>
<version>${doxiaVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.maven.doxia</groupId>
<artifactId>doxia-sink-api</artifactId>
<version>1.0-alpha-7</version>
<version>${doxiaVersion}</version>
</dependency>

<!-- Doxia-sitetools -->
<dependency>
<groupId>org.apache.maven.doxia</groupId>
<artifactId>doxia-decoration-model</artifactId>
<version>${doxia-sitetoolsVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.maven.doxia</groupId>
<artifactId>doxia-site-renderer</artifactId>
<version>${doxia-sitetoolsVersion}</version>
<exclusions>
<exclusion>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-container-default</artifactId>
</exclusion>
<exclusion>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-component-api</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
Expand Down Expand Up @@ -132,6 +174,29 @@

<build>
<plugins>
<plugin>
<groupId>org.codehaus.modello</groupId>
<artifactId>modello-maven-plugin</artifactId>
<version>1.0.1</version>
<executions>
<execution>
<goals>
<!-- Generate the xpp3 reader code -->
<goal>xpp3-reader</goal>
<!-- Generate the xpp3 writer code -->
<goal>xpp3-writer</goal>
<!-- Generate the Java sources for the model itself -->
<goal>java</goal>
</goals>
</execution>
</executions>
<configuration>
<models>
<model>src/main/mdo/rule.mdo</model>
</models>
<version>1.0.0</version>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-invoker-plugin</artifactId>
Expand Down Expand Up @@ -262,8 +327,4 @@
</build>
</profile>
</profiles>

<properties>
<pluginVersion>${project.version}</pluginVersion>
</properties>
</project>
1 change: 1 addition & 0 deletions rules.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<ruleset comparisonMethod="maven"/>
Loading

0 comments on commit b0b1cda

Please sign in to comment.