[jboss-cvs] JBossAS SVN: r91941 - projects/jboss-threads/trunk/main.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Aug 4 00:10:49 EDT 2009


Author: david.lloyd at jboss.com
Date: 2009-08-04 00:10:49 -0400 (Tue, 04 Aug 2009)
New Revision: 91941

Modified:
   projects/jboss-threads/trunk/main/pom.xml
Log:
Seal the org.jboss.threads package so I can have package-private privileged ops without losing too much sleep at night

Modified: projects/jboss-threads/trunk/main/pom.xml
===================================================================
--- projects/jboss-threads/trunk/main/pom.xml	2009-08-04 03:42:37 UTC (rev 91940)
+++ projects/jboss-threads/trunk/main/pom.xml	2009-08-04 04:10:49 UTC (rev 91941)
@@ -25,6 +25,22 @@
         <plugins>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-jar-plugin</artifactId>
+                <configuration>
+                    <archive>
+                        <manifestSections>
+                            <manifestSection>
+                                <name>org/jboss/threads</name>
+                                <manifestEntries>
+                                    <Sealed>true</Sealed>
+                                </manifestEntries>
+                            </manifestSection>
+                        </manifestSections>
+                    </archive>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-compiler-plugin</artifactId>
                 <version>2.0.2</version>
                 <configuration>




More information about the jboss-cvs-commits mailing list