Skip to content

Commit df752f6

Browse files
authored
Merge pull request #378 from azure-javaee/add-deployment-to-common-extensions
Add execution configuration for quarkus-extension-maven-plugin in pom.xml
2 parents f47b0cd + f6be270 commit df752f6

File tree

6 files changed

+60
-2
lines changed

6 files changed

+60
-2
lines changed

common/azure-identity/runtime/pom.xml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,20 @@
3333
<plugin>
3434
<groupId>io.quarkus</groupId>
3535
<artifactId>quarkus-extension-maven-plugin</artifactId>
36+
<version>${quarkus.version}</version>
37+
<executions>
38+
<execution>
39+
<phase>compile</phase>
40+
<goals>
41+
<goal>extension-descriptor</goal>
42+
</goals>
43+
<configuration>
44+
<deployment>
45+
${project.groupId}:${project.artifactId}-deployment:${project.version}
46+
</deployment>
47+
</configuration>
48+
</execution>
49+
</executions>
3650
</plugin>
3751
<plugin>
3852
<groupId>org.apache.maven.plugins</groupId>

common/core/runtime/pom.xml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,20 @@
8080
<plugin>
8181
<groupId>io.quarkus</groupId>
8282
<artifactId>quarkus-extension-maven-plugin</artifactId>
83+
<version>${quarkus.version}</version>
84+
<executions>
85+
<execution>
86+
<phase>compile</phase>
87+
<goals>
88+
<goal>extension-descriptor</goal>
89+
</goals>
90+
<configuration>
91+
<deployment>
92+
${project.groupId}:${project.artifactId}-deployment:${project.version}
93+
</deployment>
94+
</configuration>
95+
</execution>
96+
</executions>
8397
</plugin>
8498
<plugin>
8599
<groupId>org.apache.maven.plugins</groupId>

common/http-client-vertx/runtime/pom.xml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,20 @@
5757
<plugin>
5858
<groupId>io.quarkus</groupId>
5959
<artifactId>quarkus-extension-maven-plugin</artifactId>
60+
<version>${quarkus.version}</version>
61+
<executions>
62+
<execution>
63+
<phase>compile</phase>
64+
<goals>
65+
<goal>extension-descriptor</goal>
66+
</goals>
67+
<configuration>
68+
<deployment>
69+
${project.groupId}:${project.artifactId}-deployment:${project.version}
70+
</deployment>
71+
</configuration>
72+
</execution>
73+
</executions>
6074
</plugin>
6175
<plugin>
6276
<groupId>org.apache.maven.plugins</groupId>

common/jackson-dataformat-xml/runtime/pom.xml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,20 @@
3737
<plugin>
3838
<groupId>io.quarkus</groupId>
3939
<artifactId>quarkus-extension-maven-plugin</artifactId>
40+
<version>${quarkus.version}</version>
41+
<executions>
42+
<execution>
43+
<phase>compile</phase>
44+
<goals>
45+
<goal>extension-descriptor</goal>
46+
</goals>
47+
<configuration>
48+
<deployment>
49+
${project.groupId}:${project.artifactId}-deployment:${project.version}
50+
</deployment>
51+
</configuration>
52+
</execution>
53+
</executions>
4054
</plugin>
4155
<plugin>
4256
<groupId>org.apache.maven.plugins</groupId>

services/azure-app-configuration/runtime/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,8 @@
7676
<goal>extension-descriptor</goal>
7777
</goals>
7878
<configuration>
79-
<deployment>${project.groupId}:${project.artifactId}-deployment:${project.version}
79+
<deployment>
80+
${project.groupId}:${project.artifactId}-deployment:${project.version}
8081
</deployment>
8182
</configuration>
8283
</execution>

services/azure-storage-blob/runtime/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@
5353
<goal>extension-descriptor</goal>
5454
</goals>
5555
<configuration>
56-
<deployment>${project.groupId}:${project.artifactId}-deployment:${project.version}
56+
<deployment>
57+
${project.groupId}:${project.artifactId}-deployment:${project.version}
5758
</deployment>
5859
</configuration>
5960
</execution>

0 commit comments

Comments
 (0)