[java-identity-provider COMMIT] /trunk/idp-core/pom.xml

noreply at shibboleth.net noreply at shibboleth.net
Tue Jul 22 19:11:36 EDT 2014


Author: tzeller
Date: Tue Jul 22 19:11:35 2014
New Revision: 6330

URL: http://svn.shibboleth.net/view/java-identity-provider?rev=6330&view=rev
Log:
Always add entries to the manifest instead of only in the release profile.

Modified:
    trunk/idp-core/pom.xml

Modified: trunk/idp-core/pom.xml
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-core/pom.xml?rev=6330&r1=6329&r2=6330&view=diff
==============================================================================
--- trunk/idp-core/pom.xml (original)
+++ trunk/idp-core/pom.xml Tue Jul 22 19:11:35 2014
@@ -66,36 +66,31 @@
         
 
     </dependencies>
-    
-    <profiles>
-        <profile>
-            <id>release</id>
-            <build>
-                <plugins>
-                    <plugin>
-                        <artifactId>maven-jar-plugin</artifactId>
-                        <configuration>
-                            <archive>
-                                <index>true</index>
+
+    <build>
+        <plugins>
+            <plugin>
+                <artifactId>maven-jar-plugin</artifactId>
+                <configuration>
+                    <archive>
+                        <index>true</index>
+                        <manifestEntries>
+                            <Main-Class>net.shibboleth.idp.Version</Main-Class>
+                        </manifestEntries>
+                        <manifestSections>
+                            <manifestSection>
+                                <name>net/shibboleth/idp/</name>
                                 <manifestEntries>
-                                    <Main-Class>net.shibboleth.idp.Version</Main-Class>
+                                    <Implementation-Title>${project.artifactId}</Implementation-Title>
+                                    <Implementation-Version>${project.version}</Implementation-Version>
+                                    <Implementation-Vendor>shibboleth.net</Implementation-Vendor>
                                 </manifestEntries>
-                                <manifestSections>
-                                    <manifestSection>
-                                        <name>net/shibboleth/idp/</name>
-                                        <manifestEntries>
-                                            <Implementation-Title>${project.artifactId}</Implementation-Title>
-                                            <Implementation-Version>${project.version}</Implementation-Version>
-                                            <Implementation-Vendor>shibboleth.net</Implementation-Vendor>
-                                        </manifestEntries>
-                                    </manifestSection>
-                                </manifestSections>
-                            </archive>
-                        </configuration>
-                    </plugin>
-                </plugins>
-            </build>
-        </profile>
-    </profiles>
-    
+                            </manifestSection>
+                        </manifestSections>
+                    </archive>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
 </project>



More information about the commits mailing list