Skip to content

Commit

Permalink
JTA 1.2 specification
Browse files Browse the repository at this point in the history
  • Loading branch information
tomjenkinson committed Sep 18, 2020
1 parent 442223a commit f0c02aa
Show file tree
Hide file tree
Showing 9 changed files with 2,044 additions and 36 deletions.
6 changes: 3 additions & 3 deletions spec/README.md
@@ -1,5 +1,5 @@
Jakarta Transactions Specification
============================
==================================

This project generates the Jakarta Transactions Specification.

Expand All @@ -16,7 +16,7 @@ Run the full build:
`mvn install`

Locate the html files:
- `target/generated-docs/transactions-spec-<version>.html`
- target/generated-docs/Transactions.html

Locate the PDF files:
- `target/generated-docs/transactions-spec-<version>.pdf`
- target/generated-docs/Transactions.pdf
12 changes: 6 additions & 6 deletions spec/assembly.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!--
Copyright (c) 2019 Contributors to the Eclipse Foundation.
Copyright (c) 2017, 2019 Oracle and/or its affiliates. All rights reserved.
This program and the accompanying materials are made available under the
terms of the Eclipse Public License v. 2.0, which is available at
Expand All @@ -20,13 +20,13 @@
<assembly>
<id>spec</id>
<formats>
<format>zip</format>
<format>zip</format>
</formats>
<baseDirectory>transactions-spec</baseDirectory>
<fileSets>
<fileSet>
<directory>target/generated-docs</directory>
<outputDirectory></outputDirectory>
</fileSet>
<fileSet>
<directory>target/generated-docs</directory>
<outputDirectory></outputDirectory>
</fileSet>
</fileSets>
</assembly>
54 changes: 27 additions & 27 deletions spec/pom.xml
@@ -1,32 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2019 Contributors to the Eclipse Foundation.
Copyright (c) 2017, 2019 Oracle and/or its affiliates. All rights reserved.
This program and the accompanying materials are made available under the
terms of the Eclipse Public License v. 2.0, which is available at
http://www.eclipse.org/legal/epl-2.0.
This Source Code may also be made available under the following Secondary
Licenses when the conditions for such availability set forth in the
Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
version 2 with the GNU Classpath Exception, which is available at
https://www.gnu.org/software/classpath/license.html.
SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.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">
<parent>
<groupId>jakarta.transaction</groupId>
<artifactId>jakarta.transaction-parent</artifactId>
<version>2.0.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
<groupId>org.eclipse.ee4j</groupId>
<artifactId>project</artifactId>
<version>1.0.5</version>
<relativePath/>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>jakarta.transactions</groupId>
<artifactId>transactions-spec</artifactId>
<version>1.3-SNAPSHOT</version>
<packaging>pom</packaging>
<version>1.2-SNAPSHOT</version>
<name>Jakarta Transactions Specification</name>

<properties>
Expand All @@ -38,10 +39,21 @@
<jruby.version>9.2.6.0</jruby.version>
<!-- status: DRAFT, BETA, etc., or blank for final -->
<status>DRAFT</status>
<maven.build.timestamp.format>MMMM dd, yyyy</maven.build.timestamp.format>
<revisiondate>${maven.build.timestamp}</revisiondate>
</properties>

<scm>
<connection>scm:git:git@github.com:eclipse-ee4j/jakarta-transactions.git</connection>
<developerConnection>scm:git:git@github.com:eclipse-ee4j/jakarta-transactions.git</developerConnection>
<url>https://github.com/eclipse-ee4j/jakarta-transactions</url>
<tag>HEAD</tag>
</scm>

<distributionManagement>
<site>
<url>scm:git:git@github.com:eclipse-ee4j/jakarta-transactions.git</url>
</site>
</distributionManagement>

<build>
<defaultGoal>package</defaultGoal>
<plugins>
Expand Down Expand Up @@ -95,8 +107,7 @@
<goal>process-asciidoc</goal>
</goals>
<configuration>
<backend>html5</backend>
<outputFile>${project.build.directory}/generated-docs/transactions-spec-${project.version}.html</outputFile>
<backend>xhtml</backend>
<attributes>
<doctype>book</doctype>
<status>${status}</status>
Expand All @@ -119,9 +130,8 @@
</goals>
<configuration>
<backend>pdf</backend>
<outputFile>${project.build.directory}/generated-docs/transactions-spec-${project.version}.pdf</outputFile>
<attributes>
<pdf-stylesdir>${project.basedir}/src/main/theme</pdf-stylesdir>
<pdf-stylesdir>${project.basedir}/src/theme</pdf-stylesdir>
<pdf-style>jakartaee</pdf-style>
<doctype>book</doctype>
<status>${status}</status>
Expand All @@ -139,16 +149,6 @@
</configuration>
</execution>
</executions>
<configuration>
<sourceDocumentName>transactions-spec.adoc</sourceDocumentName>
<sourceHighlighter>coderay</sourceHighlighter>
<attributes>
<revnumber>${project.version}</revnumber>
<revremark>${status}</revremark>
<revdate>${revisiondate}</revdate>
</attributes>
</configuration>

</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down

0 comments on commit f0c02aa

Please sign in to comment.