Skip to content

Commit

Permalink
Validation of codestart artifacts configured in extension descriptors…
Browse files Browse the repository at this point in the history
…, renamed quarkus-platform-descriptor-json to quarkus-core-codestarts, support loading codestarts referenced from extension metadata, an option to validate codestart artifact referenced from the extension metadata
  • Loading branch information
aloubyansky committed Mar 24, 2021
1 parent 078b1fe commit 3e8481e
Show file tree
Hide file tree
Showing 278 changed files with 155 additions and 1,352 deletions.
8 changes: 7 additions & 1 deletion build-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,13 @@
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-platform-descriptor-json</artifactId>
<artifactId>quarkus-project-core-extension-codestarts</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-project-core-extension-codestarts</artifactId>
<type>pom</type>
<version>${project.version}</version>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
}
},
"codestarts-artifacts": [
"${project.groupId}:quarkus-platform-descriptor-json::jar:${project.version}"
"${project.groupId}:quarkus-project-core-extension-codestarts::jar:${project.version}"
]
}
}
2 changes: 1 addition & 1 deletion devtools/cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-platform-descriptor-json</artifactId>
<artifactId>quarkus-project-core-extension-codestarts</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
Expand Down
2 changes: 1 addition & 1 deletion devtools/gradle/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ dependencies {

implementation "io.quarkus:quarkus-bootstrap-core:${version}"
implementation "io.quarkus:quarkus-devtools-common:${version}"
implementation "io.quarkus:quarkus-platform-descriptor-json:${version}"
implementation "io.quarkus:quarkus-core-deployment:${version}"

testImplementation "io.quarkus:quarkus-project-core-extension-codestarts:${version}"
testImplementation 'org.mockito:mockito-core:3.8.0'
testImplementation 'org.assertj:assertj-core:3.19.0'
testImplementation 'org.junit.jupiter:junit-jupiter:5.7.1'
Expand Down
10 changes: 9 additions & 1 deletion devtools/gradle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,15 @@
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-platform-descriptor-json</artifactId>
<artifactId>quarkus-project-core-extension-codestarts</artifactId>
<type>pom</type>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.awaitility</groupId>
Expand Down
2 changes: 1 addition & 1 deletion devtools/maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-platform-descriptor-json</artifactId>
<artifactId>quarkus-project-core-extension-codestarts</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 3e8481e

Please sign in to comment.