This repository has been archived by the owner before Nov 9, 2022. It is now read-only.
Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
tutorial/pom.xml
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
206 lines (196 sloc)
7.86 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!-- | |
| DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. | |
| Copyright (c) 2017 Oracle and/or its affiliates. All rights reserved. | |
| The contents of this file are subject to the terms of either the GNU | |
| General Public License Version 2 only ("GPL") or the Common Development | |
| and Distribution License("CDDL") (collectively, the "License"). You | |
| may not use this file except in compliance with the License. You can | |
| obtain a copy of the License at | |
| https://oss.oracle.com/licenses/CDDL+GPL-1.1 | |
| or LICENSE.txt. See the License for the specific | |
| language governing permissions and limitations under the License. | |
| When distributing the software, include this License Header Notice in each | |
| file and include the License file at LICENSE.txt. | |
| GPL Classpath Exception: | |
| Oracle designates this particular file as subject to the "Classpath" | |
| exception as provided by Oracle in the GPL Version 2 section of the License | |
| file that accompanied this code. | |
| Modifications: | |
| If applicable, add the following below the License Header, with the fields | |
| enclosed by brackets [] replaced by your own identifying information: | |
| "Portions Copyright [year] [name of copyright owner]" | |
| Contributor(s): | |
| If you wish your version of this file to be governed by only the CDDL or | |
| only the GPL Version 2, indicate your decision by adding "[Contributor] | |
| elects to include this software in this distribution under the [CDDL or GPL | |
| Version 2] license." If you don't indicate a single choice of license, a | |
| recipient has the option to distribute your version of this file under | |
| either the CDDL, the GPL Version 2 or to extend the choice of license to | |
| its licensees as provided above. However, if you add GPL Version 2 code | |
| and therefore, elected the GPL Version 2 license, then the option applies | |
| only if the new code is made subject to such option by the copyright | |
| holder. | |
| --> | |
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <parent> | |
| <groupId>net.java</groupId> | |
| <artifactId>jvnet-parent</artifactId> | |
| <version>5</version> | |
| </parent> | |
| <groupId>org.glassfish.docs</groupId> | |
| <artifactId>javaee-tutorial</artifactId> | |
| <packaging>pom</packaging> | |
| <version>8.1-SNAPSHOT</version> | |
| <name>Java EE Tutorial</name> | |
| <properties> | |
| <site.output.dir>${project.build.directory}/staging</site.output.dir> | |
| <maven.site.skip>true</maven.site.skip> | |
| </properties> | |
| <scm> | |
| <connection>scm:git:git@github.com:javaee/tutorial.git</connection> | |
| <developerConnection>scm:git:git@github.com:javaee/tutorial.git</developerConnection> | |
| <url>https://github.com/javaee/tutorial</url> | |
| <tag>HEAD</tag> | |
| </scm> | |
| <distributionManagement> | |
| <site> | |
| <url>scm:git:git@github.com:javaee/tutorial.git</url> | |
| </site> | |
| </distributionManagement> | |
| <build> | |
| <defaultGoal>package</defaultGoal> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-enforcer-plugin</artifactId> | |
| <version>1.4.1</version> | |
| <executions> | |
| <execution> | |
| <id>enforce-versions</id> | |
| <goals> | |
| <goal>enforce</goal> | |
| </goals> | |
| <configuration> | |
| <rules> | |
| <requireJavaVersion> | |
| <version>[1.8.0,1.9.0)</version> | |
| <message>You need JDK8 or higher</message> | |
| </requireJavaVersion> | |
| </rules> | |
| </configuration> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| <plugin> | |
| <groupId>com.blazebit</groupId> | |
| <artifactId>jbake-maven-plugin</artifactId> | |
| <version>1.0.0</version> | |
| <configuration> | |
| <outputDirectory>${site.output.dir}</outputDirectory> | |
| </configuration> | |
| <executions> | |
| <execution> | |
| <id>build-site</id> | |
| <phase>generate-resources</phase> | |
| <goals> | |
| <goal>build</goal> | |
| </goals> | |
| </execution> | |
| </executions> | |
| <dependencies> | |
| <dependency> | |
| <groupId>org.asciidoctor</groupId> | |
| <artifactId>asciidoctorj</artifactId> | |
| <version>1.5.5</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.asciidoctor</groupId> | |
| <artifactId>asciidoctorj-diagram</artifactId> | |
| <version>1.5.4</version> | |
| </dependency> | |
| </dependencies> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-release-plugin</artifactId> | |
| <version>2.5.2</version> | |
| <configuration> | |
| <mavenExecutorId>forked-path</mavenExecutorId> | |
| <useReleaseProfile>false</useReleaseProfile> | |
| <arguments>${release.arguments}</arguments> | |
| </configuration> | |
| <dependencies> | |
| <dependency> | |
| <groupId>org.apache.maven.scm</groupId> | |
| <artifactId>maven-scm-provider-gitexe</artifactId> | |
| <version>1.9.4</version> | |
| </dependency> | |
| </dependencies> | |
| </plugin> | |
| <!-- | |
| This is the rule that builds the zip file for download. | |
| --> | |
| <plugin> | |
| <artifactId>maven-assembly-plugin</artifactId> | |
| <inherited>false</inherited> | |
| <executions> | |
| <execution> | |
| <phase>package</phase> | |
| <goals> | |
| <goal>single</goal> | |
| </goals> | |
| <configuration> | |
| <descriptors> | |
| <descriptor>tutorial.xml</descriptor> | |
| </descriptors> | |
| </configuration> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| </plugins> | |
| <pluginManagement> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-assembly-plugin</artifactId> | |
| <version>2.4</version> | |
| </plugin> | |
| </plugins> | |
| </pluginManagement> | |
| </build> | |
| <profiles> | |
| <profile> | |
| <id>publish-site</id> | |
| <properties> | |
| <site.output.dir>${project.build.directory}/staging</site.output.dir> | |
| <maven.site.skip>true</maven.site.skip> | |
| <maven.deploy.skip>true</maven.deploy.skip> | |
| </properties> | |
| <build> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-scm-publish-plugin</artifactId> | |
| <version>1.1</version> | |
| <executions> | |
| <execution> | |
| <id>deploy-site</id> | |
| <phase>deploy</phase> | |
| <goals> | |
| <goal>publish-scm</goal> | |
| </goals> | |
| <configuration> | |
| <scmBranch>gh-pages</scmBranch> | |
| <skipDeletedFiles>false</skipDeletedFiles> | |
| <checkinComment>Update site</checkinComment> | |
| </configuration> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| </profile> | |
| </profiles> | |
| </project> |