jakarta.enterprise.concurrent-api
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>jakarta.enterprise.concurrent</groupId> <artifactId>jakarta.enterprise.concurrent-api</artifactId> <version>1.1.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2012, 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.5</version> </parent> <groupId>jakarta.enterprise.concurrent</groupId> <artifactId>jakarta.enterprise.concurrent-api</artifactId> <version>1.1.2</version> <name>jakarta.enterprise.concurrent-api</name> <description>Jakarta Concurrency</description> <url>https://github.com/eclipse-ee4j/concurrency-api</url> <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> <scm> <connection>scm:git:https://github.com/eclipse-ee4j/concurrency-api.git</connection> <developerConnection>scm:git:git@github.com:eclipse-ee4j/concurrency-api.git</developerConnection> <url>https://github.com/eclipse-ee4j/concurrency-api</url> </scm> <developers> <developer> <id>anthony.lai</id> <name>Anthony Lai</name> <organization>Oracle</organization> </developer> </developers> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <api_package>javax.enterprise.concurrent</api_package> <non.final>false</non.final> <last.spec_version>0.0</last.spec_version> <next.spec_version>1.1</next.spec_version> <spec.version>${next.spec_version}</spec.version> <new.spec.version /> <build_number /> <packages.export>javax.enterprise.concurrent.*; version=${spec.bundle.version}</packages.export> </properties> <organization> <name>Oracle Corporation</name> <url>http://www.oracle.com/</url> </organization> <issueManagement> <system>GitHub</system> <url>https://github.com/eclipse-ee4j/concurrency-api/issues</url> </issueManagement> <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> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <configuration> <mavenExecutorId>forked-path</mavenExecutorId> <useReleaseProfile>false</useReleaseProfile> <arguments>${release.arguments}</arguments> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.3.1</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>buildnumber-maven-plugin</artifactId> <version>1.0-beta-3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.8</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> <version>2.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>2.6</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.glassfish.build</groupId> <artifactId>spec-version-maven-plugin</artifactId> <version>2.0</version> <configuration> <specMode>jakarta</specMode> <spec> <nonFinal>${non.final}</nonFinal> <jarType>api</jarType> <specVersion>${spec.version}</specVersion> <newSpecVersion>${new.spec.version}</newSpecVersion> <specBuild>${build_number}</specBuild> <specImplVersion>${project.version}</specImplVersion> <apiPackage>${api_package}</apiPackage> </spec> </configuration> <executions> <execution> <goals> <goal>set-spec-properties</goal> <goal>check-module</goal> </goals> </execution> </executions> </plugin> <!-- This plugin is reponsible for packaging artifacts as OSGi bundles. Please refer to http://felix.apache.org/site/apache-felix-maven-bundle-plugin-bnd.html for more information about how to use this plugin. --> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>2.3.7</version> <extensions>true</extensions> <configuration> <instructions> <Bundle-Version>${spec.bundle.version}</Bundle-Version> <Bundle-SymbolicName>${spec.bundle.symbolic-name}</Bundle-SymbolicName> <Extension-Name>${spec.extension.name}</Extension-Name> <Implementation-Version>${spec.implementation.version}</Implementation-Version> <Specification-Version>${spec.specification.version}</Specification-Version> <specversion>${spec.specification.version}</specversion> <Export-Package>${packages.export}</Export-Package> </instructions> </configuration> <executions> <execution> <id>bundle-manifest</id> <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <useDefaultManifestFile>true</useDefaultManifestFile> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>buildnumber-maven-plugin</artifactId> <configuration> <format>{0,date,MM/dd/yyyy hh:mm aa}</format> <items> <item>timestamp</item> </items> </configuration> <executions> <execution> <phase>validate</phase> <goals> <goal>create</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.8</version> <configuration> <additionalparam>-Xdoclint:none</additionalparam> <doctitle>Jakarta Concurrency ${project.version} specification</doctitle> <bottom> <![CDATA[Copyright (c) 2019 Eclipse Foundation. Use is subject to <a href="{@docRoot}/doc-files/speclicense.html" target="_top">license terms</a>. ]]> </bottom> <docfilessubdirs>true</docfilessubdirs> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>3.0.0</version> <executions> <execution> <id>add-resource</id> <phase>generate-resources</phase> <goals> <goal>add-resource</goal> </goals> <configuration> <resources> <resource> <directory>..</directory> <targetPath>META-INF</targetPath> <includes> <include>LICENSE.md</include> <include>NOTICE.md</include> </includes> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <phase>validate</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> <executions> <execution> <goals> <goal>jxr</goal> </goals> <phase>validate</phase> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <configuration> <outputDirectory>${project.build.directory}/checkstyle</outputDirectory> <outputFile>${project.build.directory}/checkstyle/checkstyle-result.xml</outputFile> <configLocation>etc/config/checkstyle.xml</configLocation> </configuration> <executions> <execution> <goals> <goal>checkstyle</goal> </goals> <phase>validate</phase> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>