[seam-commits] Seam SVN: r8791 - in branches/Seam_2_0: build and 1 other directory.
seam-commits at lists.jboss.org
seam-commits at lists.jboss.org
Fri Aug 22 19:31:03 EDT 2008
Author: pete.muir at jboss.org
Date: 2008-08-22 19:31:03 -0400 (Fri, 22 Aug 2008)
New Revision: 8791
Modified:
branches/Seam_2_0/build.xml
branches/Seam_2_0/build/parent.pom.xml
branches/Seam_2_0/build/root.pom.xml
Log:
backport JBSEAM-3291
Modified: branches/Seam_2_0/build/parent.pom.xml
===================================================================
--- branches/Seam_2_0/build/parent.pom.xml 2008-08-22 23:27:28 UTC (rev 8790)
+++ branches/Seam_2_0/build/parent.pom.xml 2008-08-22 23:31:03 UTC (rev 8791)
@@ -24,6 +24,19 @@
<artifactId>maven-dependency-plugin</artifactId>
<version>2.0</version>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <version>2.1</version>
+ <configuration>
+ <archive>
+ <manifest>
+ <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+ <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
+ </manifest>
+ </archive>
+ </configuration>
+ </plugin>
</plugins>
</pluginManagement>
</build>
Modified: branches/Seam_2_0/build/root.pom.xml
===================================================================
--- branches/Seam_2_0/build/root.pom.xml 2008-08-22 23:27:28 UTC (rev 8790)
+++ branches/Seam_2_0/build/root.pom.xml 2008-08-22 23:31:03 UTC (rev 8791)
@@ -631,7 +631,7 @@
<dependency>
<groupId>org.jboss.el</groupId>
<artifactId>jboss-el</artifactId>
- <version>2.0.1.GA</version>
+ <version>1.0_02.CR2</version>
</dependency>
<dependency>
Modified: branches/Seam_2_0/build.xml
===================================================================
--- branches/Seam_2_0/build.xml 2008-08-22 23:27:28 UTC (rev 8790)
+++ branches/Seam_2_0/build.xml 2008-08-22 23:31:03 UTC (rev 8791)
@@ -809,6 +809,11 @@
<manifest>
<attribute name="Seam-Version" value="${complete.version}" />
<attribute name="Implementation-Version" value="${complete.version}" />
+ <attribute name="Specification-Version" value="${complete.version}" />
+ <attribute name="Specification-Title" value="@{module}" />
+ <attribute name="Specification-Vendor" value="JBoss" />
+ <attribute name="Implementation-Title" value="@{module}" />
+ <attribute name="Implementation-Vendor" value="JBoss" />
</manifest>
</jar>
<jar jarfile="@{outputdir}/src/@{module}-sources.jar" basedir="@{srcdir}">
@@ -819,6 +824,11 @@
<manifest>
<attribute name="Seam-Version" value="${complete.version}" />
<attribute name="Implementation-Version" value="${complete.version}" />
+ <attribute name="Specification-Version" value="${complete.version}" />
+ <attribute name="Specification-Title" value="@{module}" />
+ <attribute name="Specification-Vendor" value="JBoss" />
+ <attribute name="Implementation-Title" value="@{module}" />
+ <attribute name="Implementation-Vendor" value="JBoss" />
</manifest>
</jar>
<install jar="@{outputdir}/@{module}.jar" pom="@{pom}">
More information about the seam-commits
mailing list