mirror of
https://github.com/jlengrand/helidon.git
synced 2026-03-10 15:50:14 +00:00
* Fix release.sh update-version to work with new parent pom hierarchy * Update CHANGELOG for 1.3.0 release * fix release script to deal with maven timestamps * Update graal tests to work with new parent pom hierarchy * Update release.sh to set helidon.version correctly * Move gpg plugin management and execution for the release profile under parent/pom.xml Move nexus plugin extension for the release profile under parent/pom.xml Move the staging profile under parent/pom.xml Added missing snapshot repository under distribution management in parent/pom.xml * Fixes #1024 - Bad build time subsitution for bare archetypes pom Fixes #1025 - archetype-packaging plugin needs to be declared as an extension Reverting dependencies on helidon-metrics2 back helidon-metrics for all SE examples Removing helidon-metrics2 from the BOM pom to prevent end-user from using it Update examples/grpc/metrics README to fix test step. * Update version to 1.3.1-SNAPSHOT
93 lines
3.3 KiB
XML
93 lines
3.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
|
|
Copyright (c) 2019 Oracle and/or its affiliates. All rights reserved.
|
|
|
|
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.
|
|
|
|
-->
|
|
|
|
<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>io.helidon.applications</groupId>
|
|
<artifactId>helidon-mp</artifactId>
|
|
<version>1.3.1-SNAPSHOT</version>
|
|
<relativePath>../../../applications/mp/pom.xml</relativePath>
|
|
</parent>
|
|
<groupId>io.helidon.examples.microprofile</groupId>
|
|
<artifactId>helidon-examples-microprofile-openapi-basic</artifactId>
|
|
<name>Helidon Microprofile Example Basic OpenAPI</name>
|
|
|
|
<description>
|
|
Microprofile example showing basic OpenAPI support
|
|
</description>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>io.helidon.microprofile.bundles</groupId>
|
|
<artifactId>helidon-microprofile-3.0</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.microprofile.openapi</groupId>
|
|
<artifactId>microprofile-openapi-api</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.glassfish.jersey.media</groupId>
|
|
<artifactId>jersey-media-json-binding</artifactId>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jboss</groupId>
|
|
<artifactId>jandex</artifactId>
|
|
<scope>runtime</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.activation</groupId>
|
|
<artifactId>javax.activation-api</artifactId>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>copy-libs</id>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.jboss.jandex</groupId>
|
|
<artifactId>jandex-maven-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>make-index</id>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|