Author: dennisl
Date: Sat Jul 28 11:55:53 2007
New Revision: 560590
URL: http://svn.apache.org/viewvc?view=rev&rev=560590
Log:
Attach the adapters and api jars to the normal artifact. This way they will be
deployed when the normal artifact is deployed.
Modified:
jakarta/commons/proper/logging/trunk/pom.xml
Modified: jakarta/commons/proper/logging/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/jakarta/commons/proper/logging/trunk/pom.xml?view=diff&rev=560590&r1=560589&r2=560590
==============================================================================
--- jakarta/commons/proper/logging/trunk/pom.xml (original)
+++ jakarta/commons/proper/logging/trunk/pom.xml Sat Jul 28 11:55:53 2007
@@ -265,6 +265,39 @@
<plugin>
<!--
+ - Attach the adapters and api jars to the normal artifact. This way
+ - they will be deployed when the normal artifact is deployed.
+ -->
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>build-helper-maven-plugin</artifactId>
+ <version>1.0</version>
+ <executions>
+ <execution>
+ <id>attach-artifacts</id>
+ <phase>package</phase>
+ <goals>
+ <goal>attach-artifact</goal>
+ </goals>
+ <configuration>
+ <artifacts>
+ <artifact>
+
<file>${project.build.directory}/${project.artifactId}-adapters-${project.version}.jar</file>
+ <type>jar</type>
+ <classifier>adapters</classifier>
+ </artifact>
+ <artifact>
+
<file>${project.build.directory}/${project.artifactId}-api-${project.version}.jar</file>
+ <type>jar</type>
+ <classifier>api</classifier>
+ </artifact>
+ </artifacts>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+
+ <plugin>
+ <!--
- Many of JCL's tests use tricky techniques to place the generated
- JCL jarfiles on the classpath in various configurations. This means
- that the tests must be run *after* the "package" build phase. The
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]