JBoss Tools SVN: r26788 - trunk/documentation/guides/Beginners_Guide.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2010-11-21 18:26:41 -0500 (Sun, 21 Nov 2010)
New Revision: 26788
Modified:
trunk/documentation/guides/Beginners_Guide/pom.xml
Log:
updated pom file with jboss community docbook
Modified: trunk/documentation/guides/Beginners_Guide/pom.xml
===================================================================
--- trunk/documentation/guides/Beginners_Guide/pom.xml 2010-11-21 23:15:47 UTC (rev 26787)
+++ trunk/documentation/guides/Beginners_Guide/pom.xml 2010-11-21 23:26:41 UTC (rev 26788)
@@ -1,171 +1,269 @@
-<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.tools</groupId>
- <artifactId>beginers-guide-en-US</artifactId>
- <version>1.0-SNAPSHOT</version>
- <packaging>jdocbook</packaging>
- <name>Beginners_Guide</name>
- <profiles>
- <profile>
- <id>release</id>
- <properties>
- <master>master_output.xml</master>
- <xsl-single>classpath:/xslt/com/jboss/tools/xhtml-single-release.xsl</xsl-single>
- <xsl-chunked>classpath:/xslt/com/jboss/tools/xhtml-release.xsl</xsl-chunked>
- <xsl-pdf>classpath:/xslt/com/jboss/tools/pdf.xsl</xsl-pdf>
- </properties>
- </profile>
- <profile>
- <id>releaseTest</id>
- <properties>
- <master>master_output.xml</master>
- <xsl-single>classpath:/xslt/com/jboss/tools/xhtml-single-release-nomarker.xsl</xsl-single>
- <xsl-chunked>classpath:/xslt/com/jboss/tools/xhtml-release-nomarker.xsl</xsl-chunked>
- <xsl-pdf>classpath:/xslt/com/jboss/tools/pdf.xsl</xsl-pdf>
- </properties>
- </profile>
- <profile>
- <id>releaseJBDS</id>
- <properties>
- <master>master_output.xml</master>
- <xsl-single>classpath:/xslt/com/jboss/tools/xhtml-single-release.xsl</xsl-single>
- <xsl-chunked>classpath:/xslt/com/jboss/tools/xhtml-release.xsl</xsl-chunked>
- <xsl-pdf>classpath:/xslt/com/jboss/tools/pdf.xsl</xsl-pdf>
- <cssdir>${pom.basedir}/target/docbook/staging/css/com/css</cssdir>
- </properties>
- </profile>
- <profile>
- <id>diffmk</id>
- <properties>
- <master>master_output.xml</master>
- <xsl-single>classpath:/xslt/com/jboss/tools/xhtml-single-diff.xsl</xsl-single>
- <xsl-chunked>classpath:/xslt/com/jboss/tools/xhtml-diff.xsl</xsl-chunked>
- <xsl-pdf>classpath:/xslt/com/jboss/tools/pdf-diff.xsl</xsl-pdf>
- </properties>
- </profile>
- </profiles>
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-plugin</artifactId>
- <version>2.2.1</version>
- <extensions>true</extensions>
- <dependencies>
- <dependency>
- <groupId>org.jboss.tools</groupId>
- <artifactId>jbosstools-jdocbook-style</artifactId>
- <type>jdocbook-style</type>
- <version>1.0.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.jboss.tools</groupId>
- <artifactId>jbosstools-docbook-xslt</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </dependency>
- </dependencies>
- <configuration>
- <sourceDocumentName>${master}</sourceDocumentName>
- <sourceDirectory>${pom.basedir}</sourceDirectory>
- <imageResource>
- <directory>${pom.basedir}/en-US</directory>
- <includes>
- <include>images/**/*</include>
- </includes>
- </imageResource>
- <cssResource>
- <directory>${cssdir}</directory>
- </cssResource>
-
- <formats>
- <format>
- <formatName>pdf</formatName>
- <stylesheetResource>${xsl-pdf}</stylesheetResource>
- <finalName>${project.name}.pdf</finalName>
- </format>
- <format>
- <formatName>html</formatName>
- <stylesheetResource>${xsl-chunked}</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- <format>
- <formatName>html_single</formatName>
- <stylesheetResource>${xsl-single}</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- <format>
- <formatName>eclipse</formatName>
- <stylesheetResource>classpath:/xslt/com/jboss/tools/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>
- <plugin>
- <artifactId>maven-clean-plugin</artifactId>
- <version>2.4</version>
- <executions>
- <execution>
- <id>clean</id>
- <phase>package</phase>
- <goals>
- <goal>clean</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <excludeDefaultDirectories>true</excludeDefaultDirectories>
- <filesets>
- <fileset>
- <directory>${pom.basedir}/target/docbook/publish/en-US/</directory>
- <includes>
- <include>html/com/</include>
- <include>html/org/</include>
- <include>html_single/com/</include>
- <include>html_single/org/</include>
- <include>eclipse/com/</include>
- <include>eclipse/org/</include>
- </includes>
- <followSymlinks>false</followSymlinks>
- </fileset>
- </filesets>
- </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>
- <xsl-single>classpath:/xslt/com/jboss/tools/xhtml-single.xsl</xsl-single>
- <xsl-chunked>classpath:/xslt/com/jboss/tools/xhtml.xsl</xsl-chunked>
- <xsl-pdf>classpath:/xslt/com/jboss/tools/pdf.xsl</xsl-pdf>
- <stylesdir>classpath:/xslt</stylesdir>
- <cssdir>${pom.basedir}/target/docbook/staging/css/com/css</cssdir>
- <master>master.xml</master>
- </properties>
-</project>
+<?xml version="1.0" encoding="utf-8"?>
+<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.tools</groupId>
+ <artifactId>${docname}-${translation}</artifactId>
+ <version>1.0</version>
+ <packaging>jdocbook</packaging>
+ <name>${bookname}-(${translation})</name>
+
+ <properties>
+ <translation>en-US</translation>
+ <docname>Beginners_Guide</docname>
+ <bookname>Beginners Guide</bookname>
+ </properties>
+
+ <repositories>
+ <repository>
+ <id>jboss-public-repository-group</id>
+ <name>JBoss Public Maven Repository Group</name>
+ <url>https://repository.jboss.org/nexus/content/groups/public/</url>
+ <layout>default</layout>
+ <releases>
+ <enabled>true</enabled>
+ <updatePolicy>never</updatePolicy>
+ </releases>
+ <snapshots>
+ <enabled>true</enabled>
+ <updatePolicy>never</updatePolicy>
+ </snapshots>
+ </repository>
+ </repositories>
+ <pluginRepositories>
+ <pluginRepository>
+ <id>jboss-public-repository-group</id>
+ <name>JBoss Public Maven Repository Group</name>
+ <url>https://repository.jboss.org/nexus/content/groups/public/</url>
+ <layout>default</layout>
+ <releases>
+ <enabled>true</enabled>
+ </releases>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ </pluginRepository>
+ </pluginRepositories>
+
+ <profiles>
+
+ <!-- mvn compile -->
+ <profile>
+ <id>all</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.3.3</version>
+ <extensions>true</extensions>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>pdf</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
+ <finalName>${docname}.pdf</finalName>
+ </format>
+ <format>
+ <formatName>html</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ <format>
+ <formatName>html_single</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ <format>
+ <formatName>eclipse</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/eclipse.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+
+ <!-- mvn compile -Phtml -->
+ <profile>
+ <id>html</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.3.3</version>
+ <extensions>true</extensions>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>html</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+
+ <!-- mvn compile -Phtml-single -->
+ <profile>
+ <id>html-single</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.3.3</version>
+ <extensions>true</extensions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+
+ <!-- mvn compile -Ppdf -->
+ <profile>
+ <id>pdf</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.3.3</version>
+ <extensions>true</extensions>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>pdf</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
+ <finalName>${docname}.pdf</finalName>
+ </format>
+ </formats>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+
+ <!-- mvn compile -Peclipse -->
+ <profile>
+ <id>eclipse</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.3.3</version>
+ <extensions>true</extensions>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>eclipse</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/eclipse.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+
+ </profiles>
+ <build>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.3.3</version>
+ <extensions>true</extensions>
+ <dependencies>
+ <dependency>
+ <groupId>org.jboss.pressgang</groupId>
+ <artifactId>pressgang-xslt</artifactId>
+ <version>1.2.0</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss</groupId>
+ <artifactId>jbossorg-jdocbook-style</artifactId>
+ <version>1.1.1</version>
+ <type>jdocbook-style</type>
+ </dependency>
+ </dependencies>
+ <configuration>
+ <sourceDirectory>${project.basedir}</sourceDirectory>
+ <!-- <sourceDocumentName>${docname}.xml</sourceDocumentName> -->
+ <sourceDocumentName>master.xml</sourceDocumentName>
+ <masterTranslation>en-US</masterTranslation>
+ <imageResource>
+ <directory>${project.basedir}/en-US</directory>
+ <includes>
+ <include>images/**/*</include>
+ </includes>
+ </imageResource>
+ <formats>
+ <format>
+ <formatName>pdf</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
+ <finalName>${pdf.name}</finalName>
+ </format>
+ <format>
+ <formatName>html</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ <format>
+ <formatName>html_single</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ <format>
+ <formatName>eclipse</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/eclipse.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ <options>
+ <xincludeSupported>true</xincludeSupported>
+ <xmlTransformerType>saxon</xmlTransformerType>
+ <docbookVersion>1.72.0</docbookVersion>
+ <localeSeparator>-</localeSeparator>
+ <transformerParameters>
+ <property>
+ <name>javax.xml.parsers.DocumentBuilderFactory</name>
+ <value>org.apache.xerces.jaxp.DocumentBuilderFactoryImpl</value>
+ </property>
+ <property>
+ <name>javax.xml.parsers.SAXParserFactory</name>
+ <value>org.apache.xerces.jaxp.SAXParserFactoryImpl</value>
+ </property>
+ </transformerParameters>
+ </options>
+ </configuration>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ </build>
+</project>
15 years, 5 months
JBoss Tools SVN: r26787 - trunk/deltacloud/docs/Cloud_Tools_Reference_Guide.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2010-11-21 18:15:47 -0500 (Sun, 21 Nov 2010)
New Revision: 26787
Modified:
trunk/deltacloud/docs/Cloud_Tools_Reference_Guide/pom.xml
Log:
updated with jboss community jdocbook
Modified: trunk/deltacloud/docs/Cloud_Tools_Reference_Guide/pom.xml
===================================================================
--- trunk/deltacloud/docs/Cloud_Tools_Reference_Guide/pom.xml 2010-11-21 23:10:21 UTC (rev 26786)
+++ trunk/deltacloud/docs/Cloud_Tools_Reference_Guide/pom.xml 2010-11-21 23:15:47 UTC (rev 26787)
@@ -1,171 +1,269 @@
-<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.tools</groupId>
- <artifactId>cloud-tools-reference-guide-en-US</artifactId>
- <version>1.0-SNAPSHOT</version>
- <packaging>jdocbook</packaging>
- <name>Cloud_Tools_Reference_Guide</name>
- <profiles>
- <profile>
- <id>release</id>
- <properties>
- <master>master_output.xml</master>
- <xsl-single>classpath:/xslt/com/jboss/tools/xhtml-single-release.xsl</xsl-single>
- <xsl-chunked>classpath:/xslt/com/jboss/tools/xhtml-release.xsl</xsl-chunked>
- <xsl-pdf>classpath:/xslt/com/jboss/tools/pdf.xsl</xsl-pdf>
- </properties>
- </profile>
- <profile>
- <id>releaseTest</id>
- <properties>
- <master>master_output.xml</master>
- <xsl-single>classpath:/xslt/com/jboss/tools/xhtml-single-release-nomarker.xsl</xsl-single>
- <xsl-chunked>classpath:/xslt/com/jboss/tools/xhtml-release-nomarker.xsl</xsl-chunked>
- <xsl-pdf>classpath:/xslt/com/jboss/tools/pdf.xsl</xsl-pdf>
- </properties>
- </profile>
- <profile>
- <id>releaseJBDS</id>
- <properties>
- <master>master_output.xml</master>
- <xsl-single>classpath:/xslt/com/jboss/tools/xhtml-single-release.xsl</xsl-single>
- <xsl-chunked>classpath:/xslt/com/jboss/tools/xhtml-release.xsl</xsl-chunked>
- <xsl-pdf>classpath:/xslt/com/jboss/tools/pdf.xsl</xsl-pdf>
- <cssdir>${pom.basedir}/target/docbook/staging/css/com/css</cssdir>
- </properties>
- </profile>
- <profile>
- <id>diffmk</id>
- <properties>
- <master>master_output.xml</master>
- <xsl-single>classpath:/xslt/com/jboss/tools/xhtml-single-diff.xsl</xsl-single>
- <xsl-chunked>classpath:/xslt/com/jboss/tools/xhtml-diff.xsl</xsl-chunked>
- <xsl-pdf>classpath:/xslt/com/jboss/tools/pdf-diff.xsl</xsl-pdf>
- </properties>
- </profile>
- </profiles>
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-plugin</artifactId>
- <version>2.2.1</version>
- <extensions>true</extensions>
- <dependencies>
- <dependency>
- <groupId>org.jboss.tools</groupId>
- <artifactId>jbosstools-jdocbook-style</artifactId>
- <type>jdocbook-style</type>
- <version>1.0.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.jboss.tools</groupId>
- <artifactId>jbosstools-docbook-xslt</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </dependency>
- </dependencies>
- <configuration>
- <sourceDocumentName>${master}</sourceDocumentName>
- <sourceDirectory>${pom.basedir}</sourceDirectory>
- <imageResource>
- <directory>${pom.basedir}/en-US</directory>
- <includes>
- <include>images/**/*</include>
- </includes>
- </imageResource>
- <cssResource>
- <directory>${cssdir}</directory>
- </cssResource>
-
- <formats>
- <format>
- <formatName>pdf</formatName>
- <stylesheetResource>${xsl-pdf}</stylesheetResource>
- <finalName>${project.name}.pdf</finalName>
- </format>
- <format>
- <formatName>html</formatName>
- <stylesheetResource>${xsl-chunked}</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- <format>
- <formatName>html_single</formatName>
- <stylesheetResource>${xsl-single}</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- <format>
- <formatName>eclipse</formatName>
- <stylesheetResource>classpath:/xslt/com/jboss/tools/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>
- <plugin>
- <artifactId>maven-clean-plugin</artifactId>
- <version>2.4</version>
- <executions>
- <execution>
- <id>clean</id>
- <phase>package</phase>
- <goals>
- <goal>clean</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <excludeDefaultDirectories>true</excludeDefaultDirectories>
- <filesets>
- <fileset>
- <directory>${pom.basedir}/target/docbook/publish/en-US/</directory>
- <includes>
- <include>html/com/</include>
- <include>html/org/</include>
- <include>html_single/com/</include>
- <include>html_single/org/</include>
- <include>eclipse/com/</include>
- <include>eclipse/org/</include>
- </includes>
- <followSymlinks>false</followSymlinks>
- </fileset>
- </filesets>
- </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>
- <xsl-single>classpath:/xslt/org/jboss/tools/xhtml-single.xsl</xsl-single>
- <xsl-chunked>classpath:/xslt/org/jboss/tools/xhtml.xsl</xsl-chunked>
- <xsl-pdf>classpath:/xslt/org/jboss/tools/pdf.xsl</xsl-pdf>
- <stylesdir>classpath:/xslt</stylesdir>
- <cssdir>${pom.basedir}/target/docbook/staging/css/org/css</cssdir>
- <master>master.xml</master>
- </properties>
-</project>
+<?xml version="1.0" encoding="utf-8"?>
+<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.tools</groupId>
+ <artifactId>${docname}-${translation}</artifactId>
+ <version>1.0</version>
+ <packaging>jdocbook</packaging>
+ <name>${bookname}-(${translation})</name>
+
+ <properties>
+ <translation>en-US</translation>
+ <docname>Cloud_Tools_Reference_Guid</docname>
+ <bookname>Cloud Tools Reference Guid</bookname>
+ </properties>
+
+ <repositories>
+ <repository>
+ <id>jboss-public-repository-group</id>
+ <name>JBoss Public Maven Repository Group</name>
+ <url>https://repository.jboss.org/nexus/content/groups/public/</url>
+ <layout>default</layout>
+ <releases>
+ <enabled>true</enabled>
+ <updatePolicy>never</updatePolicy>
+ </releases>
+ <snapshots>
+ <enabled>true</enabled>
+ <updatePolicy>never</updatePolicy>
+ </snapshots>
+ </repository>
+ </repositories>
+ <pluginRepositories>
+ <pluginRepository>
+ <id>jboss-public-repository-group</id>
+ <name>JBoss Public Maven Repository Group</name>
+ <url>https://repository.jboss.org/nexus/content/groups/public/</url>
+ <layout>default</layout>
+ <releases>
+ <enabled>true</enabled>
+ </releases>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ </pluginRepository>
+ </pluginRepositories>
+
+ <profiles>
+
+ <!-- mvn compile -->
+ <profile>
+ <id>all</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.3.3</version>
+ <extensions>true</extensions>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>pdf</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
+ <finalName>${docname}.pdf</finalName>
+ </format>
+ <format>
+ <formatName>html</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ <format>
+ <formatName>html_single</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ <format>
+ <formatName>eclipse</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/eclipse.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+
+ <!-- mvn compile -Phtml -->
+ <profile>
+ <id>html</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.3.3</version>
+ <extensions>true</extensions>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>html</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+
+ <!-- mvn compile -Phtml-single -->
+ <profile>
+ <id>html-single</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.3.3</version>
+ <extensions>true</extensions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+
+ <!-- mvn compile -Ppdf -->
+ <profile>
+ <id>pdf</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.3.3</version>
+ <extensions>true</extensions>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>pdf</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
+ <finalName>${docname}.pdf</finalName>
+ </format>
+ </formats>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+
+ <!-- mvn compile -Peclipse -->
+ <profile>
+ <id>eclipse</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.3.3</version>
+ <extensions>true</extensions>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>eclipse</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/eclipse.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+
+ </profiles>
+ <build>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.3.3</version>
+ <extensions>true</extensions>
+ <dependencies>
+ <dependency>
+ <groupId>org.jboss.pressgang</groupId>
+ <artifactId>pressgang-xslt</artifactId>
+ <version>1.2.0</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss</groupId>
+ <artifactId>jbossorg-jdocbook-style</artifactId>
+ <version>1.1.1</version>
+ <type>jdocbook-style</type>
+ </dependency>
+ </dependencies>
+ <configuration>
+ <sourceDirectory>${project.basedir}</sourceDirectory>
+ <!-- <sourceDocumentName>${docname}.xml</sourceDocumentName> -->
+ <sourceDocumentName>master.xml</sourceDocumentName>
+ <masterTranslation>en-US</masterTranslation>
+ <imageResource>
+ <directory>${project.basedir}/en-US</directory>
+ <includes>
+ <include>images/**/*</include>
+ </includes>
+ </imageResource>
+ <formats>
+ <format>
+ <formatName>pdf</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
+ <finalName>${pdf.name}</finalName>
+ </format>
+ <format>
+ <formatName>html</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ <format>
+ <formatName>html_single</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ <format>
+ <formatName>eclipse</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/eclipse.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ <options>
+ <xincludeSupported>true</xincludeSupported>
+ <xmlTransformerType>saxon</xmlTransformerType>
+ <docbookVersion>1.72.0</docbookVersion>
+ <localeSeparator>-</localeSeparator>
+ <transformerParameters>
+ <property>
+ <name>javax.xml.parsers.DocumentBuilderFactory</name>
+ <value>org.apache.xerces.jaxp.DocumentBuilderFactoryImpl</value>
+ </property>
+ <property>
+ <name>javax.xml.parsers.SAXParserFactory</name>
+ <value>org.apache.xerces.jaxp.SAXParserFactoryImpl</value>
+ </property>
+ </transformerParameters>
+ </options>
+ </configuration>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ </build>
+</project>
15 years, 5 months
JBoss Tools SVN: r26786 - trunk/birt/docs.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2010-11-21 18:10:21 -0500 (Sun, 21 Nov 2010)
New Revision: 26786
Modified:
trunk/birt/docs/pom.xml
Log:
updated with new JBoss community jdocbook
Modified: trunk/birt/docs/pom.xml
===================================================================
--- trunk/birt/docs/pom.xml 2010-11-21 22:59:28 UTC (rev 26785)
+++ trunk/birt/docs/pom.xml 2010-11-21 23:10:21 UTC (rev 26786)
@@ -1,181 +1,269 @@
-<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.tools</groupId>
- <artifactId>birt-reference-guide-en-US</artifactId>
- <version>1.0-SNAPSHOT</version>
- <packaging>jdocbook</packaging>
- <name>Birt_Reference_Guide</name>
-
- <profiles>
- <profile>
- <id>release</id>
- <properties>
- <master>master_output.xml</master>
- <xsl-single>classpath:/xslt/org/jboss/tools/xhtml-single-release.xsl</xsl-single>
- <xsl-chunked>classpath:/xslt/org/jboss/tools/xhtml-release.xsl</xsl-chunked>
- <xsl-pdf>classpath:/xslt/org/jboss/tools/pdf.xsl</xsl-pdf>
- </properties>
- </profile>
- <profile>
- <id>releaseTest</id>
- <properties>
- <master>master_output.xml</master>
- <xsl-single>classpath:/xslt/org/jboss/tools/xhtml-single-release-nomarker.xsl</xsl-single>
- <xsl-chunked>classpath:/xslt/org/jboss/tools/xhtml-release-nomarker.xsl</xsl-chunked>
- <xsl-pdf>classpath:/xslt/org/jboss/tools/pdf.xsl</xsl-pdf>
- </properties>
- </profile>
- <profile>
- <id>releaseJBDS</id>
- <properties>
- <master>master_output.xml</master>
- <xsl-single>classpath:/xslt/com/jboss/tools/xhtml-single-release.xsl</xsl-single>
- <xsl-chunked>classpath:/xslt/com/jboss/tools/xhtml-release.xsl</xsl-chunked>
- <xsl-pdf>classpath:/xslt/com/jboss/tools/pdf.xsl</xsl-pdf>
- <cssdir>${pom.basedir}/target/docbook/staging/css/com/css</cssdir>
- </properties>
- </profile>
- <profile>
- <id>diffmk</id>
- <properties>
- <master>master_output.xml</master>
- <xsl-single>classpath:/xslt/org/jboss/tools/xhtml-single-diff.xsl</xsl-single>
- <xsl-chunked>classpath:/xslt/org/jboss/tools/xhtml-diff.xsl</xsl-chunked>
- <xsl-pdf>classpath:/xslt/org/jboss/tools/pdf-diff.xsl</xsl-pdf>
- </properties>
- </profile>
- </profiles>
-
- <build>
-
- <plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-plugin</artifactId>
- <version>2.2.1</version>
- <extensions>true</extensions>
-
- <dependencies>
- <dependency>
- <groupId>org.jboss.tools</groupId>
- <artifactId>jbosstools-jdocbook-style</artifactId>
- <type>jdocbook-style</type>
- <version>1.0.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.jboss.tools</groupId>
- <artifactId>jbosstools-docbook-xslt</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </dependency>
-
-
- </dependencies>
-
- <configuration>
- <sourceDocumentName>${master}</sourceDocumentName>
- <sourceDirectory>${pom.basedir}</sourceDirectory>
- <imageResource>
- <directory>${pom.basedir}/en-US</directory>
- <includes>
- <include>images/**/*</include>
- <include>files/*</include>
- </includes>
- </imageResource>
- <cssResource>
- <directory>${cssdir}</directory>
- </cssResource>
-
- <formats>
- <format>
- <formatName>pdf</formatName>
- <stylesheetResource>${xsl-pdf}</stylesheetResource>
- <finalName>${project.name}.pdf</finalName>
- </format>
- <format>
- <formatName>html</formatName>
- <stylesheetResource>${xsl-chunked}</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- <format>
- <formatName>html_single</formatName>
- <stylesheetResource>${xsl-single}</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- <format>
- <formatName>eclipse</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/tools/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>
- <plugin>
- <artifactId>maven-clean-plugin</artifactId>
- <version>2.4</version>
- <executions>
- <execution>
- <id>clean</id>
- <phase>package</phase>
- <goals>
- <goal>clean</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <excludeDefaultDirectories>true</excludeDefaultDirectories>
- <filesets>
- <fileset>
- <directory>${pom.basedir}/target/docbook/publish/en-US/</directory>
- <includes>
- <include>html/org/</include>
- <include>html/org/</include>
- <include>html_single/org/</include>
- <include>html_single/org/</include>
- <include>eclipse/org/</include>
- <include>eclipse/org/</include>
- </includes>
- <followSymlinks>false</followSymlinks>
- </fileset>
- </filesets>
- </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>
- <xsl-single>classpath:/xslt/org/jboss/tools/xhtml-single.xsl</xsl-single>
- <xsl-chunked>classpath:/xslt/org/jboss/tools/xhtml.xsl</xsl-chunked>
- <xsl-pdf>classpath:/xslt/org/jboss/tools/pdf.xsl</xsl-pdf>
- <stylesdir>classpath:/xslt</stylesdir>
- <cssdir>${pom.basedir}/target/docbook/staging/css/org/css</cssdir>
- <master>master.xml</master>
- </properties>
-</project>
+<?xml version="1.0" encoding="utf-8"?>
+<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.tools</groupId>
+ <artifactId>${docname}-${translation}</artifactId>
+ <version>1.0</version>
+ <packaging>jdocbook</packaging>
+ <name>${bookname}-(${translation})</name>
+
+ <properties>
+ <translation>en-US</translation>
+ <docname>Birt_Reference_Guide</docname>
+ <bookname>Birt Reference Guide</bookname>
+ </properties>
+
+ <repositories>
+ <repository>
+ <id>jboss-public-repository-group</id>
+ <name>JBoss Public Maven Repository Group</name>
+ <url>https://repository.jboss.org/nexus/content/groups/public/</url>
+ <layout>default</layout>
+ <releases>
+ <enabled>true</enabled>
+ <updatePolicy>never</updatePolicy>
+ </releases>
+ <snapshots>
+ <enabled>true</enabled>
+ <updatePolicy>never</updatePolicy>
+ </snapshots>
+ </repository>
+ </repositories>
+ <pluginRepositories>
+ <pluginRepository>
+ <id>jboss-public-repository-group</id>
+ <name>JBoss Public Maven Repository Group</name>
+ <url>https://repository.jboss.org/nexus/content/groups/public/</url>
+ <layout>default</layout>
+ <releases>
+ <enabled>true</enabled>
+ </releases>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ </pluginRepository>
+ </pluginRepositories>
+
+ <profiles>
+
+ <!-- mvn compile -->
+ <profile>
+ <id>all</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.3.3</version>
+ <extensions>true</extensions>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>pdf</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
+ <finalName>${docname}.pdf</finalName>
+ </format>
+ <format>
+ <formatName>html</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ <format>
+ <formatName>html_single</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ <format>
+ <formatName>eclipse</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/eclipse.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+
+ <!-- mvn compile -Phtml -->
+ <profile>
+ <id>html</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.3.3</version>
+ <extensions>true</extensions>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>html</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+
+ <!-- mvn compile -Phtml-single -->
+ <profile>
+ <id>html-single</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.3.3</version>
+ <extensions>true</extensions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+
+ <!-- mvn compile -Ppdf -->
+ <profile>
+ <id>pdf</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.3.3</version>
+ <extensions>true</extensions>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>pdf</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
+ <finalName>${docname}.pdf</finalName>
+ </format>
+ </formats>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+
+ <!-- mvn compile -Peclipse -->
+ <profile>
+ <id>eclipse</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.3.3</version>
+ <extensions>true</extensions>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>eclipse</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/eclipse.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+
+ </profiles>
+ <build>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.3.3</version>
+ <extensions>true</extensions>
+ <dependencies>
+ <dependency>
+ <groupId>org.jboss.pressgang</groupId>
+ <artifactId>pressgang-xslt</artifactId>
+ <version>1.2.0</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss</groupId>
+ <artifactId>jbossorg-jdocbook-style</artifactId>
+ <version>1.1.1</version>
+ <type>jdocbook-style</type>
+ </dependency>
+ </dependencies>
+ <configuration>
+ <sourceDirectory>${project.basedir}</sourceDirectory>
+ <!-- <sourceDocumentName>${docname}.xml</sourceDocumentName> -->
+ <sourceDocumentName>master.xml</sourceDocumentName>
+ <masterTranslation>en-US</masterTranslation>
+ <imageResource>
+ <directory>${project.basedir}/en-US</directory>
+ <includes>
+ <include>images/**/*</include>
+ </includes>
+ </imageResource>
+ <formats>
+ <format>
+ <formatName>pdf</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
+ <finalName>${pdf.name}</finalName>
+ </format>
+ <format>
+ <formatName>html</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ <format>
+ <formatName>html_single</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ <format>
+ <formatName>eclipse</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/eclipse.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ <options>
+ <xincludeSupported>true</xincludeSupported>
+ <xmlTransformerType>saxon</xmlTransformerType>
+ <docbookVersion>1.72.0</docbookVersion>
+ <localeSeparator>-</localeSeparator>
+ <transformerParameters>
+ <property>
+ <name>javax.xml.parsers.DocumentBuilderFactory</name>
+ <value>org.apache.xerces.jaxp.DocumentBuilderFactoryImpl</value>
+ </property>
+ <property>
+ <name>javax.xml.parsers.SAXParserFactory</name>
+ <value>org.apache.xerces.jaxp.SAXParserFactoryImpl</value>
+ </property>
+ </transformerParameters>
+ </options>
+ </configuration>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ </build>
+</project>
15 years, 5 months
JBoss Tools SVN: r26785 - trunk/bpel/docs/reference.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2010-11-21 17:59:28 -0500 (Sun, 21 Nov 2010)
New Revision: 26785
Modified:
trunk/bpel/docs/reference/pom.xml
Log:
updated with new pom file that uses general JBoss community jdocbook
Modified: trunk/bpel/docs/reference/pom.xml
===================================================================
--- trunk/bpel/docs/reference/pom.xml 2010-11-20 21:10:09 UTC (rev 26784)
+++ trunk/bpel/docs/reference/pom.xml 2010-11-21 22:59:28 UTC (rev 26785)
@@ -1,210 +1,269 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<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.tools</groupId>
- <artifactId>BPEL_Guide-en-US</artifactId>
- <version>1.0-SNAPSHOT</version>
- <packaging>jdocbook</packaging>
- <name>JBoss BPEL User Guide</name>
-
- <profiles>
- <profile>
- <id>release</id>
- <properties>
- <master>master_output.xml</master>
- <xsl-single>classpath:/xslt/org/jboss/tools/xhtml-single-release.xsl</xsl-single>
- <xsl-chunked>classpath:/xslt/org/jboss/tools/xhtml-release.xsl</xsl-chunked>
- <xsl-pdf>classpath:/xslt/org/jboss/tools/pdf.xsl</xsl-pdf>
- </properties>
- </profile>
- <profile>
- <id>releaseTest</id>
- <properties>
- <master>master_output.xml</master>
- <xsl-single>classpath:/xslt/org/jboss/tools/xhtml-single-release-nomarker.xsl</xsl-single>
- <xsl-chunked>classpath:/xslt/org/jboss/tools/xhtml-release-nomarker.xsl</xsl-chunked>
- <xsl-pdf>classpath:/xslt/org/jboss/tools/pdf.xsl</xsl-pdf>
- </properties>
- </profile>
- <profile>
- <id>releaseJBDS</id>
- <properties>
- <master>master_output.xml</master>
- <xsl-single>classpath:/xslt/com/jboss/tools/xhtml-single-release.xsl</xsl-single>
- <xsl-chunked>classpath:/xslt/com/jboss/tools/xhtml-release.xsl</xsl-chunked>
- <xsl-pdf>classpath:/xslt/com/jboss/tools/pdf.xsl</xsl-pdf>
- <cssdir>${pom.basedir}/target/docbook/staging/css/com/css</cssdir>
- </properties>
- </profile>
- <profile>
- <id>diffmk</id>
- <properties>
- <master>master_output.xml</master>
- <xsl-single>classpath:/xslt/org/jboss/tools/xhtml-single-diff.xsl</xsl-single>
- <xsl-chunked>classpath:/xslt/org/jboss/tools/xhtml-diff.xsl</xsl-chunked>
- <xsl-pdf>classpath:/xslt/org/jboss/tools/pdf-diff.xsl</xsl-pdf>
- </properties>
- </profile>
- </profiles>
-
- <build>
-
- <plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-plugin</artifactId>
- <version>2.2.1</version>
- <extensions>true</extensions>
-
- <dependencies>
- <dependency>
- <groupId>org.jboss.tools</groupId>
- <artifactId>jbosstools-jdocbook-style</artifactId>
- <type>jdocbook-style</type>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>org.jboss.tools</groupId>
- <artifactId>jbosstools-docbook-xslt</artifactId>
- <version>1.0.0</version>
- </dependency>
-
-
- </dependencies>
-
- <configuration>
- <sourceDocumentName>${master}</sourceDocumentName>
- <sourceDirectory>${pom.basedir}</sourceDirectory>
- <imageResource>
- <directory>${pom.basedir}/en-US</directory>
- <includes>
- <include>images/**/*</include>
- <include>files/*</include>
- </includes>
- </imageResource>
- <cssResource>
- <directory>${cssdir}</directory>
- </cssResource>
-
- <formats>
- <format>
- <formatName>pdf</formatName>
- <stylesheetResource>${xsl-pdf}</stylesheetResource>
- <finalName>${project.name}.pdf</finalName>
- </format>
- <format>
- <formatName>html</formatName>
- <stylesheetResource>${xsl-chunked}</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- <format>
- <formatName>html_single</formatName>
- <stylesheetResource>${xsl-single}</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- <format>
- <formatName>eclipse</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/tools/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>
- <plugin>
- <artifactId>maven-clean-plugin</artifactId>
- <version>2.4</version>
- <executions>
- <execution>
- <id>clean</id>
- <phase>package</phase>
- <goals>
- <goal>clean</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <excludeDefaultDirectories>true</excludeDefaultDirectories>
- <filesets>
- <fileset>
- <directory>${pom.basedir}/target/docbook/publish/en-US/</directory>
- <includes>
- <include>html/org/</include>
- <include>html/org/</include>
- <include>html_single/org/</include>
- <include>html_single/org/</include>
- <include>eclipse/org/</include>
- <include>eclipse/org/</include>
- </includes>
- <followSymlinks>false</followSymlinks>
- </fileset>
- </filesets>
- </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>
- <xsl-single>classpath:/xslt/org/jboss/tools/xhtml-single.xsl</xsl-single>
- <xsl-chunked>classpath:/xslt/org/jboss/tools/xhtml.xsl</xsl-chunked>
- <xsl-pdf>classpath:/xslt/org/jboss/tools/pdf.xsl</xsl-pdf>
- <stylesdir>classpath:/xslt</stylesdir>
- <cssdir>${pom.basedir}/target/docbook/staging/css/org/css</cssdir>
- <master>master.xml</master>
- </properties>
-
- <repositories>
- <repository>
- <id>jboss-public-repository-group</id>
- <name>JBoss Public Repository Group</name>
- <url>http://repository.jboss.org/nexus/content/groups/public/</url>
- <layout>default</layout>
- <releases>
- <enabled>true</enabled>
- <updatePolicy>never</updatePolicy>
- </releases>
- <snapshots>
- <enabled>true</enabled>
- <updatePolicy>never</updatePolicy>
- </snapshots>
- </repository>
- </repositories>
- <pluginRepositories>
- <pluginRepository>
- <id>jboss-public-repository-group</id>
- <name>JBoss Public Repository Group</name>
- <url>http://repository.jboss.org/nexus/content/groups/public/</url>
- <releases>
- <enabled>true</enabled>
- </releases>
- <snapshots>
- <enabled>true</enabled>
- </snapshots>
- </pluginRepository>
- </pluginRepositories>
-</project>
+<?xml version="1.0" encoding="utf-8"?>
+<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.tools</groupId>
+ <artifactId>${docname}-${translation}</artifactId>
+ <version>1.0</version>
+ <packaging>jdocbook</packaging>
+ <name>${bookname}-(${translation})</name>
+
+ <properties>
+ <translation>en-US</translation>
+ <docname>JBoss_BPEL_User_Guide</docname>
+ <bookname>JBoss BPEL User Guide</bookname>
+ </properties>
+
+ <repositories>
+ <repository>
+ <id>jboss-public-repository-group</id>
+ <name>JBoss Public Maven Repository Group</name>
+ <url>https://repository.jboss.org/nexus/content/groups/public/</url>
+ <layout>default</layout>
+ <releases>
+ <enabled>true</enabled>
+ <updatePolicy>never</updatePolicy>
+ </releases>
+ <snapshots>
+ <enabled>true</enabled>
+ <updatePolicy>never</updatePolicy>
+ </snapshots>
+ </repository>
+ </repositories>
+ <pluginRepositories>
+ <pluginRepository>
+ <id>jboss-public-repository-group</id>
+ <name>JBoss Public Maven Repository Group</name>
+ <url>https://repository.jboss.org/nexus/content/groups/public/</url>
+ <layout>default</layout>
+ <releases>
+ <enabled>true</enabled>
+ </releases>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ </pluginRepository>
+ </pluginRepositories>
+
+ <profiles>
+
+ <!-- mvn compile -->
+ <profile>
+ <id>all</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.3.3</version>
+ <extensions>true</extensions>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>pdf</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
+ <finalName>${docname}.pdf</finalName>
+ </format>
+ <format>
+ <formatName>html</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ <format>
+ <formatName>html_single</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ <format>
+ <formatName>eclipse</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/eclipse.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+
+ <!-- mvn compile -Phtml -->
+ <profile>
+ <id>html</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.3.3</version>
+ <extensions>true</extensions>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>html</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+
+ <!-- mvn compile -Phtml-single -->
+ <profile>
+ <id>html-single</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.3.3</version>
+ <extensions>true</extensions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+
+ <!-- mvn compile -Ppdf -->
+ <profile>
+ <id>pdf</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.3.3</version>
+ <extensions>true</extensions>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>pdf</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
+ <finalName>${docname}.pdf</finalName>
+ </format>
+ </formats>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+
+ <!-- mvn compile -Peclipse -->
+ <profile>
+ <id>eclipse</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.3.3</version>
+ <extensions>true</extensions>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>eclipse</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/eclipse.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+
+ </profiles>
+ <build>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.3.3</version>
+ <extensions>true</extensions>
+ <dependencies>
+ <dependency>
+ <groupId>org.jboss.pressgang</groupId>
+ <artifactId>pressgang-xslt</artifactId>
+ <version>1.2.0</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss</groupId>
+ <artifactId>jbossorg-jdocbook-style</artifactId>
+ <version>1.1.1</version>
+ <type>jdocbook-style</type>
+ </dependency>
+ </dependencies>
+ <configuration>
+ <sourceDirectory>${project.basedir}</sourceDirectory>
+ <!-- <sourceDocumentName>${docname}.xml</sourceDocumentName> -->
+ <sourceDocumentName>master.xml</sourceDocumentName>
+ <masterTranslation>en-US</masterTranslation>
+ <imageResource>
+ <directory>${project.basedir}/en-US</directory>
+ <includes>
+ <include>images/**/*</include>
+ </includes>
+ </imageResource>
+ <formats>
+ <format>
+ <formatName>pdf</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
+ <finalName>${pdf.name}</finalName>
+ </format>
+ <format>
+ <formatName>html</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ <format>
+ <formatName>html_single</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ <format>
+ <formatName>eclipse</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/eclipse.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ <options>
+ <xincludeSupported>true</xincludeSupported>
+ <xmlTransformerType>saxon</xmlTransformerType>
+ <docbookVersion>1.72.0</docbookVersion>
+ <localeSeparator>-</localeSeparator>
+ <transformerParameters>
+ <property>
+ <name>javax.xml.parsers.DocumentBuilderFactory</name>
+ <value>org.apache.xerces.jaxp.DocumentBuilderFactoryImpl</value>
+ </property>
+ <property>
+ <name>javax.xml.parsers.SAXParserFactory</name>
+ <value>org.apache.xerces.jaxp.SAXParserFactoryImpl</value>
+ </property>
+ </transformerParameters>
+ </options>
+ </configuration>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ </build>
+</project>
15 years, 5 months
JBoss Tools SVN: r26784 - branches.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-11-20 16:10:09 -0500 (Sat, 20 Nov 2010)
New Revision: 26784
Added:
branches/jbosstools-3.2.0.Beta2/
Log:
Branch for 3.2.0.Beta2
Copied: branches/jbosstools-3.2.0.Beta2 (from rev 26783, trunk)
15 years, 5 months
JBoss Tools SVN: r26783 - trunk/drools/tests/org.jboss.tools.drools.ui.bot.test.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2010-11-19 16:34:26 -0500 (Fri, 19 Nov 2010)
New Revision: 26783
Modified:
trunk/drools/tests/org.jboss.tools.drools.ui.bot.test/pom.xml
Log:
https://jira.jboss.org/browse/JBIDE-6582 org.jboss.tools.drools.ui.bot.test takes more than 15 mins - split into smaller pieces?
useUIThread set to false for test execution configuration which overrides default value configured as true in build/parent/pom.xml
Modified: trunk/drools/tests/org.jboss.tools.drools.ui.bot.test/pom.xml
===================================================================
--- trunk/drools/tests/org.jboss.tools.drools.ui.bot.test/pom.xml 2010-11-19 18:00:22 UTC (rev 26782)
+++ trunk/drools/tests/org.jboss.tools.drools.ui.bot.test/pom.xml 2010-11-19 21:34:26 UTC (rev 26783)
@@ -11,4 +11,16 @@
<artifactId>org.jboss.tools.drools.ui.bot.test</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.sonatype.tycho</groupId>
+ <artifactId>maven-osgi-test-plugin</artifactId>
+ <version>${tychoVersion}</version>
+ <configuration>
+ <useUIThread>false</useUIThread>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
</project>
15 years, 5 months
JBoss Tools SVN: r26782 - in workspace/bfitzpat/org.jboss.tools.py.project.converter: src and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: bfitzpat
Date: 2010-11-19 13:00:22 -0500 (Fri, 19 Nov 2010)
New Revision: 26782
Added:
workspace/bfitzpat/org.jboss.tools.py.project.converter/readme.txt
Modified:
workspace/bfitzpat/org.jboss.tools.py.project.converter/src/Main.py
Log:
JBIDE-6177 - updates
Added: workspace/bfitzpat/org.jboss.tools.py.project.converter/readme.txt
===================================================================
--- workspace/bfitzpat/org.jboss.tools.py.project.converter/readme.txt (rev 0)
+++ workspace/bfitzpat/org.jboss.tools.py.project.converter/readme.txt 2010-11-19 18:00:22 UTC (rev 26782)
@@ -0,0 +1,33 @@
+# Python Project Converter
+# 19-NOV-2010
+# bfitzpat
+
+The org.jboss.tools.py.project.converter project requires the PyDev
+tooling from Aptana that's available as part of Helios. Install that
+prior to loading this project.
+
+You will also probably have to update the python runtime for your
+particular install. Initially this was done on RHEL 5, so your mileage
+may vary with the existing setup.
+
+The scripts are driven by Main.py.
+
+Update the path to your runtime and provide a list of the projects you
+want to import and run it. And change values in constants.py as far
+as the name of the runtime you want and ESB version. Right now it's set
+for:
+
+ # name of the runtime target server - CHANGE THIS TO BE YOUR LOCAL SERVER NAME
+ runtimeTargetServerName = 'JBoss SOA-P 5.1 Runtime Server'
+
+ # version for ESB
+ esbVersion = '4.4'
+
+I've had luck with ESB projects such as deadletter, the various
+helloworld_* variants, and so on. Basically run the script on your
+selected project and import the project into Eclipse.
+
+But this is just a starting place. We can add to it as we find other
+projects we want to convert and figure out how to add appropriate bits
+to auto-generate for Eclipse to be happy.
+
\ No newline at end of file
Modified: workspace/bfitzpat/org.jboss.tools.py.project.converter/src/Main.py
===================================================================
--- workspace/bfitzpat/org.jboss.tools.py.project.converter/src/Main.py 2010-11-19 17:47:14 UTC (rev 26781)
+++ workspace/bfitzpat/org.jboss.tools.py.project.converter/src/Main.py 2010-11-19 18:00:22 UTC (rev 26782)
@@ -16,14 +16,18 @@
toconvert = []
-toconvert.append('/home/bfitzpat/NotBackedUp/runtimes/jboss-soa-p-5/jboss-as/samples/quickstarts/camel_helloworld')
-toconvert.append('/home/bfitzpat/NotBackedUp/runtimes/jboss-soa-p-5/jboss-as/samples/quickstarts/business_ruleservice_cep')
-toconvert.append('/home/bfitzpat/NotBackedUp/runtimes/jboss-soa-p-5/jboss-as/samples/quickstarts/deadletter')
-toconvert.append('/home/bfitzpat/NotBackedUp/runtimes/jboss-soa-p-5/jboss-as/samples/quickstarts/helloworld_file_action')
-toconvert.append('/home/bfitzpat/NotBackedUp/runtimes/jboss-soa-p-5/jboss-as/samples/quickstarts/helloworld_file_notifier')
-toconvert.append('/home/bfitzpat/NotBackedUp/runtimes/jboss-soa-p-5/jboss-as/samples/quickstarts/helloworld_ftp_action')
+# change this list to be appropriate to your own runtime directory and
+# list of projects to convert
+localruntime = '/home/bfitzpat/NotBackedUp/runtimes/jboss-soa-p-5/jboss-as/samples/quickstarts'
+toconvert.append('camel_helloworld')
+toconvert.append('business_ruleservice_cep')
+toconvert.append('deadletter')
+toconvert.append('helloworld_file_action')
+toconvert.append('helloworld_file_notifier')
+toconvert.append('helloworld_ftp_action')
+
for x in toconvert:
print 'Starting to convert ' + x
- convert( x )
+ convert( os.path.join(localruntime, x) )
print 'Converted ' + x
15 years, 5 months
JBoss Tools SVN: r26781 - in workspace/bfitzpat/org.jboss.tools.py.project.converter: src and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: bfitzpat
Date: 2010-11-19 12:47:14 -0500 (Fri, 19 Nov 2010)
New Revision: 26781
Added:
workspace/bfitzpat/org.jboss.tools.py.project.converter/.project
workspace/bfitzpat/org.jboss.tools.py.project.converter/.pydevproject
workspace/bfitzpat/org.jboss.tools.py.project.converter/src/
workspace/bfitzpat/org.jboss.tools.py.project.converter/src/Main.py
workspace/bfitzpat/org.jboss.tools.py.project.converter/src/constants.py
workspace/bfitzpat/org.jboss.tools.py.project.converter/src/converter.py
workspace/bfitzpat/org.jboss.tools.py.project.converter/src/dir_handler.py
workspace/bfitzpat/org.jboss.tools.py.project.converter/src/file_handler.py
workspace/bfitzpat/org.jboss.tools.py.project.converter/src/rmdir_nonempty.py
workspace/bfitzpat/org.jboss.tools.py.project.converter/src/utils.py
Log:
JBIDE-6177 - checking initial version of Python conversion code into SVN
Added: workspace/bfitzpat/org.jboss.tools.py.project.converter/.project
===================================================================
--- workspace/bfitzpat/org.jboss.tools.py.project.converter/.project (rev 0)
+++ workspace/bfitzpat/org.jboss.tools.py.project.converter/.project 2010-11-19 17:47:14 UTC (rev 26781)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.jboss.tools.py.project.converter</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.python.pydev.PyDevBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.python.pydev.pythonNature</nature>
+ </natures>
+</projectDescription>
Added: workspace/bfitzpat/org.jboss.tools.py.project.converter/.pydevproject
===================================================================
--- workspace/bfitzpat/org.jboss.tools.py.project.converter/.pydevproject (rev 0)
+++ workspace/bfitzpat/org.jboss.tools.py.project.converter/.pydevproject 2010-11-19 17:47:14 UTC (rev 26781)
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<?eclipse-pydev version="1.0"?>
+
+<pydev_project>
+<pydev_property name="org.python.pydev.PYTHON_PROJECT_INTERPRETER">Default</pydev_property>
+<pydev_property name="org.python.pydev.PYTHON_PROJECT_VERSION">python 2.7</pydev_property>
+<pydev_pathproperty name="org.python.pydev.PROJECT_SOURCE_PATH">
+<path>/org.jboss.tools.py.project.converter/src</path>
+</pydev_pathproperty>
+</pydev_project>
Added: workspace/bfitzpat/org.jboss.tools.py.project.converter/src/Main.py
===================================================================
--- workspace/bfitzpat/org.jboss.tools.py.project.converter/src/Main.py (rev 0)
+++ workspace/bfitzpat/org.jboss.tools.py.project.converter/src/Main.py 2010-11-19 17:47:14 UTC (rev 26781)
@@ -0,0 +1,29 @@
+'''
+Created on Nov 16, 2010
+
+@author: bfitzpat
+'''
+import converter
+import os
+
+if __name__ == '__main__':
+ pass
+
+def convert(path):
+ string = os.path.split(path)
+ print 'Converting: ' + string[1]
+ converter.dir_to_eclipse( path )
+
+toconvert = []
+
+toconvert.append('/home/bfitzpat/NotBackedUp/runtimes/jboss-soa-p-5/jboss-as/samples/quickstarts/camel_helloworld')
+toconvert.append('/home/bfitzpat/NotBackedUp/runtimes/jboss-soa-p-5/jboss-as/samples/quickstarts/business_ruleservice_cep')
+toconvert.append('/home/bfitzpat/NotBackedUp/runtimes/jboss-soa-p-5/jboss-as/samples/quickstarts/deadletter')
+toconvert.append('/home/bfitzpat/NotBackedUp/runtimes/jboss-soa-p-5/jboss-as/samples/quickstarts/helloworld_file_action')
+toconvert.append('/home/bfitzpat/NotBackedUp/runtimes/jboss-soa-p-5/jboss-as/samples/quickstarts/helloworld_file_notifier')
+toconvert.append('/home/bfitzpat/NotBackedUp/runtimes/jboss-soa-p-5/jboss-as/samples/quickstarts/helloworld_ftp_action')
+
+for x in toconvert:
+ print 'Starting to convert ' + x
+ convert( x )
+ print 'Converted ' + x
Added: workspace/bfitzpat/org.jboss.tools.py.project.converter/src/constants.py
===================================================================
--- workspace/bfitzpat/org.jboss.tools.py.project.converter/src/constants.py (rev 0)
+++ workspace/bfitzpat/org.jboss.tools.py.project.converter/src/constants.py 2010-11-19 17:47:14 UTC (rev 26781)
@@ -0,0 +1,18 @@
+'''
+Created on Nov 18, 2010
+
+@author: bfitzpat
+'''
+
+# some constants
+srcdir = 'src'
+esbcontentdir = 'esbcontent'
+metainfdir = 'META-INF'
+settingsdir = '.settings'
+
+# name of the runtime target server - CHANGE THIS TO BE YOUR LOCAL SERVER NAME
+runtimeTargetServerName = 'JBoss SOA-P 5.1 Runtime Server'
+
+# version for ESB
+esbVersion = '4.4'
+
Added: workspace/bfitzpat/org.jboss.tools.py.project.converter/src/converter.py
===================================================================
--- workspace/bfitzpat/org.jboss.tools.py.project.converter/src/converter.py (rev 0)
+++ workspace/bfitzpat/org.jboss.tools.py.project.converter/src/converter.py 2010-11-19 17:47:14 UTC (rev 26781)
@@ -0,0 +1,113 @@
+'''
+Beginnings of a Python library to convert an example from the
+runtime example format (take ESB as an example) and create an
+Eclipse project out of it.
+
+Created on Nov 16, 2010
+
+@author: bfitzpat
+'''
+
+import os
+import file_handler
+import dir_handler
+import constants
+
+def dir_to_eclipse(in_dir):
+ # assumes mode of in_dir will be the same as eclipse_dir
+ new_mode = os.stat(in_dir).st_mode
+
+ # simply add '_eclipse' to the end of the existing project name
+ eclipse_dir_name = in_dir + '_eclipse'
+ eclipse_dir = os.path.join(os.path.split(in_dir), eclipse_dir_name)
+ string = os.path.split(eclipse_dir_name)
+ projectname = string[1]
+
+ # create the eclipse project directory
+ dir_handler.create_eclipse_project_dir(eclipse_dir, eclipse_dir_name, new_mode)
+
+ # create directories under new_dir
+ dir_handler.create_esbcontent_dir(eclipse_dir, new_mode)
+ dir_handler.create_esbcontent_metainf_dir(eclipse_dir, new_mode)
+ dir_handler.create_dotsettings_dir(eclipse_dir, new_mode)
+
+ # handle src directory - copy src in if there is src, otherwise
+ # just create empty src dir
+ dir_handler.handle_src_dir(in_dir, eclipse_dir, new_mode)
+
+ # handle copying and updating the deployment.xml file
+ file_handler.handle_deployment_xml(in_dir, eclipse_dir)
+
+ # copy any jboss-esb.xml files (or name variants) to META-INF dir
+ global isesb
+ isesb = False
+ variant_esb_filenames = [ 'jboss-esb-unfiltered.xml', 'jboss-esb.xml']
+ for esbfile in variant_esb_filenames:
+ copied = file_handler.copy_file_to_metainfdir(in_dir, eclipse_dir, esbfile)
+ if copied:
+# global isesb
+ isesb = True
+
+ # copy any jboss-esb.properties files to META-INF dir
+ jbossesbprops = 'jboss-esb.properties'
+ file_handler.copy_file_to_metainfdir(in_dir, eclipse_dir, jbossesbprops)
+
+ # copy any log4j.xml files to esbcontent dir
+ log4jxml = 'log4j.xml'
+ file_handler.copy_file_to_esbcontentdir(in_dir, eclipse_dir, log4jxml)
+
+ # copy any hornetq-jms.xml files to esbcontent dir
+ hornetqjmsxml = 'hornetq-jms.xml'
+ file_handler.copy_file_to_esbcontentdir(in_dir, eclipse_dir, hornetqjmsxml)
+
+ # copy any jbm-queue-service.xml files to esbcontent dir
+ jbmqueueservicexml = 'jbm-queue-service.xml'
+ file_handler.copy_file_to_esbcontentdir(in_dir, eclipse_dir, jbmqueueservicexml)
+
+ # copy any jndi.properties files to esbcontent dir
+ jndiprops = 'jndi.properties'
+ file_handler.copy_file_to_esbcontentdir(in_dir, eclipse_dir, jndiprops)
+
+ # copy any business_ruleservice_cep.drl files to esbcontent dir
+ businessruleservicecepdrl = 'business_ruleservice_cep.drl'
+ file_handler.copy_file_to_esbcontentdir(in_dir, eclipse_dir, businessruleservicecepdrl)
+
+ # copy any business_ruleservice_cep-unfiltered.properties files to esbcontent dir
+ businessruleservicecepunfilteredproperties = 'business_ruleservice_cep-unfiltered.properties'
+ file_handler.copy_file_to_esbcontentdir(in_dir, eclipse_dir, businessruleservicecepunfilteredproperties)
+
+ # copy any build.xml files to root eclipse project dir
+ buildxml = 'build.xml'
+ file_handler.handle_copy_file(in_dir, eclipse_dir, buildxml)
+
+ # copy any readme.txt files to root eclipse project dir
+ readmetxt = 'readme.txt'
+ file_handler.handle_copy_file(in_dir, eclipse_dir, readmetxt)
+
+ # create the .project file
+ file_handler.create_dotproject_file(eclipse_dir, projectname)
+
+ # create the .classpath file
+ containers = []
+ if isesb:
+ containers.append( 'org.jboss.esb.runtime.classpath/server.supplied/' + constants.runtimeTargetServerName )
+ containers.append( 'org.eclipse.jst.server.core.container/org.jboss.ide.eclipse.as.core.server.runtime.runtimeTarget/' + constants.runtimeTargetServerName )
+ file_handler.create_dotclasspath_file(eclipse_dir, containers)
+
+ # create the org.eclipse.wst.common.project.facet.core.xml file
+ entries = []
+ entries.append(' <runtime name="' + constants.runtimeTargetServerName + '"/>')
+ if isesb:
+ entries.append(' <fixed facet="jst.jboss.esb"/>')
+ entries.append(' <installed facet="jst.jboss.esb" version="' + constants.esbVersion + '"/>')
+ file_handler.create_facetcorexml_file(eclipse_dir, entries)
+
+ # create the org.eclipse.wst.common.component file
+ entries = []
+ if isesb:
+ entries.append(' <wb-resource deploy-path="/" source-path="/esbcontent"/>')
+ entries.append(' <property name="java-output-path" value="/esbcontent/build/classes/"/>')
+ file_handler.create_wstcommoncomponent_file (eclipse_dir, projectname, entries)
+
+ # create the org.eclipse.jdt.core.prefs file
+ file_handler.create_jdtcoreprefs_file(eclipse_dir)
Added: workspace/bfitzpat/org.jboss.tools.py.project.converter/src/dir_handler.py
===================================================================
--- workspace/bfitzpat/org.jboss.tools.py.project.converter/src/dir_handler.py (rev 0)
+++ workspace/bfitzpat/org.jboss.tools.py.project.converter/src/dir_handler.py 2010-11-19 17:47:14 UTC (rev 26781)
@@ -0,0 +1,57 @@
+'''
+Created on Nov 18, 2010
+
+@author: bfitzpat
+'''
+import os
+import rmdir_nonempty
+import constants
+import shutil
+
+debug = False
+
+def debug_msg ( message ):
+ if debug:
+ print 'Debug: ' + message
+
+def create_dir ( path, new_mode):
+ os.mkdir( path, new_mode)
+ string = os.path.split(path)
+ debug_msg ( 'Created directory: ' + string[1] )
+
+def create_eclipse_project_dir( eclipse_dir, eclipse_dir_name, new_mode ):
+ # if it already exists, delete it and start over
+ if os.path.exists(eclipse_dir):
+ rmdir_nonempty.removeall(eclipse_dir)
+ os.rmdir(eclipse_dir)
+
+ # create new eclipse project directory
+ create_dir (eclipse_dir, new_mode)
+
+def create_esbcontent_dir( eclipse_dir, new_mode ):
+ # create esbcontent directory
+ create_dir (os.path.join(eclipse_dir, constants.esbcontentdir), new_mode)
+
+def create_esbcontent_metainf_dir( eclipse_dir, new_mode ):
+ # create esbcontent/META-INF directory
+ create_dir (os.path.join(eclipse_dir, constants.esbcontentdir, constants.metainfdir), new_mode)
+
+def create_dotsettings_dir ( eclipse_dir, new_mode ):
+ create_dir (os.path.join(eclipse_dir, constants.settingsdir), new_mode)
+
+def create_src_dir ( eclipse_dir, new_mode ):
+ create_dir (os.path.join(eclipse_dir, constants.srcdir), new_mode)
+
+def handle_src_dir ( in_dir, eclipse_dir, new_mode ):
+ mavensrc = os.path.join(in_dir, constants.srcdir)
+ try:
+ if os.listdir(mavensrc):
+ try:
+ eclipsesrc = os.path.join(eclipse_dir, constants.srcdir)
+ shutil.copytree(mavensrc, eclipsesrc)
+ debug_msg ( 'Created src directory and copied src to eclipse dir' )
+ except OSError, errno:
+ print errno
+ except OSError:
+ create_src_dir ( eclipse_dir, new_mode )
+
Added: workspace/bfitzpat/org.jboss.tools.py.project.converter/src/file_handler.py
===================================================================
--- workspace/bfitzpat/org.jboss.tools.py.project.converter/src/file_handler.py (rev 0)
+++ workspace/bfitzpat/org.jboss.tools.py.project.converter/src/file_handler.py 2010-11-19 17:47:14 UTC (rev 26781)
@@ -0,0 +1,176 @@
+'''
+Created on Nov 18, 2010
+
+@author: bfitzpat
+'''
+
+import utils
+import shutil
+import constants
+import os
+import datetime
+
+debug = False
+
+def debug_msg ( message ):
+ if debug:
+ print 'Debug: ' + message
+
+def handle_deployment_xml( in_dir, eclipse_dir ):
+
+ #constants
+ deploymentxml = 'deployment.xml'
+ jmsqueueopen = '<jmsQueue>'
+ jmsqueueclose = '</jmsQueue>'
+
+ REDONE_STR = """<depends>jboss.esb.quickstart.destination:service=Queue,name= %(queuename)s</depends>"""
+
+ #if the deployment file exists in the original directory
+ if utils.does_file_exist(in_dir, deploymentxml):
+
+ # copy it
+ shutil.copy2(os.path.join(in_dir, deploymentxml),
+ os.path.join(eclipse_dir, constants.esbcontentdir, constants.metainfdir, deploymentxml))
+ debug_msg ( 'created file: ' + deploymentxml )
+
+ # now need to modify deployment.xml to get queue references right
+ deploymentxmlpath = os.path.join(eclipse_dir, constants.esbcontentdir, constants.metainfdir, deploymentxml)
+ deploymentxmlfile = open(deploymentxmlpath, 'r')
+ alllines = deploymentxmlfile.readlines()
+ index = -1
+ for x in alllines:
+ index = index + 1
+ start = x.find(jmsqueueopen)
+ if start > -1:
+ end = x.find(jmsqueueclose)
+ if end > -1:
+ queuename = x[start + 10: end]
+ alllines[index] = REDONE_STR % {'queuename' : queuename }
+
+ deploymentxmlfile.close()
+
+ # now rewrite the file with the updated deploy tags
+ deploymentxmlpath = os.path.join(eclipse_dir, constants.esbcontentdir, constants.metainfdir, deploymentxml)
+ deploymentxmlfile = open(deploymentxmlpath, 'w')
+ for x in alllines:
+ deploymentxmlfile.write(x + '\n')
+ deploymentxmlfile.close()
+
+def handle_copy_file ( in_dir, out_dir, filename ):
+ if utils.does_file_exist(in_dir, filename):
+ shutil.copy2(os.path.join(in_dir, filename),
+ os.path.join(out_dir, filename))
+ debug_msg ( 'created file: ' + filename )
+ return True
+
+def copy_file_to_metainfdir ( in_dir, eclipse_dir, filename ):
+ flag = handle_copy_file ( in_dir, os.path.join(eclipse_dir, constants.esbcontentdir, constants.metainfdir), filename )
+ return flag
+
+def copy_file_to_esbcontentdir ( in_dir, eclipse_dir, filename ):
+ flag = handle_copy_file ( in_dir, os.path.join(eclipse_dir, constants.esbcontentdir), filename )
+ return flag
+
+def handle_create_file ( eclipse_dir,filename, contents):
+ path = os.path.join(eclipse_dir, filename)
+ file = open(path, 'w')
+ for line in contents:
+ utils.writeline(file, line)
+
+def create_dotproject_file ( eclipse_dir, projectname):
+ dotprojectfilename = '.project'
+ contents = []
+ contents.append('<?xml version="1.0" encoding="UTF-8"?>')
+ contents.append('<projectDescription>')
+ contents.append('<name>' + projectname + '</name>')
+ contents.append('<comment></comment>')
+ contents.append('<projects></projects>')
+ contents.append('<buildSpec>')
+ contents.append(' <buildCommand>')
+ contents.append(' <name>org.eclipse.jdt.core.javabuilder</name>')
+ contents.append(' <arguments></arguments>')
+ contents.append(' </buildCommand>')
+ contents.append(' <buildCommand>')
+ contents.append(' <name>org.eclipse.wst.common.project.facet.core.builder</name>')
+ contents.append(' <arguments></arguments>')
+ contents.append(' </buildCommand>')
+ contents.append(' <buildCommand>')
+ contents.append(' <name>org.eclipse.wst.validation.validationbuilder</name>')
+ contents.append(' <arguments></arguments>')
+ contents.append(' </buildCommand>')
+ contents.append('</buildSpec>')
+ contents.append('<natures>')
+ contents.append(' <nature>org.eclipse.wst.common.project.facet.core.nature</nature>')
+ contents.append(' <nature>org.eclipse.jdt.core.javanature</nature>')
+ contents.append(' <nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature>')
+ contents.append(' <nature>org.eclipse.jem.workbench.JavaEMFNature</nature>')
+ contents.append('</natures>')
+ contents.append('</projectDescription>')
+ handle_create_file ( eclipse_dir, dotprojectfilename, contents)
+
+def create_dotclasspath_file ( eclipse_dir, containers ):
+ dotclasspathfilename = '.classpath'
+ contents = []
+ contents.append('<?xml version="1.0" encoding="UTF-8"?>')
+ contents.append('<classpath>')
+ contents.append(' <classpathentry kind="src" path="src"/>')
+ contents.append(' <classpathentry kind="output" path="build/classes"/>')
+ contents.append(' <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jdk1.6.0_14">')
+ contents.append(' <attributes>')
+ contents.append(' <attribute name="owner.project.facets" value="java"/>')
+ contents.append(' </attributes>')
+ contents.append(' </classpathentry>')
+
+ for container in containers:
+ contents.append(' <classpathentry kind="con" path="' + container + '"/>')
+
+ contents.append('</classpath>')
+ handle_create_file ( eclipse_dir, dotclasspathfilename, contents)
+
+def create_facetcorexml_file ( eclipse_dir, entries ):
+ facetcorexmlfilename = 'org.eclipse.wst.common.project.facet.core.xml'
+ contents = []
+ contents.append('<?xml version="1.0" encoding="UTF-8"?>')
+ contents.append('<faceted-project>')
+ contents.append(' <fixed facet="jst.java"/>')
+ contents.append(' <installed facet="jst.java" version="6.0"/>')
+
+ for entry in entries:
+ contents.append(entry)
+
+ contents.append('</faceted-project>')
+ handle_create_file ( os.path.join(eclipse_dir, constants.settingsdir), facetcorexmlfilename, contents)
+
+def create_wstcommoncomponent_file ( eclipse_dir, projectname, entries):
+ wstcommoncomponentfilename = 'org.eclipse.wst.common.component'
+ contents = []
+ contents.append('<?xml version="1.0" encoding="UTF-8"?>')
+ contents.append('<project-modules id="moduleCoreId" project-version="1.5.0">')
+ contents.append(' <wb-module deploy-name="' + projectname + '">')
+ contents.append(' <wb-resource deploy-path="/" source-path="/src"/>')
+
+ for entry in entries:
+ contents.append(entry)
+
+ contents.append(' </wb-module>')
+ contents.append('</project-modules>')
+ handle_create_file ( os.path.join(eclipse_dir, constants.settingsdir), wstcommoncomponentfilename, contents)
+
+def create_jdtcoreprefs_file ( eclipse_dir ):
+ jdtcoreprefsfilename = 'org.eclipse.jdt.core.prefs'
+ contents = []
+ datetimestamp = datetime.datetime.today().ctime()
+ contents.append ('#' + datetimestamp)
+ contents.append ('eclipse.preferences.version=1')
+ contents.append ('org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled')
+ contents.append ('org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6')
+ contents.append ('org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve')
+ contents.append ('org.eclipse.jdt.core.compiler.compliance=1.6')
+ contents.append ('org.eclipse.jdt.core.compiler.debug.lineNumber=generate')
+ contents.append ('org.eclipse.jdt.core.compiler.debug.localVariable=generate')
+ contents.append ('org.eclipse.jdt.core.compiler.debug.sourceFile=generate')
+ contents.append ('org.eclipse.jdt.core.compiler.problem.assertIdentifier=error')
+ contents.append ('org.eclipse.jdt.core.compiler.problem.enumIdentifier=error')
+ contents.append ('org.eclipse.jdt.core.compiler.source=1.6')
+
+ handle_create_file ( os.path.join(eclipse_dir, constants.settingsdir), jdtcoreprefsfilename, contents)
Added: workspace/bfitzpat/org.jboss.tools.py.project.converter/src/rmdir_nonempty.py
===================================================================
--- workspace/bfitzpat/org.jboss.tools.py.project.converter/src/rmdir_nonempty.py (rev 0)
+++ workspace/bfitzpat/org.jboss.tools.py.project.converter/src/rmdir_nonempty.py 2010-11-19 17:47:14 UTC (rev 26781)
@@ -0,0 +1,42 @@
+## {{{ http://code.activestate.com/recipes/193736/ (r1)
+""" removeall.py:
+
+ Clean up a directory tree from root.
+ The directory need not be empty.
+ The starting directory is not deleted.
+ Written by: Anand B Pillai <abpillai(a)lycos.com> """
+
+import os
+
+ERROR_STR= """Error removing %(path)s, %(error)s, %(errno)s. """
+debug = False
+
+def debug_msg ( message ):
+ if debug:
+ print 'Debug: ' + message
+
+def rmgeneric(path, __func__):
+
+ try:
+ __func__(path)
+ debug_msg ('Removed : ' + path)
+ except OSError, (errno, strerror):
+ print ERROR_STR % {'path' : path, 'error': strerror, 'errno:': errno }
+
+def removeall(path):
+
+ if not os.path.isdir(path):
+ return
+
+ files=os.listdir(path)
+
+ for x in files:
+ fullpath=os.path.join(path, x)
+ if os.path.isfile(fullpath):
+ f=os.remove
+ rmgeneric(fullpath, f)
+ elif os.path.isdir(fullpath):
+ removeall(fullpath)
+ f=os.rmdir
+ rmgeneric(fullpath, f)
+## end of http://code.activestate.com/recipes/193736/ }}}
Added: workspace/bfitzpat/org.jboss.tools.py.project.converter/src/utils.py
===================================================================
--- workspace/bfitzpat/org.jboss.tools.py.project.converter/src/utils.py (rev 0)
+++ workspace/bfitzpat/org.jboss.tools.py.project.converter/src/utils.py 2010-11-19 17:47:14 UTC (rev 26781)
@@ -0,0 +1,19 @@
+'''
+Created on Nov 18, 2010
+
+@author: bfitzpat
+'''
+
+import os
+
+def does_file_exist(path, file):
+ fpath = os.path.join(path, file)
+ try:
+ if os.path.isfile(fpath):
+ return True
+ except OSError:
+ return False
+
+def writeline(file, line):
+ file.write(line)
+ file.write('\n')
15 years, 5 months
JBoss Tools SVN: r26780 - workspace/bfitzpat.
by jbosstools-commits@lists.jboss.org
Author: bfitzpat
Date: 2010-11-19 12:44:46 -0500 (Fri, 19 Nov 2010)
New Revision: 26780
Added:
workspace/bfitzpat/org.jboss.tools.py.project.converter/
Log:
Initial import.
15 years, 5 months
JBoss Tools SVN: r26779 - workspace.
by jbosstools-commits@lists.jboss.org
Author: bfitzpat
Date: 2010-11-19 12:40:02 -0500 (Fri, 19 Nov 2010)
New Revision: 26779
Added:
workspace/bfitzpat/
Log:
Adding my own workspace finally
15 years, 5 months