Author: anil.saldhana(a)jboss.com
Date: 2009-02-26 17:21:56 -0500 (Thu, 26 Feb 2009)
New Revision: 352
Added:
identity-doc/trunk/assembly/
identity-doc/trunk/assembly/bin.xml
identity-doc/trunk/assembly/pom.xml
Modified:
identity-doc/trunk/UserGuide/src/main/docbook/UserGuide.xml
identity-doc/trunk/pom.xml
Log:
add assembly module to zip
Modified: identity-doc/trunk/UserGuide/src/main/docbook/UserGuide.xml
===================================================================
--- identity-doc/trunk/UserGuide/src/main/docbook/UserGuide.xml 2009-02-26 20:53:50 UTC
(rev 351)
+++ identity-doc/trunk/UserGuide/src/main/docbook/UserGuide.xml 2009-02-26 22:21:56 UTC
(rev 352)
@@ -712,6 +712,14 @@
</section> <!-- End: Configure the SP -->
</chapter> <!-- Web SSO (XML Signature Support) -->
+
+ <chapter>
+ <section>
+ <title>
+ Web SSO (XML Encryption Support)
+ </title>
+ </section>
+ </chapter>
</part> <!-- End Section: Advanced Usage -->
<part> <!-- Troubleshooting -->
@@ -852,6 +860,11 @@
</para>
<para>
<ulink
+
url="http://www.jboss.org/index.html?module=bb&op=viewforum&...
+ JBoss Identity User Forum</ulink>
+ </para>
+ <para>
+ <ulink
url="http://www.jboss.com/index.html?module=bb&c=32">
JBoss Identity Design Forum</ulink>
</para>
Added: identity-doc/trunk/assembly/bin.xml
===================================================================
--- identity-doc/trunk/assembly/bin.xml (rev 0)
+++ identity-doc/trunk/assembly/bin.xml 2009-02-26 22:21:56 UTC (rev 352)
@@ -0,0 +1,16 @@
+<assembly>
+ <formats>
+ <format>zip</format>
+ </formats>
+ <includeBaseDirectory>false</includeBaseDirectory>
+ <fileSets>
+ <fileSet>
+ <directory>../DeveloperGuide/target/docbook/publish</directory>
+ <outputDirectory>/DeveloperGuide</outputDirectory>
+ </fileSet>
+ <fileSet>
+ <directory>../UserGuide/target/docbook/publish</directory>
+ <outputDirectory>/UserGuide</outputDirectory>
+ </fileSet>
+ </fileSets>
+</assembly>
Added: identity-doc/trunk/assembly/pom.xml
===================================================================
--- identity-doc/trunk/assembly/pom.xml (rev 0)
+++ identity-doc/trunk/assembly/pom.xml 2009-02-26 22:21:56 UTC (rev 352)
@@ -0,0 +1,62 @@
+<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.jboss.identity</groupId>
+ <artifactId>jboss-identity-doc-parent</artifactId>
+ <version>1.0.0.alpha1-SNAPSHOT</version>
+ <relativePath>../parent</relativePath>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.jboss.identity</groupId>
+ <artifactId>jboss-identity-doc</artifactId>
+ <packaging>pom</packaging>
+ <name>JBoss Identity Federation- Assembly</name>
+ <
url>http://labs.jboss.org/portal/jbosssecurity/</url>
+ <description>JBoss Identity doc</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>JBoss Identity</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://labs.jboss.org/portal/jbosssecurity/</Imp...
+ </manifestEntries>
+ </archive>
+ <descriptors>
+ <descriptor>bin.xml</descriptor>
+ </descriptors>
+ </configuration>
+ <inherited>false</inherited>
+ </plugin>
+ </plugins>
+ </build>
+
+</project>
Modified: identity-doc/trunk/pom.xml
===================================================================
--- identity-doc/trunk/pom.xml 2009-02-26 20:53:50 UTC (rev 351)
+++ identity-doc/trunk/pom.xml 2009-02-26 22:21:56 UTC (rev 352)
@@ -18,5 +18,6 @@
<module>parent</module>
<module>DeveloperGuide</module>
<module>UserGuide</module>
+ <module>assembly</module>
</modules>
</project>