blob: 186e2ee4d5e2a99eca9608a4bbe1a6d5aba85d49 [file] [log] [blame]
Bill Shannon1a5dbd02019-02-26 13:02:39 -08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
hussainnm53712522021-02-18 19:46:31 +05303
4 Copyright (c) 2017, 2021 Oracle and/or its affiliates. All rights reserved.
5
Bill Shannon1a5dbd02019-02-26 13:02:39 -08006 This program and the accompanying materials are made available under the
7 terms of the Eclipse Public License v. 2.0, which is available at
8 http://www.eclipse.org/legal/epl-2.0.
hussainnm53712522021-02-18 19:46:31 +05309
Bill Shannon1a5dbd02019-02-26 13:02:39 -080010 This Source Code may also be made available under the following Secondary
11 Licenses when the conditions for such availability set forth in the
12 Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
13 version 2 with the GNU Classpath Exception, which is available at
14 https://www.gnu.org/software/classpath/license.html.
hussainnm53712522021-02-18 19:46:31 +053015
Bill Shannon1a5dbd02019-02-26 13:02:39 -080016 SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
hussainnm53712522021-02-18 19:46:31 +053017
Bill Shannon1a5dbd02019-02-26 13:02:39 -080018-->
hussainnm53712522021-02-18 19:46:31 +053019
Bill Shannon1a5dbd02019-02-26 13:02:39 -080020<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">
21 <modelVersion>4.0.0</modelVersion>
Bill Shannon1a5dbd02019-02-26 13:02:39 -080022 <parent>
Bill Shannon00d11dd2019-03-27 13:54:43 -070023 <groupId>org.glassfish.main</groupId>
Bill Shannon4a838a62019-03-29 17:08:53 -070024 <artifactId>nucleus-parent</artifactId>
Eclipse Glassfish Bot0eb5dc02021-08-26 23:54:16 +000025 <version>6.2.2-SNAPSHOT</version>
Bill Shannon4a838a62019-03-29 17:08:53 -070026 <relativePath>../nucleus/parent</relativePath>
Bill Shannon1a5dbd02019-02-26 13:02:39 -080027 </parent>
28 <groupId>org.glassfish.docs</groupId>
29 <artifactId>docs</artifactId>
Bill Shannon1a5dbd02019-02-26 13:02:39 -080030 <packaging>pom</packaging>
31 <name>Eclipse GlassFish Documentation</name>
32
33 <properties>
34 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
35 </properties>
36
37 <modules>
38 <module>parent</module>
39 <module>website</module>
40 <module>add-on-component-development-guide</module>
41 <module>administration-guide</module>
42 <module>application-deployment-guide</module>
43 <module>application-development-guide</module>
44 <module>deployment-planning-guide</module>
45 <module>embedded-server-guide</module>
46 <module>error-messages-reference</module>
47 <module>ha-administration-guide</module>
48 <module>installation-guide</module>
49 <module>performance-tuning-guide</module>
50 <module>quick-start-guide</module>
51 <module>reference-manual</module>
52 <module>release-notes</module>
53 <module>security-guide</module>
54 <module>troubleshooting-guide</module>
55 <module>upgrade-guide</module>
56 <module>distribution</module>
57 </modules>
58
59 <profiles>
60 <profile>
61 <id>publish-site</id>
62 <modules>
63 <module>publish</module>
64 </modules>
65 </profile>
66 </profiles>
67
68 <build>
69 <defaultGoal>install</defaultGoal>
70 <plugins>
71 <plugin>
Bill Shannon1a5dbd02019-02-26 13:02:39 -080072 <artifactId>maven-enforcer-plugin</artifactId>
73 <version>1.4.1</version>
74 <executions>
75 <execution>
76 <id>enforce-versions</id>
77 <goals>
78 <goal>enforce</goal>
79 </goals>
80 <configuration>
81 <rules>
82 <requireJavaVersion>
83 <version>[1.8.0,1.9.0)</version>
84 <message>You need JDK8 or lower</message>
85 </requireJavaVersion>
86 </rules>
87 </configuration>
88 </execution>
89 </executions>
90 </plugin>
91 </plugins>
David Matějčekd21f0732021-05-14 12:44:26 +020092 <pluginManagement>
93 <plugins>
94 <plugin>
Bill Shannon1a5dbd02019-02-26 13:02:39 -080095 <artifactId>maven-scm-publish-plugin</artifactId>
96 <version>3.0.0</version>
David Matějčekd21f0732021-05-14 12:44:26 +020097 </plugin>
98 <plugin>
99 <groupId>org.glassfish.doc</groupId>
100 <artifactId>glassfish-doc-maven-plugin</artifactId>
101 <version>1.2</version>
102 </plugin>
103 </plugins>
104 </pluginManagement>
Bill Shannon1a5dbd02019-02-26 13:02:39 -0800105 </build>
106</project>