jakarta.enterprise.concurrent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.glassfish</groupId> <artifactId>jakarta.enterprise.concurrent</artifactId> <version>3.0.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2022 Contributors to the Eclipse Foundation. Copyright (c) 2010, 2018 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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.eclipse.ee4j</groupId> <artifactId>project</artifactId> <version>1.0.9</version> </parent> <groupId>org.glassfish</groupId> <artifactId>jakarta.enterprise.concurrent</artifactId> <version>3.0.1</version> <packaging>jar</packaging> <name>org.glassfish.jakarta.enterprise.concurrent</name> <description>Compatible Implementation of Jakarta Concurrency</description> <url>https://projects.eclipse.org/projects/ee4j.cu</url> <organization> <name>Oracle Corporation</name> <url>http://www.oracle.com/</url> </organization> <licenses> <license> <name>EPL 2.0</name> <url>http://www.eclipse.org/legal/epl-2.0</url> <distribution>repo</distribution> </license> <license> <name>GPL2 w/ CPE</name> <url>https://www.gnu.org/software/classpath/license.html</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>anthony.lai</id> <name>Anthony Lai</name> <organization>Oracle</organization> </developer> <developer> <id>smillidge</id> <name>Steve Millidge</name> <organization>Payara</organization> </developer> </developers> <mailingLists> <mailingList> <name>Concurrency mailing list</name> <post>cu-dev@eclipse.org</post> <subscribe>https://dev.eclipse.org/mailman/listinfo/cu-dev</subscribe> <unsubscribe>https://dev.eclipse.org/mailman/listinfo/cu-dev</unsubscribe> <archive>https://dev.eclipse.org/mhonarc/lists/cu-dev/</archive> </mailingList> </mailingLists> <scm> <url>https://github.com/eclipse-ee4j/concurrency-ri</url> <connection>scm:git:https://github.com/eclipse-ee4j/concurrency-ri.git</connection> <developerConnection>scm:git:git@github.com:eclipse-ee4j/concurrency-ri.git</developerConnection> </scm> <issueManagement> <system>GitHub</system> <url>https://github.com/eclipse-ee4j/concurrency-ri/issues</url> </issueManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <maven.compiler.release>11</maven.compiler.release> <jakarta.enterprise.concurrent-api.version>3.0.1</jakarta.enterprise.concurrent-api.version> <jakarta.interceptor-api.version>2.1.0</jakarta.interceptor-api.version> <jakarta.transaction-api.version>2.0.1</jakarta.transaction-api.version> <jakarta.enterprise.cdi-api.version>4.0.1</jakarta.enterprise.cdi-api.version> </properties> <dependencies> <dependency> <groupId>jakarta.enterprise.concurrent</groupId> <artifactId>jakarta.enterprise.concurrent-api</artifactId> <version>${jakarta.enterprise.concurrent-api.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>jakarta.interceptor</groupId> <artifactId>jakarta.interceptor-api</artifactId> <version>${jakarta.interceptor-api.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>jakarta.transaction</groupId> <artifactId>jakarta.transaction-api</artifactId> <version>${jakarta.transaction-api.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>jakarta.enterprise</groupId> <artifactId>jakarta.enterprise.cdi-api</artifactId> <version>${jakarta.enterprise.cdi-api.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.10.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M7</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>3.0.0</version> <executions> <execution> <id>enforce-maven</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <version>3.6.0</version> </requireMavenVersion> </rules> </configuration> </execution> </executions> </plugin> <!-- Creates the OSGi MANIFEST.MF file --> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>5.1.4</version> <configuration> <!-- By default, we don't export anything. --> <Export-Package /> <instructions> <_include>-${basedir}/osgi.bundle</_include> </instructions> </configuration> <executions> <execution> <id>bundle-manifest</id> <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> </execution> </executions> </plugin> <!-- Adds the manifest file created by the org.apache.felix:maven-bundle-plugin --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.2.2</version> <configuration> <archive> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.4.0</version> <configuration> <quiet>true</quiet> <doctitle>Jakarta Concurrency Compatible Implementation ${project.version}</doctitle> <bottom> <![CDATA[Copyright (c) 2020, 2022 Eclipse Foundation. Use is subject to <a href="{@docRoot}/doc-files/speclicense.html" target="_top">license terms</a>. ]]> </bottom> <excludePackageNames>org.glassfish.enterprise.concurrent.management</excludePackageNames> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <phase>validate</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>