You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@gump.apache.org by bo...@apache.org on 2010/08/08 08:30:27 UTC

svn commit: r983355 - in /gump/metadata: pom-overrides/doxia-sink-api.pom project/doxia.xml project/gump.xml

Author: bodewig
Date: Sun Aug  8 06:30:27 2010
New Revision: 983355

URL: http://svn.apache.org/viewvc?rev=983355&view=rev
Log:
make users of doxia-sink-api use doxia-logging-api as well

Added:
    gump/metadata/pom-overrides/doxia-sink-api.pom   (with props)
Modified:
    gump/metadata/project/doxia.xml
    gump/metadata/project/gump.xml

Added: gump/metadata/pom-overrides/doxia-sink-api.pom
URL: http://svn.apache.org/viewvc/gump/metadata/pom-overrides/doxia-sink-api.pom?rev=983355&view=auto
==============================================================================
--- gump/metadata/pom-overrides/doxia-sink-api.pom (added)
+++ gump/metadata/pom-overrides/doxia-sink-api.pom Sun Aug  8 06:30:27 2010
@@ -0,0 +1,41 @@
+<?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.
+-->
+<!--
+  This POM has been created manually in order to help Gump users of
+  doxia-sink-api versions < 1.1 - the POM inside the mvn repository lacks a
+  dependency on doxia-logging-api.
+
+  The version numbers are completely irrelevant for Gump.
+-->
+
+<project 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>
+    <artifactId>doxia</artifactId>
+    <groupId>org.apache.maven.doxia</groupId>
+    <version>1.1</version>
+  </parent>
+  <artifactId>doxia-sink-api</artifactId>
+  <name>Doxia :: Sink API</name>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.maven.doxia</groupId>
+      <artifactId>doxia-logging-api</artifactId>
+    </dependency>
+  </dependencies>
+</project>

Propchange: gump/metadata/pom-overrides/doxia-sink-api.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: gump/metadata/project/doxia.xml
URL: http://svn.apache.org/viewvc/gump/metadata/project/doxia.xml?rev=983355&r1=983354&r2=983355&view=diff
==============================================================================
--- gump/metadata/project/doxia.xml (original)
+++ gump/metadata/project/doxia.xml Sun Aug  8 06:30:27 2010
@@ -62,12 +62,18 @@
     <jar name="doxia/doxia-logging-api/target/doxia-logging-api-*[0-9T].jar"/>
   </project>
 
-  <project name="doxia-sink-api">
+  <project name="doxia-sink-api-jar">
     <depend project="doxia-parent"/>
     <mvn separateLocalRepository="doxia" goal="install"
          basedir="doxia/doxia-sink-api"/>
     <option project="doxia-logging-api"/>
-    <jar name="doxia/doxia-sink-api/target/doxia-sink-api-*[0-9T].jar"/>
+    <jar name="doxia/doxia-sink-api/target/doxia-sink-api-*[0-9T].jar"
+         id="doxia-sink-api"/>
+  </project>
+
+  <project name="doxia-sink-api">
+    <depend project="doxia-sink-api-jar" inherit="jars"/>
+    <depend project="doxia-sink-api-pom"/>
   </project>
 
   <project name="doxia-test-docs">

Modified: gump/metadata/project/gump.xml
URL: http://svn.apache.org/viewvc/gump/metadata/project/gump.xml?rev=983355&r1=983354&r2=983355&view=diff
==============================================================================
--- gump/metadata/project/gump.xml (original)
+++ gump/metadata/project/gump.xml Sun Aug  8 06:30:27 2010
@@ -41,4 +41,8 @@
     <pom name="metadata/pom-overrides/xalan.pom" id="xalan"/>
   </project>
 
+  <project name="doxia-sink-api-pom" groupId="org.apache.maven.doxia">
+    <pom name="metadata/pom-overrides/doxia-sink-api.pom" id="doxia-sink-api"/>
+  </project>
+
 </module>