[jboss-cvs] Repository SVN: r2561 - in maven2/org/jboss: documentation and 1 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Feb 18 08:37:44 EST 2008


Author: newtonm
Date: 2008-02-18 08:37:44 -0500 (Mon, 18 Feb 2008)
New Revision: 2561

Added:
   maven2/org/jboss/documentation/
   maven2/org/jboss/documentation/1.0/
   maven2/org/jboss/documentation/1.0/documentation-1.0.pom
   maven2/org/jboss/documentation/1.0/documentation-1.0.pom.md5
   maven2/org/jboss/documentation/1.0/documentation-1.0.pom.sha1
   maven2/org/jboss/documentation/maven-metadata.xml
   maven2/org/jboss/documentation/maven-metadata.xml.md5
   maven2/org/jboss/documentation/maven-metadata.xml.sha1
Log:
Added JBoss.org documentation parent POM.

Added: maven2/org/jboss/documentation/1.0/documentation-1.0.pom
===================================================================
--- maven2/org/jboss/documentation/1.0/documentation-1.0.pom	                        (rev 0)
+++ maven2/org/jboss/documentation/1.0/documentation-1.0.pom	2008-02-18 13:37:44 UTC (rev 2561)
@@ -0,0 +1,110 @@
+<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/xsd/maven-4.0.0.xsd">
+
+    <modelVersion>4.0.0</modelVersion>
+
+    <groupId>org.jboss</groupId>
+    <artifactId>documentation</artifactId>
+    <version>1.0</version>
+    <packaging>pom</packaging>
+    <name>JBoss.org Documentation</name>
+    <description>Common information for all JBoss.org Documentation.</description>
+
+    <contributors>
+      <contributor>
+        <name>Mark Newton</name>
+        <email>mark.newton at jboss.org</email>
+        <organization>Red Hat</organization>
+        <roles>
+          <role>Content Lead</role>
+        </roles>
+        <timezone>+1</timezone>
+      </contributor>
+    </contributors>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.jboss.maven.plugins</groupId>
+                <artifactId>maven-jdocbook-plugin</artifactId>
+                <version>2.0.0</version>
+                <extensions>true</extensions>
+                <dependencies>
+                    <dependency>
+                        <groupId>org.jboss</groupId>
+                        <artifactId>jbossorg-docbook-xslt</artifactId>
+                        <version>1.0.0</version>
+                    </dependency>
+                    <dependency>
+                        <groupId>org.jboss</groupId>
+                        <artifactId>jbossorg-jdocbook-style</artifactId>
+                        <version>1.0.0</version>
+                        <type>jdocbook-style</type>
+                    </dependency>
+                </dependencies>
+                <configuration>
+                    <sourceDocumentName>master.xml</sourceDocumentName>
+                    <sourceDirectory>${pom.basedir}/en</sourceDirectory>
+                    <imageResource>
+                        <directory>${pom.basedir}/en</directory>
+                        <includes>
+                          <include>images/**/*</include>
+                        </includes>
+                    </imageResource>
+                    <!--<cssResource>
+                        <directory>src/main/css</directory>
+                    </cssResource>-->
+                    <formats>
+                        <format>
+                            <formatName>pdf</formatName>
+                            <stylesheetResource>classpath:/xslt/org/jboss/main-pdf.xsl</stylesheetResource>
+                            <finalName>${pom.name}.pdf</finalName>
+                        </format>
+                        <format>
+                            <formatName>html</formatName>
+                            <stylesheetResource>classpath:/xslt/org/jboss/main-html.xsl</stylesheetResource>
+                            <finalName>index.html</finalName>
+                        </format>
+                        <format>
+                            <formatName>html_single</formatName>
+                            <stylesheetResource>classpath:/xslt/org/jboss/nochunk-html.xsl</stylesheetResource>
+                            <finalName>index.html</finalName>
+                        </format>
+                        <format>
+                            <formatName>eclipse</formatName>
+                            <stylesheetResource>classpath:/xslt/org/jboss/main-eclipse.xsl</stylesheetResource>
+                            <finalName>index.html</finalName>
+                        </format>
+                    </formats>
+                    <options>
+                        <xincludeSupported>true</xincludeSupported>
+                        <xmlTransformerType>saxon</xmlTransformerType>
+                        <!-- needed for uri-resolvers; can be ommitted if using 'current' uri scheme -->
+                        <!--     could also locate the docbook dependency and inspect its version... -->
+                        <docbookVersion>1.72.0</docbookVersion>
+                    </options>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+    <distributionManagement>
+        <repository>
+            <!-- Copy the dist to the local checkout of the JBoss maven2 repo ${maven.repository.root} -->
+            <!-- It is anticipated that ${maven.repository.root} be set in user's settings.xml -->
+            <!-- todo : replace this with direct svn access once the svnkit providers are available -->
+            <id>repository.jboss.org</id>
+            <url>file://${maven.repository.root}</url>
+        </repository>
+        <snapshotRepository>
+            <id>snapshots.jboss.org</id>
+            <name>JBoss Snapshot Repository</name>
+            <url>dav:https://snapshots.jboss.org/maven2</url>
+        </snapshotRepository>
+    </distributionManagement>
+
+    <properties>
+        <translation>en-US</translation>
+    </properties> 
+</project>

