blob: 014f4b4782c2b21ec360bd504ba100d96faaddd4 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2012, 2019 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.glassfish.main</groupId>
<artifactId>javaee-api-parent</artifactId>
<version>5.1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>javaee-api</artifactId>
<name>Java(TM) EE 8 Specification APIs</name>
<description>Java(TM) EE 8 Specification APIs</description>
<developers>
<developer>
<id>bshannon</id>
<name>Bill Shannon</name>
<organization>Oracle Corp.</organization>
<roles>
<role>lead</role>
</roles>
</developer>
<developer>
<id>ldemichiel</id>
<name>Linda De Michiel</name>
<organization>Oracle Corp.</organization>
<roles>
<role>lead</role>
</roles>
</developer>
</developers>
<build>
<plugins>
<plugin>
<groupId>org.glassfish.build</groupId>
<artifactId>glassfishbuild-maven-plugin</artifactId>
<executions>
<execution>
<id>unpack-sources</id>
<goals>
<goal>unpack-sources</goal>
</goals>
</execution>
<execution>
<id>generate-pom</id>
<goals>
<goal>generate-pom</goal>
</goals>
</execution>
<execution>
<id>attach-all-artifacts</id>
<goals>
<goal>attach-all-artifacts</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<!-- web profile api -->
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-web-api</artifactId>
<version>${javaee.version}</version>
<optional>true</optional>
</dependency>
<!-- work around for GLASSFISH-19861 -->
<dependency>
<groupId>org.glassfish</groupId>
<artifactId>jakarta.faces</artifactId>
<optional>true</optional>
</dependency>
<!-- full profile api dependencies -->
<dependency>
<groupId>jakarta.jms</groupId>
<artifactId>jakarta.jms-api</artifactId>
<optional>true</optional>
</dependency>
<!--
using com.sun.mail:jakarta.mail instead of jakarta.mail:jakarta.mail-api
because javax.mail has a dependency to com.sun.mail classes,
but the pom does not bring the dependency.
-->
<dependency>
<groupId>com.sun.mail</groupId>
<artifactId>jakarta.mail</artifactId>
</dependency>
<dependency>
<groupId>jakarta.resource</groupId>
<artifactId>jakarta.resource-api</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>jakarta.management.j2ee</groupId>
<artifactId>jakarta.management.j2ee-api</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>jakarta.security.jacc</groupId>
<artifactId>jakarta.security.jacc-api</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>jakarta.enterprise.concurrent</groupId>
<artifactId>jakarta.enterprise.concurrent-api</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>javax.batch</groupId>
<artifactId>javax.batch-api</artifactId>
<optional>true</optional>
</dependency>
<!-- optional -->
<dependency>
<groupId>jakarta.enterprise.deploy</groupId>
<artifactId>jakarta.enterprise.deploy-api</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>jakarta.xml.registry</groupId>
<artifactId>jakarta.xml.registry-api</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>jakarta.xml.rpc</groupId>
<artifactId>jakarta.xml.rpc-api</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
</project>