[jboss-cvs] JBossAS SVN: r65647 - projects/security/security-docs/trunk/whitepapers/securejmx.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Sep 27 02:17:35 EDT 2007


Author: anil.saldhana at jboss.com
Date: 2007-09-27 02:17:35 -0400 (Thu, 27 Sep 2007)
New Revision: 65647

Added:
   projects/security/security-docs/trunk/whitepapers/securejmx/pom.xml
Modified:
   projects/security/security-docs/trunk/whitepapers/securejmx/
Log:
mavenize


Property changes on: projects/security/security-docs/trunk/whitepapers/securejmx
___________________________________________________________________
Name: svn:ignore
   + build


Added: projects/security/security-docs/trunk/whitepapers/securejmx/pom.xml
===================================================================
--- projects/security/security-docs/trunk/whitepapers/securejmx/pom.xml	                        (rev 0)
+++ projects/security/security-docs/trunk/whitepapers/securejmx/pom.xml	2007-09-27 06:17:35 UTC (rev 65647)
@@ -0,0 +1,79 @@
+<?xml version="1.0"?>
+<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">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>jboss</groupId>
+  <artifactId>security-docs</artifactId>
+  <version>2.0.1-BETA2</version>
+  <packaging>pom</packaging>
+  <name>JBoss Security User Guide</name>
+  <description>The JBoss Security User Guide</description>
+
+  <repositories>
+    <repository>
+      <id>agilejava</id>
+      <name>AgileJava</name>
+      <url>http://agilejava.com/maven/</url>
+    </repository>
+  </repositories>
+  <pluginRepositories>
+    <pluginRepository>
+      <id>agilejava</id>
+      <name>AgileJava</name>
+      <url>http://agilejava.com/maven/</url>
+    </pluginRepository>
+  </pluginRepositories>
+
+  <build>
+    <plugins>
+      <plugin>
+      <!--
+      See the following for config options:
+      http://www.agilejava.com/docbkx/docbkx-maven-plugin/generate-html-mojo.html
+      -->
+        <groupId>com.agilejava.docbkx</groupId>
+        <artifactId>docbkx-maven-plugin</artifactId>
+        <version>2.0.3</version>
+        <executions>
+          <execution>
+            <goals>
+              <goal>generate-pdf</goal>
+              <goal>generate-html</goal>
+            </goals>
+            <phase>generate-sources</phase>
+          </execution>
+        </executions>
+        <dependencies>
+          <dependency>
+            <groupId>org.docbook</groupId>
+            <artifactId>docbook-xml</artifactId>
+            <version>4.4</version>
+            <scope>runtime</scope>
+          </dependency>
+        </dependencies>
+
+        <configuration>
+          <DistroTitle>SecureJMX</DistroTitle>
+          <!--<foCustomization>${basedir}/src/styles/docbook-fo.xsl</foCustomization>-->
+          <includes>master.xml</includes>
+
+          <!-- use separate pages per chapter for HTML -->
+          <chunkedOutput>true</chunkedOutput>
+
+          <entities>
+            <entity>
+              <name>version</name>
+              <value>${version}</value>
+            </entity>
+          </entities>
+
+          <xincludeSupported>true</xincludeSupported>
+          <sourceDirectory>${basedir}/en</sourceDirectory>
+          <headerRule>0</headerRule>
+          <footerRule>0</footerRule>
+          <draftMode>0</draftMode>
+          <bodyFontFamily>Helvetica</bodyFontFamily>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+</project>




More information about the jboss-cvs-commits mailing list