-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Multiple fixes for create-extension in Quarkus core
- Loading branch information
Showing
13 changed files
with
234 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...e/extension-base/java/runtime/src/main/resources/META-INF/quarkus-extension.tpl.qute.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
...ces/__snapshots__/CreateExtensionMojoIT/testCreateCoreExtension/extensions_my-ext_pom.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>org.acme</groupId> | ||
<artifactId>extensions-parent</artifactId> | ||
<version>0.1-SNAPSHOT</version> | ||
</parent> | ||
<artifactId>quarkus-my-ext-parent</artifactId> | ||
<packaging>pom</packaging> | ||
<name>Quarkus - My Ext - Parent</name> | ||
<modules> | ||
<module>deployment</module> | ||
<module>runtime</module> | ||
</modules> | ||
</project> |
9 changes: 9 additions & 0 deletions
9
...oreExtension/extensions_my-ext_runtime_src_main_resources_META-INF_quarkus-extension.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
name: My Ext | ||
#description: My Ext ... | ||
metadata: | ||
# keywords: | ||
# - my-ext | ||
# guide: ... | ||
# categories: | ||
# - "miscellaneous" | ||
# status: "preview" |
28 changes: 28 additions & 0 deletions
28
...__/CreateExtensionMojoIT/testCreateCoreExtensionFromExtensionsDir/bom_application_pom.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<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> | ||
<groupId>org.acme</groupId> | ||
<artifactId>fake-quarkus-parent</artifactId> | ||
<version>0.1-SNAPSHOT</version> | ||
<relativePath>../../pom.xml</relativePath> | ||
</parent> | ||
<artifactId>fake-quarkus-bom</artifactId> | ||
<packaging>pom</packaging> | ||
|
||
<dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.acme</groupId> | ||
<artifactId>quarkus-my-ext</artifactId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.acme</groupId> | ||
<artifactId>quarkus-my-ext-deployment</artifactId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
</dependencies> | ||
</dependencyManagement> | ||
</project> |
60 changes: 60 additions & 0 deletions
60
...pshots__/CreateExtensionMojoIT/testCreateCoreExtensionFromExtensionsDir/dir-tree.snapshot
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
/ | ||
bom/ | ||
bom/application/ | ||
bom/application/pom.xml | ||
integration-tests/ | ||
integration-tests/my-ext/ | ||
integration-tests/my-ext/pom.xml | ||
integration-tests/my-ext/src/ | ||
integration-tests/my-ext/src/test/ | ||
integration-tests/my-ext/src/test/java/ | ||
integration-tests/my-ext/src/test/java/org/ | ||
integration-tests/my-ext/src/test/java/org/acme/ | ||
integration-tests/my-ext/src/test/java/org/acme/my/ | ||
integration-tests/my-ext/src/test/java/org/acme/my/ext/ | ||
integration-tests/my-ext/src/test/java/org/acme/my/ext/it/ | ||
integration-tests/my-ext/src/test/java/org/acme/my/ext/it/NativeMyExtResourceIT.java | ||
integration-tests/my-ext/src/test/java/org/acme/my/ext/it/MyExtResourceTest.java | ||
integration-tests/my-ext/src/main/ | ||
integration-tests/my-ext/src/main/resources/ | ||
integration-tests/my-ext/src/main/resources/application.properties | ||
integration-tests/my-ext/src/main/java/ | ||
integration-tests/my-ext/src/main/java/org/ | ||
integration-tests/my-ext/src/main/java/org/acme/ | ||
integration-tests/my-ext/src/main/java/org/acme/my/ | ||
integration-tests/my-ext/src/main/java/org/acme/my/ext/ | ||
integration-tests/my-ext/src/main/java/org/acme/my/ext/it/ | ||
integration-tests/my-ext/src/main/java/org/acme/my/ext/it/MyExtResource.java | ||
integration-tests/pom.xml | ||
pom.xml | ||
extensions/ | ||
extensions/my-ext/ | ||
extensions/my-ext/runtime/ | ||
extensions/my-ext/runtime/pom.xml | ||
extensions/my-ext/runtime/src/ | ||
extensions/my-ext/runtime/src/main/ | ||
extensions/my-ext/runtime/src/main/resources/ | ||
extensions/my-ext/runtime/src/main/resources/META-INF/ | ||
extensions/my-ext/runtime/src/main/resources/META-INF/quarkus-extension.yaml | ||
extensions/my-ext/pom.xml | ||
extensions/my-ext/deployment/ | ||
extensions/my-ext/deployment/pom.xml | ||
extensions/my-ext/deployment/src/ | ||
extensions/my-ext/deployment/src/test/ | ||
extensions/my-ext/deployment/src/test/java/ | ||
extensions/my-ext/deployment/src/test/java/org/ | ||
extensions/my-ext/deployment/src/test/java/org/acme/ | ||
extensions/my-ext/deployment/src/test/java/org/acme/my/ | ||
extensions/my-ext/deployment/src/test/java/org/acme/my/ext/ | ||
extensions/my-ext/deployment/src/test/java/org/acme/my/ext/test/ | ||
extensions/my-ext/deployment/src/test/java/org/acme/my/ext/test/MyExtTest.java | ||
extensions/my-ext/deployment/src/test/java/org/acme/my/ext/test/MyExtDevModeTest.java | ||
extensions/my-ext/deployment/src/main/ | ||
extensions/my-ext/deployment/src/main/java/ | ||
extensions/my-ext/deployment/src/main/java/org/ | ||
extensions/my-ext/deployment/src/main/java/org/acme/ | ||
extensions/my-ext/deployment/src/main/java/org/acme/my/ | ||
extensions/my-ext/deployment/src/main/java/org/acme/my/ext/ | ||
extensions/my-ext/deployment/src/main/java/org/acme/my/ext/deployment/ | ||
extensions/my-ext/deployment/src/main/java/org/acme/my/ext/deployment/MyExtProcessor.java | ||
extensions/pom.xml |
17 changes: 17 additions & 0 deletions
17
.../CreateExtensionMojoIT/testCreateCoreExtensionFromExtensionsDir/extensions_my-ext_pom.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>org.acme</groupId> | ||
<artifactId>extensions-parent</artifactId> | ||
<version>0.1-SNAPSHOT</version> | ||
</parent> | ||
<artifactId>quarkus-my-ext-parent</artifactId> | ||
<packaging>pom</packaging> | ||
<name>Quarkus - My Ext - Parent</name> | ||
<modules> | ||
<module>deployment</module> | ||
<module>runtime</module> | ||
</modules> | ||
</project> |
9 changes: 9 additions & 0 deletions
9
...xtensionsDir/extensions_my-ext_runtime_src_main_resources_META-INF_quarkus-extension.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
name: My Ext | ||
#description: My Ext ... | ||
metadata: | ||
# keywords: | ||
# - my-ext | ||
# guide: ... | ||
# categories: | ||
# - "miscellaneous" | ||
# status: "preview" |
20 changes: 20 additions & 0 deletions
20
...shots__/CreateExtensionMojoIT/testCreateCoreExtensionFromExtensionsDir/extensions_pom.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<parent> | ||
<groupId>org.acme</groupId> | ||
<artifactId>fake-quarkus-parent</artifactId> | ||
<version>0.1-SNAPSHOT</version> | ||
<relativePath>../pom.xml</relativePath> | ||
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<artifactId>extensions-parent</artifactId> | ||
|
||
<packaging>pom</packaging> | ||
<modules> | ||
<module>my-ext</module> | ||
</modules> | ||
|
||
</project> |
20 changes: 20 additions & 0 deletions
20
.../CreateExtensionMojoIT/testCreateCoreExtensionFromExtensionsDir/integration-tests_pom.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<parent> | ||
<groupId>org.acme</groupId> | ||
<artifactId>fake-quarkus-parent</artifactId> | ||
<version>0.1-SNAPSHOT</version> | ||
<relativePath>../pom.xml</relativePath> | ||
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<artifactId>integration-tests-parent</artifactId> | ||
|
||
<packaging>pom</packaging> | ||
<modules> | ||
<module>my-ext</module> | ||
</modules> | ||
|
||
</project> |