microprofile
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.eclipse.microprofile</groupId> <artifactId>microprofile</artifactId> <version>6.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- /********************************************************************** * Copyright (c) 2017-2022 Contributors to the Eclipse Foundation * * See the NOTICES file(s) distributed with this work for additional * information regarding copyright ownership. * * Licensed under the Apache License, Version 2.0 (the "License"); * You may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * SPDX-License-Identifier: Apache-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> <groupId>org.eclipse.microprofile</groupId> <artifactId>microprofile</artifactId> <packaging>pom</packaging> <version>6.0</version> <name>MicroProfile</name> <description>The MicroProfile Specification and Information Repository</description> <url>https://github.com/eclipse/microprofile</url> <inceptionYear>2016</inceptionYear> <organization> <name>MicroProfile</name> <url>https://www.eclipse.org/microprofile</url> </organization> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>MicroProfile Community</name> <url>https://groups.google.com/forum/#!forum/microprofile</url> </developer> </developers> <scm> <url>https://github.com/eclipse/microprofile</url> <connection>scm:git:https://github.com/eclipse/microprofile.git</connection> <developerConnection>scm:git:git@github.com:eclipse/microprofile.git</developerConnection> <tag>6.0</tag> </scm> <issueManagement> <system>GitHub</system> <url>https://github.com/eclipse/microprofile/issues</url> </issueManagement> <distributionManagement> <repository> <id>ossrh</id> <name>Sonatype OSSRH - Release Staging Area</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>ossrh</id> <name>Sonatype OSSRH Snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> <uniqueVersion>true</uniqueVersion> <!-- for keeping multipe snapshot versions - maybe for staging a final version besides nightly versions --> </snapshotRepository> </distributionManagement> <mailingLists> <mailingList> <name>MicroProfile</name> <subscribe>https://groups.google.com/group/microprofile/subscribe</subscribe> <post>microprofile@googlegroups.com</post> </mailingList> <mailingList> <name>MicroProfile Dev</name> <subscribe>https://dev.eclipse.org/mailman/listinfo/microprofile-dev</subscribe> <post>microprofile-dev@eclipse.org</post> </mailingList> <mailingList> <name>MicroProfile Working Group Mailing List</name> <post>microprofile-wg@eclipse.org</post> </mailingList> </mailingLists> <modules> <module>spec</module> </modules> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <!-- Jakarta EE specs --> <jakarta-version>10.0.0</jakarta-version> <!-- MicroProfile specs --> <config-version>3.0.2</config-version> <ft-version>4.0.2</ft-version> <health-version>4.0.1</health-version> <metrics-version>5.0.0</metrics-version> <jwt-version>2.1</jwt-version> <openapi-version>3.1</openapi-version> <rest-client-version>3.0.1</rest-client-version> <telemetry-version>1.0</telemetry-version> <!-- other props --> <!-- whether autorelease maven central staging repositories - default false to allow review and manually release repositories --> <autorelease>false</autorelease> <!-- keeping closed repos with failure - default is false because the errors are visible in the maven output, but true will leave the repo open for investigation in Sonatype Nexus --> <keepStagingReposOnFailure>false</keepStagingReposOnFailure> </properties> <build> <plugins> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>aggregate-javadoc</id> <phase>package</phase> <goals> <goal>aggregate-jar</goal> </goals> </execution> </executions> <configuration> <failOnError>false</failOnError> <additionalDependencies> <additionalDependency> <groupId>org.osgi</groupId> <artifactId>osgi.annotation</artifactId> <version>8.1.0</version> </additionalDependency> <additionalDependency><groupId>org.osgi</groupId><artifactId>org.osgi.service.cdi</artifactId><version>1.0.1</version></additionalDependency> <additionalDependency><groupId>biz.aQute.bnd</groupId><artifactId>biz.aQute.bnd.annotation</artifactId><version>6.2.0</version></additionalDependency> </additionalDependencies> <includeDependencySources>true</includeDependencySources> <dependencySourceIncludes> <dependencySourceInclude>org.eclipse.microprofile.*:*</dependencySourceInclude> </dependencySourceIncludes> <links> <link>https://javaee.github.io/javaee-spec/javadocs/</link> </links> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <localCheckout>true</localCheckout> <useReleaseProfile>false</useReleaseProfile> <arguments>${arguments} -Prelease -Drevremark=${revremark}</arguments> </configuration> </plugin> </plugins> </build> <dependencyManagement> <dependencies> <dependency> <groupId>jakarta.platform</groupId> <artifactId>jakarta.jakartaee-core-api</artifactId> <version>${jakarta-version}</version> </dependency> <dependency> <groupId>org.eclipse.microprofile.config</groupId> <artifactId>microprofile-config-api</artifactId> <version>${config-version}</version> </dependency> <dependency> <groupId>org.eclipse.microprofile.fault-tolerance</groupId> <artifactId>microprofile-fault-tolerance-api</artifactId> <version>${ft-version}</version> </dependency> <dependency> <groupId>org.eclipse.microprofile.health</groupId> <artifactId>microprofile-health-api</artifactId> <version>${health-version}</version> </dependency> <dependency> <groupId>org.eclipse.microprofile.metrics</groupId> <artifactId>microprofile-metrics-api</artifactId> <version>${metrics-version}</version> </dependency> <dependency> <groupId>org.eclipse.microprofile.jwt</groupId> <artifactId>microprofile-jwt-auth-api</artifactId> <version>${jwt-version}</version> </dependency> <dependency> <groupId>org.eclipse.microprofile.openapi</groupId> <artifactId>microprofile-openapi-api</artifactId> <version>${openapi-version}</version> </dependency> <dependency> <groupId>org.eclipse.microprofile.rest.client</groupId> <artifactId>microprofile-rest-client-api</artifactId> <version>${rest-client-version}</version> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>jakarta.platform</groupId> <artifactId>jakarta.jakartaee-core-api</artifactId> </dependency> <dependency> <groupId>org.eclipse.microprofile.config</groupId> <artifactId>microprofile-config-api</artifactId> </dependency> <dependency> <groupId>org.eclipse.microprofile.fault-tolerance</groupId> <artifactId>microprofile-fault-tolerance-api</artifactId> </dependency> <dependency> <groupId>org.eclipse.microprofile.health</groupId> <artifactId>microprofile-health-api</artifactId> </dependency> <dependency> <groupId>org.eclipse.microprofile.metrics</groupId> <artifactId>microprofile-metrics-api</artifactId> </dependency> <dependency> <groupId>org.eclipse.microprofile.jwt</groupId> <artifactId>microprofile-jwt-auth-api</artifactId> </dependency> <dependency> <groupId>org.eclipse.microprofile.openapi</groupId> <artifactId>microprofile-openapi-api</artifactId> </dependency> <dependency> <groupId>org.eclipse.microprofile.rest.client</groupId> <artifactId>microprofile-rest-client-api</artifactId> </dependency> </dependencies> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.3</version> <extensions>true</extensions> <configuration> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <serverId>ossrh</serverId> <autoReleaseAfterClose>${autorelease}</autoReleaseAfterClose> <keepStagingRepositoryOnCloseRuleFailure>${keepStagingReposOnFailure}</keepStagingRepositoryOnCloseRuleFailure> </configuration> </plugin> <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> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>