Added: maven2/org/jboss/documentation/1.0/documentation-1.0.pom.md5
===================================================================
--- maven2/org/jboss/documentation/1.0/documentation-1.0.pom.md5	                        (rev 0)
+++ maven2/org/jboss/documentation/1.0/documentation-1.0.pom.md5	2008-02-18 13:37:44 UTC (rev 2561)
@@ -0,0 +1 @@
+77c1e4c0f51bbedb6341e2ce01ea6931
\ No newline at end of file

Added: maven2/org/jboss/documentation/1.0/documentation-1.0.pom.sha1
===================================================================
--- maven2/org/jboss/documentation/1.0/documentation-1.0.pom.sha1	                        (rev 0)
+++ maven2/org/jboss/documentation/1.0/documentation-1.0.pom.sha1	2008-02-18 13:37:44 UTC (rev 2561)
@@ -0,0 +1 @@
+b2d24411edcf6dea58ef10d2f3984b9398e0e370
\ No newline at end of file

Added: maven2/org/jboss/documentation/maven-metadata.xml
===================================================================
--- maven2/org/jboss/documentation/maven-metadata.xml	                        (rev 0)
+++ maven2/org/jboss/documentation/maven-metadata.xml	2008-02-18 13:37:44 UTC (rev 2561)
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?><metadata>
+  <groupId>org.jboss</groupId>
+  <artifactId>documentation</artifactId>
+  <version>1.0</version>
+  <versioning>
+    <versions>
+      <version>1.0</version>
+    </versions>
+    <lastUpdated>20080218133415</lastUpdated>
+  </versioning>
+</metadata>
\ No newline at end of file

Added: maven2/org/jboss/documentation/maven-metadata.xml.md5
===================================================================
--- maven2/org/jboss/documentation/maven-metadata.xml.md5	                        (rev 0)
+++ maven2/org/jboss/documentation/maven-metadata.xml.md5	2008-02-18 13:37:44 UTC (rev 2561)
@@ -0,0 +1 @@
+e8a2d536085b11acd8a32d7b51dfe4e8
\ No newline at end of file

Added: maven2/org/jboss/documentation/maven-metadata.xml.sha1
===================================================================
--- maven2/org/jboss/documentation/maven-metadata.xml.sha1	                        (rev 0)
+++ maven2/org/jboss/documentation/maven-metadata.xml.sha1	2008-02-18 13:37:44 UTC (rev 2561)
@@ -0,0 +1 @@
+0674bcf87c72103f2af4ef35e9796345a5233392
\ No newline at end of file




More information about the jboss-cvs-commits mailing list