[jboss-cvs] Picketlink SVN: r1258 - in social/trunk: assembly and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Sep 26 12:12:25 EDT 2011


Author: anil.saldhana at jboss.com
Date: 2011-09-26 12:12:25 -0400 (Mon, 26 Sep 2011)
New Revision: 1258

Added:
   social/trunk/assembly/
   social/trunk/assembly/bin.xml
   social/trunk/assembly/pom.xml
   social/trunk/assembly/sources.xml
Log:
assembly for 1 jar

Added: social/trunk/assembly/bin.xml
===================================================================
--- social/trunk/assembly/bin.xml	                        (rev 0)
+++ social/trunk/assembly/bin.xml	2011-09-26 16:12:25 UTC (rev 1258)
@@ -0,0 +1,20 @@
+<assembly>
+  <formats>
+    <format>jar</format>
+  </formats>
+  <includeBaseDirectory>false</includeBaseDirectory>
+  <fileSets>
+    <fileSet>
+      <directory>${basedir}/../facebook/target/classes</directory>
+      <outputDirectory>/</outputDirectory>
+    </fileSet>
+    <fileSet>
+      <directory>${basedir}/../social/target/classes</directory>
+      <outputDirectory>/</outputDirectory>
+    </fileSet>
+    <fileSet>
+      <directory>${basedir}/../openid/target/classes</directory>
+      <outputDirectory>/</outputDirectory>
+    </fileSet>
+  </fileSets>
+</assembly>


Property changes on: social/trunk/assembly/bin.xml
___________________________________________________________________
Added: svn:executable
   + *

Added: social/trunk/assembly/pom.xml
===================================================================
--- social/trunk/assembly/pom.xml	                        (rev 0)
+++ social/trunk/assembly/pom.xml	2011-09-26 16:12:25 UTC (rev 1258)
@@ -0,0 +1,63 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <parent>
+    <groupId>org.picketlink</groupId>
+    <artifactId>picketlink-social-parent</artifactId>
+    <version>2.0.0-SNAPSHOT</version>
+    <relativePath>../parent</relativePath>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.picketlink</groupId>
+  <artifactId>picketlink-consolidated-social</artifactId>
+  <packaging>pom</packaging>
+  <name>PicketLink social- Assembly</name>
+  <url>http://www.picketlink.org/</url>
+  <description>PicketLink social</description>
+  <licenses>
+    <license>
+      <name>lgpl</name>
+      <url>http://repository.jboss.com/licenses/lgpl.txt</url>
+    </license>
+  </licenses>
+  <organization>
+    <name>JBoss Inc.</name>
+    <url>http://www.jboss.org</url>
+  </organization>
+    
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-assembly-plugin</artifactId>
+        <version>2.1</version>
+        <executions>
+          <execution>
+            <phase>package</phase>
+            <goals>
+              <goal>attached</goal>
+            </goals>
+          </execution>
+        </executions>
+        <configuration>
+          <archive>
+            <manifestEntries>
+              <Specification-Title>PicketLink</Specification-Title>
+              <Specification-Version>${project.version}</Specification-Version>
+              <Specification-Vendor>Red Hat Middleware LLC</Specification-Vendor>
+              <Implementation-Title>JBoss Identity</Implementation-Title>
+              <Implementation-Version>${project.version}</Implementation-Version>
+              <Implementation-VendorId>org.jboss.security</Implementation-VendorId>
+              <Implementation-Vendor>Red Hat Middleware LLC</Implementation-Vendor>
+              <Implementation-URL>http://picketlink.org/</Implementation-URL>
+            </manifestEntries>
+          </archive>
+          <descriptors>
+            <descriptor>bin.xml</descriptor>
+            <descriptor>sources.xml</descriptor>
+          </descriptors>
+        </configuration>
+        <inherited>false</inherited>
+      </plugin>
+    </plugins>
+  </build>
+  
+</project>

Added: social/trunk/assembly/sources.xml
===================================================================
--- social/trunk/assembly/sources.xml	                        (rev 0)
+++ social/trunk/assembly/sources.xml	2011-09-26 16:12:25 UTC (rev 1258)
@@ -0,0 +1,22 @@
+<assembly>
+  <id>sources</id>
+  <formats>
+    <format>jar</format>
+  </formats>
+  <includeBaseDirectory>false</includeBaseDirectory>
+  <fileSets>
+    <fileSet>
+      <directory>${basedir}/../facebook/src/main/java</directory>
+      <outputDirectory>/</outputDirectory>
+    </fileSet>
+    <fileSet>
+      <directory>${basedir}/../openid/src/main/java</directory>
+      <outputDirectory>/</outputDirectory>
+    </fileSet>
+    <fileSet>
+      <directory>${basedir}/../social/src/main/java</directory>
+      <outputDirectory>/</outputDirectory>
+    </fileSet>
+  </fileSets>
+
+</assembly>


Property changes on: social/trunk/assembly/sources.xml
___________________________________________________________________
Added: svn:executable
   + *



More information about the jboss-cvs-commits mailing list