| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| |
| Copyright (c) 2017, 2020 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>org.eclipse.ee4j</groupId> |
| <artifactId>project</artifactId> |
| <version>1.0.6</version> |
| <relativePath/> |
| </parent> |
| <modelVersion>4.0.0</modelVersion> |
| <groupId>jakarta.xml.bind</groupId> |
| <artifactId>xml-binding-spec</artifactId> |
| <packaging>pom</packaging> |
| <version>3.0-SNAPSHOT</version> |
| <name>Jakarta XML Binding Specification</name> |
| |
| <properties> |
| <site.output.dir>${project.build.directory}/staging</site.output.dir> |
| <maven.site.skip>true</maven.site.skip> |
| <asciidoctor.maven.plugin.version>2.0.0</asciidoctor.maven.plugin.version> |
| <asciidoctorj.pdf.version>1.5.3</asciidoctorj.pdf.version> |
| <spec.name>jakarta-${project.artifactId}-${project.version}</spec.name> |
| <!-- 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/jaxb-api.git</connection> |
| <developerConnection>scm:git:git@github.com:eclipse-ee4j/jaxb-api.git</developerConnection> |
| <url>https://github.com/eclipse-ee4j/jaxb-api.git</url> |
| <tag>HEAD</tag> |
| </scm> |
| |
| <distributionManagement> |
| <site> |
| <url>scm:git:git@github.com:eclipse-ee4j/jaxb-api.git</url> |
| </site> |
| </distributionManagement> |
| |
| <build> |
| <defaultGoal>package</defaultGoal> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-enforcer-plugin</artifactId> |
| <version>3.0.0-M3</version> |
| <executions> |
| <execution> |
| <id>enforce-versions</id> |
| <goals> |
| <goal>enforce</goal> |
| </goals> |
| <configuration> |
| <rules> |
| <requireJavaVersion> |
| <version>(,1.9),[11,)</version> |
| <message>You need JDK8 or JDK 11 and newer</message> |
| </requireJavaVersion> |
| </rules> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.asciidoctor</groupId> |
| <artifactId>asciidoctor-maven-plugin</artifactId> |
| <version>${asciidoctor.maven.plugin.version}</version> |
| <dependencies> |
| <dependency> |
| <groupId>org.asciidoctor</groupId> |
| <artifactId>asciidoctorj-pdf</artifactId> |
| <version>${asciidoctorj.pdf.version}</version> |
| </dependency> |
| </dependencies> |
| <executions> |
| <execution> |
| <id>asciidoc-to-html</id> |
| <phase>generate-resources</phase> |
| <goals> |
| <goal>process-asciidoc</goal> |
| </goals> |
| <configuration> |
| <backend>html5</backend> |
| <outputFile>${project.build.directory}/generated-docs/${spec.name}.html</outputFile> |
| <attributes> |
| <doctype>book</doctype> |
| <status>${status}</status> |
| <data-uri /> |
| <icons>font</icons> |
| <toc>left</toc> |
| <icons>font</icons> |
| <sectanchors>true</sectanchors> |
| <idprefix /> |
| <idseparator>-</idseparator> |
| <docinfo1>true</docinfo1> |
| </attributes> |
| </configuration> |
| </execution> |
| <execution> |
| <id>asciidoc-to-pdf</id> |
| <phase>generate-resources</phase> |
| <goals> |
| <goal>process-asciidoc</goal> |
| </goals> |
| <configuration> |
| <backend>pdf</backend> |
| <outputFile>${project.build.directory}/generated-docs/${spec.name}.pdf</outputFile> |
| <attributes> |
| <pdf-stylesdir>${project.basedir}/src/theme</pdf-stylesdir> |
| <pdf-style>jakartaee</pdf-style> |
| <doctype>book</doctype> |
| <status>${status}</status> |
| <data-uri /> |
| <icons>font</icons> |
| <pagenums /> |
| <toc /> |
| <icons>font</icons> |
| <sectanchors>true</sectanchors> |
| <idprefix /> |
| <idseparator>-</idseparator> |
| <docinfo1>true</docinfo1> |
| <embedAssets>true</embedAssets> |
| </attributes> |
| </configuration> |
| </execution> |
| </executions> |
| <configuration> |
| <sourceDocumentName>${project.artifactId}.adoc</sourceDocumentName> |
| <sourceHighlighter>coderay</sourceHighlighter> |
| <attributes> |
| <revnumber>${project.version}</revnumber> |
| <revremark>${status}</revremark> |
| <revdate>${revisiondate}</revdate> |
| </attributes> |
| </configuration> |
| |
| </plugin> |
| <!-- |
| This is the rule that builds the zip file for download. |
| --> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-assembly-plugin</artifactId> |
| <version>3.3.0</version> |
| <inherited>false</inherited> |
| <executions> |
| <execution> |
| <phase>package</phase> |
| <goals> |
| <goal>single</goal> |
| </goals> |
| <configuration> |
| <appendAssemblyId>false</appendAssemblyId> |
| <descriptors> |
| <descriptor>${project.basedir}/src/assembly/assembly.xml</descriptor> |
| </descriptors> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |