Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove internal extension quarkus-azure-http-client-vertx #121

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 9 additions & 18 deletions bom/pom.xml
Original file line number Diff line number Diff line change
@@ -1,27 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
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.quarkiverse.azureservices</groupId>
<artifactId>quarkus-azure-services-parent</artifactId>
<version>999-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<groupId>io.quarkiverse.azureservices</groupId>
<artifactId>quarkus-azure-services-bom</artifactId>
<name>Quarkus Azure Services :: BOM</name>
<version>999-SNAPSHOT</version>
<packaging>pom</packaging>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

<azure-sdk-bom.version>1.2.13</azure-sdk-bom.version>
</properties>

<dependencyManagement>
<dependencies>
<!-- Azure sdk dependencies, imported as a BOM -->
Expand All @@ -32,7 +33,7 @@
<type>pom</type>
<scope>import</scope>
</dependency>

<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>msal4j</artifactId>
Expand All @@ -50,7 +51,7 @@
<artifactId>woodstox-core</artifactId>
<version>${woodstox-core.version}</version>
</dependency>

<!-- Azure Services Extensions -->
<dependency>
<groupId>io.quarkiverse.azureservices</groupId>
Expand All @@ -72,16 +73,6 @@
<artifactId>quarkus-azure-app-configuration-deployment</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.quarkiverse.azureservices</groupId>
<artifactId>quarkus-azure-http-client-vertx</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.quarkiverse.azureservices</groupId>
<artifactId>quarkus-azure-http-client-vertx-deployment</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.quarkiverse.azureservices</groupId>
<artifactId>quarkus-azure-jackson-dataformat-xml</artifactId>
Expand Down
24 changes: 6 additions & 18 deletions docs/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
Expand All @@ -9,11 +9,11 @@
<version>999-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<groupId>io.quarkiverse.azureservices</groupId>
<artifactId>quarkus-azure-services-docs</artifactId>
<name>Quarkus Azure Services :: Documentation</name>

<dependencyManagement>
<dependencies>
<dependency>
Expand All @@ -32,7 +32,7 @@
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<!-- Make sure the doc is built after the other artifacts -->
<dependency>
Expand All @@ -59,20 +59,8 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.quarkiverse.azureservices</groupId>
<artifactId>quarkus-azure-http-client-vertx-deployment</artifactId>
<version>${project.version}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>*</artifactId>
<groupId>*</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>

<build>
<sourceDirectory>modules/ROOT/examples</sourceDirectory>
<plugins>
Expand Down
19 changes: 7 additions & 12 deletions extensions/azure-app-configuration/runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,19 @@
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">
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
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.quarkiverse.azureservices</groupId>
<artifactId>quarkus-azure-app-configuration-parent</artifactId>
<version>999-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>quarkus-azure-app-configuration</artifactId>
<name>Quarkus Azure Services :: Extension :: Azure App Configuration :: Runtime</name>

<dependencies>
<dependency>
<groupId>io.quarkus</groupId>
Expand All @@ -53,15 +54,8 @@
<groupId>com.azure</groupId>
<artifactId>azure-core-http-vertx</artifactId>
</dependency>

<!-- Test Dependencies -->
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-junit5-internal</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
Expand All @@ -75,7 +69,8 @@
<goal>extension-descriptor</goal>
</goals>
<configuration>
<deployment>${project.groupId}:${project.artifactId}-deployment:${project.version}</deployment>
<deployment>${project.groupId}:${project.artifactId}-deployment:${project.version}
</deployment>
</configuration>
</execution>
</executions>
Expand Down
18 changes: 7 additions & 11 deletions extensions/azure-storage-blob/deployment/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,11 @@
<version>999-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>quarkus-azure-storage-blob-deployment</artifactId>
<name>Quarkus Azure Services :: Extension :: Azure Storage Blob :: Deployment</name>

<dependencies>
<dependency>
<groupId>io.quarkiverse.azureservices</groupId>
<artifactId>quarkus-azure-http-client-vertx-deployment</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-arc-deployment</artifactId>
Expand All @@ -28,13 +24,13 @@
</dependency>
<dependency>
<groupId>io.quarkiverse.azureservices</groupId>
<artifactId>quarkus-azure-storage-blob</artifactId>
<artifactId>quarkus-azure-core-deployment</artifactId>
</dependency>
<dependency>
<groupId>org.jboss.logging</groupId>
<artifactId>commons-logging-jboss-logging</artifactId>
<groupId>io.quarkiverse.azureservices</groupId>
<artifactId>quarkus-azure-storage-blob</artifactId>
</dependency>

<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-junit5-internal</artifactId>
Expand Down Expand Up @@ -76,7 +72,7 @@
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
Expand Down
21 changes: 13 additions & 8 deletions extensions/azure-storage-blob/runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@
<version>999-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>quarkus-azure-storage-blob</artifactId>
<name>Quarkus Azure Services :: Extension :: Azure Storage Blob :: Runtime</name>

<dependencies>
<dependency>
<groupId>io.quarkiverse.azureservices</groupId>
<artifactId>quarkus-azure-http-client-vertx</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-arc</artifactId>
</dependency>
<dependency>
<groupId>io.quarkiverse.azureservices</groupId>
<artifactId>quarkus-azure-core</artifactId>
</dependency>
<!-- See https://github.com/quarkusio/quarkus/issues/26879 -->
<dependency>
<groupId>com.azure</groupId>
Expand All @@ -33,8 +33,12 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-core-http-vertx</artifactId>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
Expand All @@ -47,7 +51,8 @@
<goal>extension-descriptor</goal>
</goals>
<configuration>
<deployment>${project.groupId}:${project.artifactId}-deployment:${project.version}</deployment>
<deployment>${project.groupId}:${project.artifactId}-deployment:${project.version}
</deployment>
</configuration>
</execution>
</executions>
Expand Down
69 changes: 0 additions & 69 deletions internal/http-client-vertx/deployment/pom.xml

This file was deleted.

This file was deleted.

Loading