You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2011/03/04 00:13:11 UTC

svn commit: r1076877 - in /maven/plugins/branches/MSITE-560: ./ reporting-exec/ reporting-exec/src/ reporting-exec/src/main/ reporting-exec/src/main/java/ reporting-exec/src/main/java/org/ reporting-exec/src/main/java/org/apache/ reporting-exec/src/mai...

Author: hboutemy
Date: Thu Mar  3 23:13:10 2011
New Revision: 1076877

URL: http://svn.apache.org/viewvc?rev=1076877&view=rev
Log:
refactoring: extracted maven-reporting-exec component

Added:
    maven/plugins/branches/MSITE-560/reporting-exec/   (with props)
    maven/plugins/branches/MSITE-560/reporting-exec/pom.xml   (with props)
    maven/plugins/branches/MSITE-560/reporting-exec/src/
    maven/plugins/branches/MSITE-560/reporting-exec/src/main/
    maven/plugins/branches/MSITE-560/reporting-exec/src/main/java/
    maven/plugins/branches/MSITE-560/reporting-exec/src/main/java/org/
    maven/plugins/branches/MSITE-560/reporting-exec/src/main/java/org/apache/
    maven/plugins/branches/MSITE-560/reporting-exec/src/main/java/org/apache/maven/
    maven/plugins/branches/MSITE-560/reporting-exec/src/main/java/org/apache/maven/reporting/
      - copied from r1076746, maven/plugins/branches/MSITE-560/src/main/java/org/apache/maven/reporting/
Removed:
    maven/plugins/branches/MSITE-560/src/main/java/org/apache/maven/reporting/
Modified:
    maven/plugins/branches/MSITE-560/pom.xml

Modified: maven/plugins/branches/MSITE-560/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/branches/MSITE-560/pom.xml?rev=1076877&r1=1076876&r2=1076877&view=diff
==============================================================================
--- maven/plugins/branches/MSITE-560/pom.xml (original)
+++ maven/plugins/branches/MSITE-560/pom.xml Thu Mar  3 23:13:10 2011
@@ -196,13 +196,13 @@ under the License.
       <artifactId>maven-reporting-api</artifactId>
       <version>3.0</version>
     </dependency>
-
-    <!-- Maven -->
     <dependency>
-      <groupId>org.apache.maven</groupId>
-      <artifactId>maven-artifact</artifactId>
-      <version>${mavenVersion}</version>
+      <groupId>org.apache.maven.reporting</groupId>
+      <artifactId>maven-reporting-exec</artifactId>
+      <version>1.0-SNAPSHOT</version>
     </dependency>
+
+    <!-- Maven -->
     <dependency>
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-compat</artifactId>
@@ -228,24 +228,7 @@ under the License.
       <artifactId>maven-settings</artifactId>
       <version>${mavenVersion}</version>
     </dependency>
-    <dependency>
-      <groupId>org.apache.maven</groupId>
-      <artifactId>maven-settings-builder</artifactId>
-      <version>${mavenVersion}</version>
-    </dependency>    
     
-    <dependency>
-      <groupId>org.sonatype.aether</groupId>
-      <artifactId>aether-util</artifactId>
-      <version>1.7</version>
-    </dependency>
-
-    <dependency>
-      <groupId>org.sonatype.aether</groupId>
-      <artifactId>aether-api</artifactId>
-      <version>1.7</version>
-    </dependency>
-
     <!-- Doxia -->
 
     <dependency>

Propchange: maven/plugins/branches/MSITE-560/reporting-exec/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Thu Mar  3 23:13:10 2011
@@ -0,0 +1,15 @@
+*.log
+target
+.classpath
+.project
+default.lst
+test.out
+default.ajsym
+*.ipr
+*.iws
+*.iml
+.wtpmodules
+cobertura.ser
+.settings
+bin
+build

Added: maven/plugins/branches/MSITE-560/reporting-exec/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/branches/MSITE-560/reporting-exec/pom.xml?rev=1076877&view=auto
==============================================================================
--- maven/plugins/branches/MSITE-560/reporting-exec/pom.xml (added)
+++ maven/plugins/branches/MSITE-560/reporting-exec/pom.xml Thu Mar  3 23:13:10 2011
@@ -0,0 +1,108 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, 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/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.apache.maven.shared</groupId>
+    <artifactId>maven-shared-components</artifactId>
+    <version>15</version>
+  </parent>
+
+  <groupId>org.apache.maven.reporting</groupId>
+  <artifactId>maven-reporting-exec</artifactId>
+  <version>1.0-SNAPSHOT</version>
+
+  <name>Maven Reporting Executor</name>
+  <description>Classes to manage report plugin executions with Maven 3.</description>
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/maven/shared/trunk/maven-reporting-exec</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/shared/trunk/maven-reporting-exec</developerConnection>
+    <url>http://svn.apache.org/viewvc/maven/shared/trunk/maven-reporting-exec</url>
+  </scm>
+  <!--issueManagement>
+    <system>jira</system>
+    <url>http://jira.codehaus.org/browse/MSHARED/component/13274</url>
+  </issueManagement-->
+
+  <properties>
+    <mavenVersion>3.0</mavenVersion>
+    <plexusVersion>1.5.4</plexusVersion>
+  </properties>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.maven.reporting</groupId>
+      <artifactId>maven-reporting-api</artifactId>
+      <version>3.0</version>
+    </dependency>
+
+    <!-- Maven -->
+    <dependency>
+      <groupId>org.apache.maven</groupId>
+      <artifactId>maven-artifact</artifactId>
+      <version>${mavenVersion}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven</groupId>
+      <artifactId>maven-core</artifactId>
+      <version>${mavenVersion}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven</groupId>
+      <artifactId>maven-model</artifactId>
+      <version>${mavenVersion}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven</groupId>
+      <artifactId>maven-plugin-api</artifactId>
+      <version>${mavenVersion}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <pluginManagement>
+      <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>
+    </pluginManagement>
+    <plugins>
+      <plugin>
+        <groupId>org.codehaus.plexus</groupId>
+        <artifactId>plexus-component-metadata</artifactId>
+        <executions>
+          <execution>
+            <goals>
+              <goal>generate-metadata</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+</project>

Propchange: maven/plugins/branches/MSITE-560/reporting-exec/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/branches/MSITE-560/reporting-exec/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Propchange: maven/plugins/branches/MSITE-560/reporting-exec/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain