blob: e0d99642c7d4385e876a7bd382ad8faee86612ec [file] [log] [blame]
Vinay Vishal57171472018-09-18 20:22:00 +05301<?xml version="1.0" encoding="UTF-8"?>
2<!--
3
arjantijmscd117b22021-01-30 23:43:31 +01004 Copyright (c) 2011, 2021 Oracle and/or its affiliates. All rights reserved.
Vinay Vishal57171472018-09-18 20:22:00 +05305
6 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.
9
10 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.
15
16 SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
17
18-->
19
20<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>
Vinay Vishal9e813d12018-11-23 00:36:24 +053022 <parent>
23 <groupId>org.eclipse.ee4j</groupId>
24 <artifactId>project</artifactId>
smillidgef2f6ac72020-03-20 19:08:14 +000025 <version>1.0.6</version>
Vinay Vishal9e813d12018-11-23 00:36:24 +053026 </parent>
27
Vinay Vishal57171472018-09-18 20:22:00 +053028 <groupId>org.glassfish.main</groupId>
29 <artifactId>glassfish-main-aggregator</artifactId>
arjantijms3cfb3a32020-02-18 23:13:47 +010030 <version>6.0.0-SNAPSHOT</version>
Vinay Vishal57171472018-09-18 20:22:00 +053031 <packaging>pom</packaging>
32
33 <name>GlassFish Project</name>
34
35 <description>Glassfish Project</description>
36 <url>https://projects.eclipse.org/projects/ee4j.glassfish</url>
37
38 <scm>
39 <connection>scm:git:git://github.com/eclipse-ee4j/glassfish</connection>
40 <developerConnection>scm:git:git://github.com/eclipse-ee4j/glassfish</developerConnection>
41 <url>https://github.com/eclipse-ee4j/glassfish</url>
42 </scm>
43
44 <profiles>
45 <profile>
46 <id>release-phase2</id>
47 <activation>
48 <activeByDefault>true</activeByDefault>
49 <property>
50 <name>release-phase-all</name>
51 <value>true</value>
52 </property>
53 </activation>
54 <modules>
55 <module>nucleus</module>
56 <module>appserver</module>
57 </modules>
58 </profile>
59 <profile>
60 <!--
61 RE profile for release purposes.
62 -->
63 <id>ips</id>
64 <activation>
65 <property>
66 <name>release-phase-all</name>
67 <value>true</value>
68 </property>
69 </activation>
70 <modules>
71 <module>nucleus</module>
72 <module>appserver</module>
73 </modules>
74 </profile>
75 </profiles>
76
77 <!--
78 Skip deploy and install as this is an aggregator POM
79 -->
80 <build>
81 <defaultGoal>install</defaultGoal>
arjantijmscd117b22021-01-30 23:43:31 +010082
83 <plugins>
84 <!-- Sets minimal Maven version to 3.5.4 -->
85 <plugin>
86 <groupId>org.apache.maven.plugins</groupId>
87 <artifactId>maven-enforcer-plugin</artifactId>
88 <version>3.0.0-M3</version>
89 <executions>
90 <execution>
91 <id>enforce-maven</id>
92 <goals>
93 <goal>enforce</goal>
94 </goals>
95 <configuration>
96 <rules>
97 <requireMavenVersion>
98 <version>3.5.4</version>
99 </requireMavenVersion>
100 </rules>
101 </configuration>
102 </execution>
103 </executions>
104 </plugin>
105 </plugins>
106
107
Vinay Vishal57171472018-09-18 20:22:00 +0530108 <pluginManagement>
109 <plugins>
110 <plugin>
111 <groupId>org.apache.maven.plugins</groupId>
112 <artifactId>maven-install-plugin</artifactId>
113 <version>2.4</version>
114 <configuration>
115 <skip>true</skip>
116 </configuration>
117 </plugin>
118 <plugin>
119 <groupId>org.apache.maven.plugins</groupId>
120 <artifactId>maven-deploy-plugin</artifactId>
121 <version>2.7</version>
122 <configuration>
123 <skip>true</skip>
124 </configuration>
125 </plugin>
126 <plugin>
127 <groupId>org.glassfish.copyright</groupId>
128 <artifactId>glassfish-copyright-maven-plugin</artifactId>
129 <version>1.42</version>
130 <configuration>
131 <scm>git</scm>
132 <scmOnly>true</scmOnly>
133 <exclude>
134 <pattern>.md</pattern>
135 <pattern>LICENSE</pattern>
136 </exclude>
137 </configuration>
138 </plugin>
139 </plugins>
140 </pluginManagement>
Steve Millidgeb1435042020-10-11 22:18:16 +0100141 </build>
Vinay Vishal57171472018-09-18 20:22:00 +0530142</project>