Author: van.halbert
Date: 2012-07-24 10:23:05 -0400 (Tue, 24 Jul 2012)
New Revision: 4262
Modified:
branches/7.7.x/build/pom.xml
Log:
https://bugzilla.redhat.com/show_bug.cgi?id=842422 - fix the pom to attach the
client-jdk15 jar to maven repo
Modified: branches/7.7.x/build/pom.xml
===================================================================
--- branches/7.7.x/build/pom.xml 2012-07-24 14:02:03 UTC (rev 4261)
+++ branches/7.7.x/build/pom.xml 2012-07-24 14:23:05 UTC (rev 4262)
@@ -129,7 +129,30 @@
</configuration>
</execution>
</executions>
- </plugin>
+ </plugin>
+
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>build-helper-maven-plugin</artifactId>
+ <version>1.5</version>
+ <executions>
+ <execution>
+ <phase>package</phase>
+ <goals>
+ <goal>attach-artifact</goal>
+ </goals>
+ <configuration>
+ <artifacts>
+ <artifact>
+
<file>target/teiid-7.7.1-client-jdk15.jar</file>
+ <type>jar</type>
+ <classifier>client-jdk15</classifier>
+ </artifact>
+ </artifacts>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>
</profile>