mirror of
https://github.com/jlengrand/helidon.git
synced 2026-03-10 08:21:17 +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
90 lines
3.1 KiB
XML
90 lines
3.1 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</groupId>
|
|
<artifactId>helidon-project</artifactId>
|
|
<version>1.3.1-SNAPSHOT</version>
|
|
</parent>
|
|
<groupId>io.helidon.openapi</groupId>
|
|
<artifactId>helidon-openapi</artifactId>
|
|
|
|
<name>Helidon OpenAPI</name>
|
|
|
|
<description>
|
|
Helidon OpenAPI implementation
|
|
</description>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>io.helidon.webserver</groupId>
|
|
<artifactId>helidon-webserver</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.smallrye</groupId>
|
|
<artifactId>smallrye-open-api</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.helidon.media.jsonp</groupId>
|
|
<artifactId>helidon-media-jsonp-server</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.helidon.config</groupId>
|
|
<artifactId>helidon-config</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jboss</groupId>
|
|
<artifactId>jandex</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.microprofile.openapi</groupId>
|
|
<artifactId>microprofile-openapi-api</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.hamcrest</groupId>
|
|
<artifactId>hamcrest-all</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.glassfish.jersey.core</groupId>
|
|
<artifactId>jersey-client</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.yaml</groupId>
|
|
<artifactId>snakeyaml</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.helidon.config</groupId>
|
|
<artifactId>helidon-config-yaml</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|