blob: cf79f40c630f2cfd6ff20eb6664ff8002af0bc07 [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
arjantijms2d9f1552021-03-08 15:49:56 +010020<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/xsd/maven-4.0.0.xsd">
Vinay Vishal57171472018-09-18 20:22:00 +053021 <modelVersion>4.0.0</modelVersion>
arjantijms2d9f1552021-03-08 15:49:56 +010022
Vinay Vishal57171472018-09-18 20:22:00 +053023 <parent>
24 <groupId>org.glassfish.main</groupId>
25 <artifactId>nucleus-parent</artifactId>
Eclipse Glassfish Bot0eb5dc02021-08-26 23:54:16 +000026 <version>6.2.2-SNAPSHOT</version>
Vinay Vishal57171472018-09-18 20:22:00 +053027 <relativePath>parent/pom.xml</relativePath>
28 </parent>
29
Vinay Vishal57171472018-09-18 20:22:00 +053030 <artifactId>glassfish-nucleus-parent</artifactId>
Vinay Vishal57171472018-09-18 20:22:00 +053031 <packaging>pom</packaging>
Ankur Kathuriaaa2482b2018-12-25 17:31:43 +053032
arjantijms2d9f1552021-03-08 15:49:56 +010033 <name>GlassFish Nucleus Project</name>
Vinay Vishal57171472018-09-18 20:22:00 +053034 <description>Glassfish Nucleus Project</description>
35 <url>https://projects.eclipse.org/projects/ee4j.glassfish</url>
Vinay Vishal57171472018-09-18 20:22:00 +053036 <licenses>
37 <license>
38 <name>EPL 2.0</name>
39 <url>http://www.eclipse.org/legal/epl-2.0</url>
40 <distribution>repo</distribution>
41 </license>
42 <license>
43 <name>GPL2 w/ CPE</name>
44 <url>https://www.gnu.org/software/classpath/license.html</url>
45 <distribution>repo</distribution>
46 </license>
47 </licenses>
arjantijms2d9f1552021-03-08 15:49:56 +010048
Vinay Vishal57171472018-09-18 20:22:00 +053049 <mailingLists>
50 <mailingList>
arjantijms2d9f1552021-03-08 15:49:56 +010051 <name>Glassfish dev mailing list</name>
52 <post>glassfish-dev@eclipse.org</post>
53 <subscribe>https://dev.eclipse.org/mailman/listinfo/glassfish-dev</subscribe>
54 <unsubscribe>https://dev.eclipse.org/mailman/listinfo/glassfish-dev</unsubscribe>
55 <archive>https://dev.eclipse.org/mhonarc/lists/glassfish-dev</archive>
Vinay Vishal57171472018-09-18 20:22:00 +053056 </mailingList>
Vinay Vishalf3f31292018-09-21 15:54:56 +053057 </mailingLists>
58
Vinay Vishal57171472018-09-18 20:22:00 +053059 <modules>
60 <module>parent</module>
61 <module>hk2</module>
62 <module>osgi-platforms</module>
63 <module>cluster</module>
64 <module>common</module>
65 <module>core</module>
66 <module>admin</module>
67 <module>flashlight</module>
68 <module>grizzly</module>
69 <module>deployment</module>
Vinay Vishal57171472018-09-18 20:22:00 +053070 <module>distributions</module>
71 <module>security</module>
72 <module>test-utils</module>
73 <module>diagnostics</module>
74 <module>resources</module>
75 <module>featuresets</module>
76 </modules>
77
arjantijms2d9f1552021-03-08 15:49:56 +010078 <scm>
79 <connection>scm:git:git://github.com/eclipse-ee4j/glassfish.git</connection>
80 <developerConnection>scm:git:git://github.com/eclipse-ee4j/glassfish.git</developerConnection>
81 <url>https://github.com/eclipse-ee4j/glassfish</url>
82 </scm>
83 <issueManagement>
84 <system>IssueTracker</system>
85 <url>https://github.com/eclipse-ee4j/glassfish/issues</url>
86 </issueManagement>
87
Vinay Vishal57171472018-09-18 20:22:00 +053088 <build>
89 <pluginManagement>
90 <plugins>
91 <plugin>
Vinay Vishal57171472018-09-18 20:22:00 +053092 <groupId>org.codehaus.mojo</groupId>
93 <artifactId>antlr-maven-plugin</artifactId>
94 <version>2.1</version>
95 </plugin>
96 <plugin>
97 <groupId>org.jvnet.jaxb2.maven2</groupId>
98 <artifactId>maven-jaxb2-plugin</artifactId>
99 <version>0.8.1</version>
100 </plugin>
101 <plugin>
Vinay Vishal57171472018-09-18 20:22:00 +0530102 <artifactId>maven-war-plugin</artifactId>
David Matějček6419d942021-07-05 23:08:39 +0200103 <version>3.3.1</version>
Vinay Vishal57171472018-09-18 20:22:00 +0530104 </plugin>
105 <plugin>
106 <groupId>org.codehaus.mojo</groupId>
107 <artifactId>jaxws-maven-plugin</artifactId>
108 <version>1.12</version>
109 </plugin>
110 </plugins>
111 </pluginManagement>
Vinay Vishal57171472018-09-18 20:22:00 +0530112 <plugins>
113 <plugin>
114 <groupId>org.glassfish.hk2</groupId>
115 <artifactId>config-generator</artifactId>
Vinay Vishal57171472018-09-18 20:22:00 +0530116 <configuration>
117 <excludes>**/.ade_path/**</excludes>
118 <supportedProjectTypes>jar,glassfish-jar</supportedProjectTypes>
119 </configuration>
120 </plugin>
121 </plugins>
122 </build>
Vinay Vishal57171472018-09-18 20:22:00 +0530123</project>