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

Take advantage of codestarts to allow creating a quarkus application as a maven module (WIP) #17170

Conversation

cristian-com
Copy link
Contributor

Fixes: #12936

@quarkus-bot quarkus-bot bot added area/devtools Issues/PR related to maven, gradle, platform and cli tooling/plugins area/maven area/platform Issues related to definition and interaction with Quarkus Platform labels May 12, 2021
Copy link
Contributor

@ia3andy ia3andy left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks, I added a few comment.

@quarkus-bot quarkus-bot bot added the area/cli Related to quarkus cli (not maven/gradle/etc.) label May 24, 2021
@cristian-com cristian-com force-pushed the 12936-Add-the-option-to-define-parent-pom-in-the-maven-codestart branch 3 times, most recently from 665d865 to e943bd1 Compare May 24, 2021 16:50
@ia3andy
Copy link
Contributor

ia3andy commented May 31, 2021

@cristian-com could you rebase from main?

@cristian-com cristian-com force-pushed the 12936-Add-the-option-to-define-parent-pom-in-the-maven-codestart branch from e943bd1 to e38992a Compare June 7, 2021 19:30
Copy link
Contributor Author

@cristian-com cristian-com left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ia3andy I'm unsure now if this applies for CLI, I will add it if that makes sense.

@cristian-com cristian-com requested a review from ia3andy June 8, 2021 09:47
@cristian-com cristian-com marked this pull request as ready for review June 28, 2021 17:02
@quarkus-bot
Copy link

quarkus-bot bot commented Jun 29, 2021

This workflow status is outdated as a new workflow run has been triggered.

Failing Jobs - Building d5e18c4

Status Name Step Test failures Logs Raw logs
Initial JDK 11 Build Build ⚠️ Check → Logs Raw logs

@cristian-com cristian-com force-pushed the 12936-Add-the-option-to-define-parent-pom-in-the-maven-codestart branch 2 times, most recently from a6c2629 to ed22adc Compare June 29, 2021 07:57
@quarkus-bot
Copy link

quarkus-bot bot commented Jun 29, 2021

This workflow status is outdated as a new workflow run has been triggered.

🚫 This workflow run has been cancelled.

Failing Jobs - Building a6c2629

⚠️ Artifacts of the workflow run were not available thus the report misses some details.

Status Name Step Test failures Logs Raw logs
Initial JDK 11 Build Build ⚠️ Check → Logs Raw logs

@quarkus-bot
Copy link

quarkus-bot bot commented Jun 29, 2021

This workflow status is outdated as a new workflow run has been triggered.

Failing Jobs - Building ed22adc

Status Name Step Test failures Logs Raw logs
Initial JDK 11 Build Build ⚠️ Check → Logs Raw logs

@@ -137,11 +182,12 @@ public QuarkusCommandOutcome execute(QuarkusCommandInvocation invocation) throws
.example(invocation.getValue(EXAMPLE))
.noCode(invocation.getValue(NO_CODE, false))
.addCodestarts(invocation.getValue(EXTRA_CODESTARTS, Collections.emptySet()))
.noBuildToolWrapper(invocation.getValue(NO_BUILDTOOL_WRAPPER, false))
.noBuildToolWrapper(invocation.getValue(NO_BUILDTOOL_WRAPPER, parent != null))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't know that this is the best assumption, though I understand why you're doing it this way. We have a separate issue open for detecting wrappers that would interfere here.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This based on the issue description #12936 (comment)
If it is not applicable I'll leave it as false

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ebullient why would it interfere since we still use the invocation value? Cristian change is only affecting the default behavior..

Copy link
Contributor

@ia3andy ia3andy Jul 7, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@cristian-com after giving it a try, it seems not be working since this default is never* used.

* because we have another default overriding it in the caller..

Maybe we shouldn't pass any default in the callers when not expressly set by the user

@@ -205,4 +256,53 @@ public QuarkusCommandOutcome execute(QuarkusCommandInvocation invocation) throws
}
return ElementCatalogBuilder.getMembersForElements(ec, eKeys);
}

private void addModuleToParentPom(QuarkusCommandInvocation invocation, Model parent,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

just a thought - parent pom is not necessarily the same as the aggregator pom.
you can easiliy have a parent that is not in your parent directory and in parent directory is only an aggregator.

I'm wondering if it would be worth printing a info or warning to users in case of the parent dir found pom has but no build sections then most likely user want to control if we generated the right parent pom....

technically maybe the only thing we should do is to add our selves to the aggregator pom ?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We are adding ourselves to the aggregator pom. A different question I think would be if we always want to do so in that case.

@ia3andy ia3andy changed the title WIP: 12936 add the option to define parent pom in the maven codestart Take advantage of codestarts to allow creating a quarkus application as a maven module (WIP) Jul 7, 2021
Copy link
Contributor

@ia3andy ia3andy left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looking good beside a few comments here and there.

@@ -137,11 +182,12 @@ public QuarkusCommandOutcome execute(QuarkusCommandInvocation invocation) throws
.example(invocation.getValue(EXAMPLE))
.noCode(invocation.getValue(NO_CODE, false))
.addCodestarts(invocation.getValue(EXTRA_CODESTARTS, Collections.emptySet()))
.noBuildToolWrapper(invocation.getValue(NO_BUILDTOOL_WRAPPER, false))
.noBuildToolWrapper(invocation.getValue(NO_BUILDTOOL_WRAPPER, parent != null))
Copy link
Contributor

@ia3andy ia3andy Jul 7, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@cristian-com after giving it a try, it seems not be working since this default is never* used.

* because we have another default overriding it in the caller..

Maybe we shouldn't pass any default in the callers when not expressly set by the user

@cristian-com cristian-com force-pushed the 12936-Add-the-option-to-define-parent-pom-in-the-maven-codestart branch from ed22adc to f97d60d Compare July 7, 2021 13:17
@quarkus-bot
Copy link

quarkus-bot bot commented Jul 7, 2021

This workflow status is outdated as a new workflow run has been triggered.

Failing Jobs - Building f97d60d

Status Name Step Test failures Logs Raw logs
Initial JDK 11 Build Build ⚠️ Check → Logs Raw logs

@cristian-com cristian-com force-pushed the 12936-Add-the-option-to-define-parent-pom-in-the-maven-codestart branch from f97d60d to 38ecb74 Compare July 7, 2021 14:33
@quarkus-bot
Copy link

quarkus-bot bot commented Jul 7, 2021

This workflow status is outdated as a new workflow run has been triggered.

Failing Jobs - Building 38ecb74

Status Name Step Test failures Logs Raw logs
Devtools Tests - JDK 11 Build Test failures Logs Raw logs
Devtools Tests - JDK 11 Windows Build Test failures Logs Raw logs
Gradle Tests - JDK 11 Build Test failures Logs Raw logs
Gradle Tests - JDK 11 Windows Build Test failures Logs Raw logs
JVM Tests - JDK 11 Build Test failures Logs Raw logs
JVM Tests - JDK 11 Windows Build Test failures Logs Raw logs
JVM Tests - JDK 16 Build Test failures Logs Raw logs
Maven Tests - JDK 11 Build Test failures Logs Raw logs
Maven Tests - JDK 11 Windows Build Test failures Logs Raw logs

Test Failures

⚙️ Devtools Tests - JDK 11 #

📦 integration-tests/devtools

io.quarkus.devtools.commands.AddGradleExtensionsTest.testRegexpMatches line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.testPartialMatches line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addExtensionWithGAV line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.doesNotAddExtensionsWhenMultipleMatchWithOneKeyword line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addDuplicatedExtensionUsingGAV line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.testVertx line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addExtensionWithGroupIdAndArtifactId line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addExistingAndMissingExtensionsWillFailForBoth line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.testVertxWithDot line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addExtensionTwiceInOneBatch line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.doNotAddExtensionWhenMultipleMatchWithMultipleKeywords line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addMissingExtension line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addExtensionTwiceInTwoBatches line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addSomeValidExtensions line 24 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.testRegexpMatches line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.testPartialMatches line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addExtensionWithGAV line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.doesNotAddExtensionsWhenMultipleMatchWithOneKeyword line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addDuplicatedExtensionUsingGAV line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.testVertx line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addExtensionWithGroupIdAndArtifactId line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addExistingAndMissingExtensionsWillFailForBoth line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.testVertxWithDot line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addExtensionTwiceInOneBatch line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.doNotAddExtensionWhenMultipleMatchWithMultipleKeywords line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addMissingExtension line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addExtensionTwiceInTwoBatches line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addSomeValidExtensions line 19 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectPlatformMetadataTest.createGradleKotlin line 62 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectPlatformMetadataTest.create line 37 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectPlatformMetadataTest.createGradle line 52 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectTest.createOnTopOfExisting line 206 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectTest.createSpringWeb line 87 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectTest.createRESTEasyAndSpringWeb line 115 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectTest.createMultipleTimes line 233 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectTest.createGradle line 146 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectTest.createRESTEasy line 48 - Source on GitHub

io.quarkus.devtools.commands.ListExtensionsTest.listWithBomExtensionWithSpaces line 58 - Source on GitHub

io.quarkus.devtools.commands.ListExtensionsTest.searchRest line 154 - Source on GitHub

io.quarkus.devtools.commands.ListExtensionsTest.listWithoutBom line 73 - Source on GitHub

io.quarkus.devtools.commands.ListExtensionsTest.listWithBom line 40 - Source on GitHub

io.quarkus.devtools.commands.ListExtensionsTest.searchUnexpected line 135 - Source on GitHub

io.quarkus.devtools.commands.RemoveGradleExtensionsTest.testRegexpMatches line 18 - Source on GitHub

io.quarkus.devtools.commands.RemoveGradleExtensionsTest.testPartialMatches line 18 - Source on GitHub

io.quarkus.devtools.commands.RemoveGradleExtensionsTest.removeSomeValidExtensions line 18 - Source on GitHub

io.quarkus.devtools.commands.RemoveMavenExtensionsTest.testRegexpMatches line 19 - Source on GitHub

io.quarkus.devtools.commands.RemoveMavenExtensionsTest.testPartialMatches line 19 - Source on GitHub

io.quarkus.devtools.commands.RemoveMavenExtensionsTest.removeSomeValidExtensions line 19 - Source on GitHub

io.quarkus.devtools.project.compress.QuarkusProjectCompressTest.createZipWithParentFolder line 61 - Source on GitHub

io.quarkus.devtools.project.compress.QuarkusProjectCompressTest.createZip line 40 - Source on GitHub


⚙️ Devtools Tests - JDK 11 Windows #

📦 integration-tests/devtools

io.quarkus.devtools.commands.AddGradleExtensionsTest.testRegexpMatches line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.testPartialMatches line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addExtensionWithGAV line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.doesNotAddExtensionsWhenMultipleMatchWithOneKeyword line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addDuplicatedExtensionUsingGAV line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.testVertx line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addExtensionWithGroupIdAndArtifactId line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addExistingAndMissingExtensionsWillFailForBoth line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.testVertxWithDot line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addExtensionTwiceInOneBatch line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.doNotAddExtensionWhenMultipleMatchWithMultipleKeywords line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addMissingExtension line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addExtensionTwiceInTwoBatches line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addSomeValidExtensions line 24 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.testRegexpMatches line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.testPartialMatches line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addExtensionWithGAV line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.doesNotAddExtensionsWhenMultipleMatchWithOneKeyword line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addDuplicatedExtensionUsingGAV line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.testVertx line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addExtensionWithGroupIdAndArtifactId line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addExistingAndMissingExtensionsWillFailForBoth line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.testVertxWithDot line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addExtensionTwiceInOneBatch line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.doNotAddExtensionWhenMultipleMatchWithMultipleKeywords line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addMissingExtension line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addExtensionTwiceInTwoBatches line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addSomeValidExtensions line 19 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectPlatformMetadataTest.createGradleKotlin line 62 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectPlatformMetadataTest.create line 37 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectPlatformMetadataTest.createGradle line 52 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectTest.createOnTopOfExisting line 206 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectTest.createSpringWeb line 87 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectTest.createRESTEasyAndSpringWeb line 115 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectTest.createMultipleTimes line 233 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectTest.createGradle line 146 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectTest.createRESTEasy line 48 - Source on GitHub

io.quarkus.devtools.commands.ListExtensionsTest.listWithBomExtensionWithSpaces line 58 - Source on GitHub

io.quarkus.devtools.commands.ListExtensionsTest.searchRest line 154 - Source on GitHub

io.quarkus.devtools.commands.ListExtensionsTest.listWithoutBom line 73 - Source on GitHub

io.quarkus.devtools.commands.ListExtensionsTest.listWithBom line 40 - Source on GitHub

io.quarkus.devtools.commands.ListExtensionsTest.searchUnexpected line 135 - Source on GitHub

io.quarkus.devtools.commands.RemoveGradleExtensionsTest.testRegexpMatches line 18 - Source on GitHub

io.quarkus.devtools.commands.RemoveGradleExtensionsTest.testPartialMatches line 18 - Source on GitHub

io.quarkus.devtools.commands.RemoveGradleExtensionsTest.removeSomeValidExtensions line 18 - Source on GitHub

io.quarkus.devtools.commands.RemoveMavenExtensionsTest.testRegexpMatches line 19 - Source on GitHub

io.quarkus.devtools.commands.RemoveMavenExtensionsTest.testPartialMatches line 19 - Source on GitHub

io.quarkus.devtools.commands.RemoveMavenExtensionsTest.removeSomeValidExtensions line 19 - Source on GitHub

io.quarkus.devtools.project.compress.QuarkusProjectCompressTest.createZipWithParentFolder line 61 - Source on GitHub

io.quarkus.devtools.project.compress.QuarkusProjectCompressTest.createZip line 40 - Source on GitHub


⚙️ Gradle Tests - JDK 11 #

📦 integration-tests/gradle

io.quarkus.gradle.QuarkusPluginFunctionalTest.canDetectClasspathChangeWhenBuilding() line 101 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canDetectUpToDateBuild() line 61 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canDetectUpToDateTests() line 129 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canDetectSystemPropertyChangeWhenBuilding() line 142 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.Build JAVA project line 47 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.Build KOTLIN project line 47 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.Build SCALA project line 47 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canRunTest() line 157 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canDetectResourceChangeWhenBuilding() line 72 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canDetectClassChangeWhenBuilding() line 86 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canDetectOutputChangeWhenBuilding() line 113 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canGenerateConfig() line 36 - Source on GitHub


⚙️ Gradle Tests - JDK 11 Windows #

📦 integration-tests/gradle

io.quarkus.gradle.QuarkusPluginFunctionalTest.canDetectClasspathChangeWhenBuilding() line 101 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canDetectUpToDateBuild() line 61 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canDetectUpToDateTests() line 129 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canDetectSystemPropertyChangeWhenBuilding() line 142 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.Build JAVA project line 47 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.Build KOTLIN project line 47 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.Build SCALA project line 47 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canRunTest() line 157 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canDetectResourceChangeWhenBuilding() line 72 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canDetectClassChangeWhenBuilding() line 86 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canDetectOutputChangeWhenBuilding() line 113 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canGenerateConfig() line 36 - Source on GitHub


⚙️ JVM Tests - JDK 11 #

📦 independent-projects/tools/devtools-testing

io.quarkus.devtools.project.create.CreateMavenProjectImportingMultipleBomsFromSinglePlatformTest.testAddExtensionFromNonDefaultBom line 91 - Source on GitHub


⚙️ JVM Tests - JDK 11 Windows #

📦 independent-projects/tools/devtools-testing

io.quarkus.devtools.project.create.CreateMavenProjectImportingMultipleBomsFromSinglePlatformTest.testAddExtensionFromNonDefaultBom line 91 - Source on GitHub


⚙️ JVM Tests - JDK 16 #

📦 independent-projects/tools/devtools-testing

io.quarkus.devtools.project.create.CreateMavenProjectImportingMultipleBomsFromSinglePlatformTest.testAddExtensionFromNonDefaultBom line 91 - Source on GitHub


⚙️ Maven Tests - JDK 11 #

📦 integration-tests/maven

io.quarkus.maven.it.CreateProjectCodestartMojoIT.generateGradleProject(String, String)[1] line 62 - Source on GitHub

io.quarkus.maven.it.CreateProjectCodestartMojoIT.generateGradleProject(String, String)[2] line 62 - Source on GitHub

io.quarkus.maven.it.CreateProjectCodestartMojoIT.generateGradleProject(String, String)[3] line 62 - Source on GitHub

io.quarkus.maven.it.CreateProjectCodestartMojoIT.generateGradleProject(String, String)[4] line 62 - Source on GitHub

io.quarkus.maven.it.CreateProjectCodestartMojoIT.generateGradleProject(String, String)[5] line 62 - Source on GitHub

io.quarkus.maven.it.CreateProjectCodestartMojoIT.generateGradleProject(String, String)[6] line 62 - Source on GitHub

io.quarkus.maven.it.CreateProjectCodestartMojoIT.generateGradleKotlinProject(String, String)[1] line 71 - Source on GitHub

io.quarkus.maven.it.CreateProjectCodestartMojoIT.generateGradleKotlinProject(String, String)[2] line 71 - Source on GitHub

io.quarkus.maven.it.CreateProjectCodestartMojoIT.generateGradleKotlinProject(String, String)[3] line 71 - Source on GitHub

io.quarkus.maven.it.CreateProjectCodestartMojoIT.generateGradleKotlinProject(String, String)[4] line 71 - Source on GitHub

io.quarkus.maven.it.CreateProjectCodestartMojoIT.generateGradleKotlinProject(String, String)[5] line 71 - Source on GitHub

io.quarkus.maven.it.CreateProjectCodestartMojoIT.generateGradleKotlinProject(String, String)[6] line 71 - Source on GitHub

io.quarkus.maven.it.CreateProjectCodestartMojoIT.generateCustomRESTEasyJavaProject line 82 - Source on GitHub

io.quarkus.maven.it.CreateProjectCodestartMojoIT.generateMavenProject(String, String)[1] line 52 - Source on GitHub

io.quarkus.maven.it.CreateProjectCodestartMojoIT.generateMavenProject(String, String)[2] line 52 - Source on GitHub

io.quarkus.maven.it.CreateProjectCodestartMojoIT.generateMavenProject(String, String)[3] line 52 - Source on GitHub

io.quarkus.maven.it.CreateProjectCodestartMojoIT.generateMavenProject(String, String)[4] line 52 - Source on GitHub

io.quarkus.maven.it.CreateProjectCodestartMojoIT.generateMavenProject(String, String)[5] line 52 - Source on GitHub

io.quarkus.maven.it.CreateProjectCodestartMojoIT.generateMavenProject(String, String)[6] line 52 - Source on GitHub

io.quarkus.maven.it.CreateProjectMojoIT.testGradleProjectGenerationFromScratchWithExtensions line 305 - Source on GitHub

io.quarkus.maven.it.CreateProjectMojoIT.testProjectGenerationFromScratchWithExtensions line 262 - Source on GitHub

io.quarkus.maven.it.CreateProjectMojoIT.testProjectGenerationFromScratchWithResource line 205 - Source on GitHub

io.quarkus.maven.it.CreateProjectMojoIT.testProjectGenerationAsModuleWithExistingPomFileWithPackagingPom line 179 - Source on GitHub

io.quarkus.maven.it.CreateProjectMojoIT.testProjectGenerationFromScratchWithCustomDependencies line 339 - Source on GitHub

io.quarkus.maven.it.CreateProjectMojoIT.generateNewProjectAndRun line 444 - Source on GitHub

io.quarkus.maven.it.CreateProjectMojoIT.testProjectGenerationFromScratchWithAppConfigParameter line 381 - Source on GitHub

io.quarkus.maven.it.CreateProjectMojoIT.testProjectGenerationFromScratch line 69 - Source on GitHub

io.quarkus.maven.it.CreateProjectMojoIT.testThatDefaultPackageAreReplaced line 410 - Source on GitHub


⚙️ Maven Tests - JDK 11 Windows #

📦 integration-tests/maven

io.quarkus.maven.it.CreateProjectCodestartMojoIT.generateGradleProject(String, String)[1] line 62 - Source on GitHub

io.quarkus.maven.it.CreateProjectCodestartMojoIT.generateGradleProject(String, String)[2] line 62 - Source on GitHub

io.quarkus.maven.it.CreateProjectCodestartMojoIT.generateGradleProject(String, String)[3] line 62 - Source on GitHub

io.quarkus.maven.it.CreateProjectCodestartMojoIT.generateGradleProject(String, String)[4] line 62 - Source on GitHub

io.quarkus.maven.it.CreateProjectCodestartMojoIT.generateGradleProject(String, String)[5] line 62 - Source on GitHub

io.quarkus.maven.it.CreateProjectCodestartMojoIT.generateGradleProject(String, String)[6] line 62 - Source on GitHub

io.quarkus.maven.it.CreateProjectCodestartMojoIT.generateGradleKotlinProject(String, String)[1] line 71 - Source on GitHub

io.quarkus.maven.it.CreateProjectCodestartMojoIT.generateGradleKotlinProject(String, String)[2] line 71 - Source on GitHub

io.quarkus.maven.it.CreateProjectCodestartMojoIT.generateGradleKotlinProject(String, String)[3] line 71 - Source on GitHub

io.quarkus.maven.it.CreateProjectCodestartMojoIT.generateGradleKotlinProject(String, String)[4] line 71 - Source on GitHub

io.quarkus.maven.it.CreateProjectCodestartMojoIT.generateGradleKotlinProject(String, String)[5] line 71 - Source on GitHub

io.quarkus.maven.it.CreateProjectCodestartMojoIT.generateGradleKotlinProject(String, String)[6] line 71 - Source on GitHub

io.quarkus.maven.it.CreateProjectCodestartMojoIT.generateCustomRESTEasyJavaProject line 82 - Source on GitHub

io.quarkus.maven.it.CreateProjectCodestartMojoIT.generateMavenProject(String, String)[1] line 52 - Source on GitHub

io.quarkus.maven.it.CreateProjectCodestartMojoIT.generateMavenProject(String, String)[2] line 52 - Source on GitHub

io.quarkus.maven.it.CreateProjectCodestartMojoIT.generateMavenProject(String, String)[3] line 52 - Source on GitHub

io.quarkus.maven.it.CreateProjectCodestartMojoIT.generateMavenProject(String, String)[4] line 52 - Source on GitHub

io.quarkus.maven.it.CreateProjectCodestartMojoIT.generateMavenProject(String, String)[5] line 52 - Source on GitHub

io.quarkus.maven.it.CreateProjectCodestartMojoIT.generateMavenProject(String, String)[6] line 52 - Source on GitHub

io.quarkus.maven.it.CreateProjectMojoIT.testGradleProjectGenerationFromScratchWithExtensions line 305 - Source on GitHub

io.quarkus.maven.it.CreateProjectMojoIT.testProjectGenerationFromScratchWithExtensions line 262 - Source on GitHub

io.quarkus.maven.it.CreateProjectMojoIT.testProjectGenerationFromScratchWithResource line 205 - Source on GitHub

io.quarkus.maven.it.CreateProjectMojoIT.testProjectGenerationAsModuleWithExistingPomFileWithPackagingPom line 179 - Source on GitHub

io.quarkus.maven.it.CreateProjectMojoIT.testProjectGenerationFromScratchWithCustomDependencies line 339 - Source on GitHub

io.quarkus.maven.it.CreateProjectMojoIT.generateNewProjectAndRun line 444 - Source on GitHub

io.quarkus.maven.it.CreateProjectMojoIT.testProjectGenerationFromScratchWithAppConfigParameter line 381 - Source on GitHub

io.quarkus.maven.it.CreateProjectMojoIT.testProjectGenerationFromScratch line 69 - Source on GitHub

io.quarkus.maven.it.CreateProjectMojoIT.testThatDefaultPackageAreReplaced line 410 - Source on GitHub

@cristian-com cristian-com force-pushed the 12936-Add-the-option-to-define-parent-pom-in-the-maven-codestart branch 2 times, most recently from a6f6ba1 to a6b0b9b Compare July 14, 2021 10:09
@quarkus-bot
Copy link

quarkus-bot bot commented Jul 14, 2021

This workflow status is outdated as a new workflow run has been triggered.

Failing Jobs - Building a6b0b9b

Status Name Step Test failures Logs Raw logs
Devtools Tests - JDK 11 Build Test failures Logs Raw logs
Devtools Tests - JDK 11 Windows Build Test failures Logs Raw logs
Gradle Tests - JDK 11 Build Test failures Logs Raw logs
Gradle Tests - JDK 11 Windows Build Test failures Logs Raw logs
JVM Tests - JDK 11 Build Test failures Logs Raw logs
JVM Tests - JDK 11 Windows Build Test failures Logs Raw logs
JVM Tests - JDK 16 Build Test failures Logs Raw logs
Maven Tests - JDK 11 Build Test failures Logs Raw logs
Maven Tests - JDK 11 Windows Build Test failures Logs Raw logs

Test Failures

⚙️ Devtools Tests - JDK 11 #

📦 integration-tests/devtools

io.quarkus.devtools.commands.AddGradleExtensionsTest.testRegexpMatches line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.testPartialMatches line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addExtensionWithGAV line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.doesNotAddExtensionsWhenMultipleMatchWithOneKeyword line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addDuplicatedExtensionUsingGAV line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.testVertx line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addExtensionWithGroupIdAndArtifactId line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addExistingAndMissingExtensionsWillFailForBoth line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.testVertxWithDot line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addExtensionTwiceInOneBatch line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.doNotAddExtensionWhenMultipleMatchWithMultipleKeywords line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addMissingExtension line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addExtensionTwiceInTwoBatches line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addSomeValidExtensions line 24 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.testRegexpMatches line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.testPartialMatches line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addExtensionWithGAV line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.doesNotAddExtensionsWhenMultipleMatchWithOneKeyword line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addDuplicatedExtensionUsingGAV line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.testVertx line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addExtensionWithGroupIdAndArtifactId line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addExistingAndMissingExtensionsWillFailForBoth line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.testVertxWithDot line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addExtensionTwiceInOneBatch line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.doNotAddExtensionWhenMultipleMatchWithMultipleKeywords line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addMissingExtension line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addExtensionTwiceInTwoBatches line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addSomeValidExtensions line 19 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectPlatformMetadataTest.createGradleKotlin line 62 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectPlatformMetadataTest.create line 37 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectPlatformMetadataTest.createGradle line 52 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectTest.createOnTopOfExisting line 206 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectTest.createSpringWeb line 87 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectTest.createRESTEasyAndSpringWeb line 115 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectTest.createMultipleTimes line 233 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectTest.createGradle line 146 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectTest.createRESTEasy line 48 - Source on GitHub

io.quarkus.devtools.commands.ListExtensionsTest.listWithBomExtensionWithSpaces line 57 - Source on GitHub

io.quarkus.devtools.commands.ListExtensionsTest.searchRest line 152 - Source on GitHub

io.quarkus.devtools.commands.ListExtensionsTest.listWithoutBom line 72 - Source on GitHub

io.quarkus.devtools.commands.ListExtensionsTest.listWithBom line 40 - Source on GitHub

io.quarkus.devtools.commands.ListExtensionsTest.searchUnexpected line 134 - Source on GitHub

io.quarkus.devtools.commands.RemoveGradleExtensionsTest.testRegexpMatches line 18 - Source on GitHub

io.quarkus.devtools.commands.RemoveGradleExtensionsTest.testPartialMatches line 18 - Source on GitHub

io.quarkus.devtools.commands.RemoveGradleExtensionsTest.removeSomeValidExtensions line 18 - Source on GitHub

io.quarkus.devtools.commands.RemoveMavenExtensionsTest.testRegexpMatches line 19 - Source on GitHub

io.quarkus.devtools.commands.RemoveMavenExtensionsTest.testPartialMatches line 19 - Source on GitHub

io.quarkus.devtools.commands.RemoveMavenExtensionsTest.removeSomeValidExtensions line 19 - Source on GitHub

io.quarkus.devtools.project.compress.QuarkusProjectCompressTest.createZipWithParentFolder line 61 - Source on GitHub

io.quarkus.devtools.project.compress.QuarkusProjectCompressTest.createZip line 40 - Source on GitHub


⚙️ Devtools Tests - JDK 11 Windows #

📦 integration-tests/devtools

io.quarkus.devtools.commands.AddGradleExtensionsTest.testRegexpMatches line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.testPartialMatches line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addExtensionWithGAV line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.doesNotAddExtensionsWhenMultipleMatchWithOneKeyword line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addDuplicatedExtensionUsingGAV line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.testVertx line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addExtensionWithGroupIdAndArtifactId line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addExistingAndMissingExtensionsWillFailForBoth line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.testVertxWithDot line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addExtensionTwiceInOneBatch line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.doNotAddExtensionWhenMultipleMatchWithMultipleKeywords line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addMissingExtension line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addExtensionTwiceInTwoBatches line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addSomeValidExtensions line 24 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.testRegexpMatches line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.testPartialMatches line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addExtensionWithGAV line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.doesNotAddExtensionsWhenMultipleMatchWithOneKeyword line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addDuplicatedExtensionUsingGAV line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.testVertx line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addExtensionWithGroupIdAndArtifactId line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addExistingAndMissingExtensionsWillFailForBoth line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.testVertxWithDot line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addExtensionTwiceInOneBatch line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.doNotAddExtensionWhenMultipleMatchWithMultipleKeywords line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addMissingExtension line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addExtensionTwiceInTwoBatches line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addSomeValidExtensions line 19 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectPlatformMetadataTest.createGradleKotlin line 62 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectPlatformMetadataTest.create line 37 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectPlatformMetadataTest.createGradle line 52 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectTest.createOnTopOfExisting line 206 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectTest.createSpringWeb line 87 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectTest.createRESTEasyAndSpringWeb line 115 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectTest.createMultipleTimes line 233 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectTest.createGradle line 146 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectTest.createRESTEasy line 48 - Source on GitHub

io.quarkus.devtools.commands.ListExtensionsTest.listWithBomExtensionWithSpaces line 57 - Source on GitHub

io.quarkus.devtools.commands.ListExtensionsTest.searchRest line 152 - Source on GitHub

io.quarkus.devtools.commands.ListExtensionsTest.listWithoutBom line 72 - Source on GitHub

io.quarkus.devtools.commands.ListExtensionsTest.listWithBom line 40 - Source on GitHub

io.quarkus.devtools.commands.ListExtensionsTest.searchUnexpected line 134 - Source on GitHub

io.quarkus.devtools.commands.RemoveGradleExtensionsTest.testRegexpMatches line 18 - Source on GitHub

io.quarkus.devtools.commands.RemoveGradleExtensionsTest.testPartialMatches line 18 - Source on GitHub

io.quarkus.devtools.commands.RemoveGradleExtensionsTest.removeSomeValidExtensions line 18 - Source on GitHub

io.quarkus.devtools.commands.RemoveMavenExtensionsTest.testRegexpMatches line 19 - Source on GitHub

io.quarkus.devtools.commands.RemoveMavenExtensionsTest.testPartialMatches line 19 - Source on GitHub

io.quarkus.devtools.commands.RemoveMavenExtensionsTest.removeSomeValidExtensions line 19 - Source on GitHub

io.quarkus.devtools.project.compress.QuarkusProjectCompressTest.createZipWithParentFolder line 61 - Source on GitHub

io.quarkus.devtools.project.compress.QuarkusProjectCompressTest.createZip line 40 - Source on GitHub


⚙️ Gradle Tests - JDK 11 #

📦 integration-tests/gradle

io.quarkus.gradle.QuarkusPluginFunctionalTest.canDetectClasspathChangeWhenBuilding() line 101 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canDetectUpToDateBuild() line 61 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canDetectUpToDateTests() line 129 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canDetectSystemPropertyChangeWhenBuilding() line 142 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.Build JAVA project line 47 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.Build KOTLIN project line 47 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.Build SCALA project line 47 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canRunTest() line 157 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canDetectResourceChangeWhenBuilding() line 72 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canDetectClassChangeWhenBuilding() line 86 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canDetectOutputChangeWhenBuilding() line 113 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canGenerateConfig() line 36 - Source on GitHub


⚙️ Gradle Tests - JDK 11 Windows #

📦 integration-tests/gradle

io.quarkus.gradle.QuarkusPluginFunctionalTest.canDetectClasspathChangeWhenBuilding() line 101 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canDetectUpToDateBuild() line 61 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canDetectUpToDateTests() line 129 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canDetectSystemPropertyChangeWhenBuilding() line 142 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.Build JAVA project line 47 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.Build KOTLIN project line 47 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.Build SCALA project line 47 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canRunTest() line 157 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canDetectResourceChangeWhenBuilding() line 72 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canDetectClassChangeWhenBuilding() line 86 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canDetectOutputChangeWhenBuilding() line 113 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canGenerateConfig() line 36 - Source on GitHub


⚙️ JVM Tests - JDK 11 #

📦 independent-projects/tools/devtools-testing

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromMultiplePlatformsTest.addExtensionsFromAlreadyImportedPlatform line 59 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.createWithExtensionsPresentInTheLatestReleaseOfAnOldStream line 124 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.createWithExtensionsPresentInTheLatestReleaseOfTheLatestStream line 114 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.attemptAddingExtensionFromIncompatibleMemberBom line 166 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.createWithNonPlatformExtensionCompatibleWithTheOldestQuarkusVersion line 81 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.createWithExtensionPresentInTheOldReleaseOfAnOldStream line 134 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.attemptCreateWithIncompatibleExtensions line 160 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.createWithNonPlatformExtensionCompatibleWithQuarkusVersion112 line 103 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.addExtensionAndImportMemberBom line 145 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.createWithNonPlatformExtensionCompatibleWithTheLatestQuarkusVersion line 92 - Source on GitHub

io.quarkus.devtools.project.create.QuarkusPlatformReferencingUpstreamVersionTest.addExtensionsFromAlreadyImportedPlatform line 66 - Source on GitHub


⚙️ JVM Tests - JDK 11 Windows #

📦 independent-projects/tools/devtools-testing

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromMultiplePlatformsTest.addExtensionsFromAlreadyImportedPlatform line 59 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.createWithExtensionsPresentInTheLatestReleaseOfAnOldStream line 124 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.createWithExtensionsPresentInTheLatestReleaseOfTheLatestStream line 114 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.attemptAddingExtensionFromIncompatibleMemberBom line 166 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.createWithNonPlatformExtensionCompatibleWithTheOldestQuarkusVersion line 81 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.createWithExtensionPresentInTheOldReleaseOfAnOldStream line 134 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.attemptCreateWithIncompatibleExtensions line 160 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.createWithNonPlatformExtensionCompatibleWithQuarkusVersion112 line 103 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.addExtensionAndImportMemberBom line 145 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.createWithNonPlatformExtensionCompatibleWithTheLatestQuarkusVersion line 92 - Source on GitHub

io.quarkus.devtools.project.create.QuarkusPlatformReferencingUpstreamVersionTest.addExtensionsFromAlreadyImportedPlatform line 66 - Source on GitHub


⚙️ JVM Tests - JDK 16 #

📦 independent-projects/tools/devtools-testing

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromMultiplePlatformsTest.addExtensionsFromAlreadyImportedPlatform line 59 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.createWithExtensionsPresentInTheLatestReleaseOfAnOldStream line 124 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.createWithExtensionsPresentInTheLatestReleaseOfTheLatestStream line 114 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.attemptAddingExtensionFromIncompatibleMemberBom line 166 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.createWithNonPlatformExtensionCompatibleWithTheOldestQuarkusVersion line 81 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.createWithExtensionPresentInTheOldReleaseOfAnOldStream line 134 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.attemptCreateWithIncompatibleExtensions line 160 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.createWithNonPlatformExtensionCompatibleWithQuarkusVersion112 line 103 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.addExtensionAndImportMemberBom line 145 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.createWithNonPlatformExtensionCompatibleWithTheLatestQuarkusVersion line 92 - Source on GitHub

io.quarkus.devtools.project.create.QuarkusPlatformReferencingUpstreamVersionTest.addExtensionsFromAlreadyImportedPlatform line 66 - Source on GitHub


⚙️ Maven Tests - JDK 11 #

📦 integration-tests/maven

io.quarkus.maven.it.CreateProjectMojoIT.testProjectGenerationAsModuleWithExistingPomFileWithPackagingPom line 182 - Source on GitHub


⚙️ Maven Tests - JDK 11 Windows #

📦 integration-tests/maven

io.quarkus.maven.it.CreateProjectMojoIT.testProjectGenerationAsModuleWithExistingPomFileWithPackagingPom line 182 - Source on GitHub

@cristian-com cristian-com force-pushed the 12936-Add-the-option-to-define-parent-pom-in-the-maven-codestart branch from a6b0b9b to bf20b04 Compare July 14, 2021 19:11
@quarkus-bot
Copy link

quarkus-bot bot commented Jul 14, 2021

Failing Jobs - Building bf20b04

Status Name Step Test failures Logs Raw logs
Devtools Tests - JDK 11 Build Test failures Logs Raw logs
Devtools Tests - JDK 11 Windows Build Test failures Logs Raw logs
Gradle Tests - JDK 11 Build Test failures Logs Raw logs
Gradle Tests - JDK 11 Windows Build Test failures Logs Raw logs
JVM Tests - JDK 11 Build Test failures Logs Raw logs
JVM Tests - JDK 11 Windows Build Test failures Logs Raw logs
JVM Tests - JDK 16 Build Test failures Logs Raw logs
MicroProfile TCKs Tests Verify ⚠️ Check → Logs Raw logs

Test Failures

⚙️ Devtools Tests - JDK 11 #

📦 integration-tests/devtools

io.quarkus.devtools.commands.AddGradleExtensionsTest.testRegexpMatches line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.testPartialMatches line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addExtensionWithGAV line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.doesNotAddExtensionsWhenMultipleMatchWithOneKeyword line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addDuplicatedExtensionUsingGAV line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.testVertx line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addExtensionWithGroupIdAndArtifactId line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addExistingAndMissingExtensionsWillFailForBoth line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.testVertxWithDot line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addExtensionTwiceInOneBatch line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.doNotAddExtensionWhenMultipleMatchWithMultipleKeywords line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addMissingExtension line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addExtensionTwiceInTwoBatches line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addSomeValidExtensions line 24 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.testRegexpMatches line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.testPartialMatches line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addExtensionWithGAV line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.doesNotAddExtensionsWhenMultipleMatchWithOneKeyword line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addDuplicatedExtensionUsingGAV line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.testVertx line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addExtensionWithGroupIdAndArtifactId line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addExistingAndMissingExtensionsWillFailForBoth line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.testVertxWithDot line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addExtensionTwiceInOneBatch line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.doNotAddExtensionWhenMultipleMatchWithMultipleKeywords line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addMissingExtension line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addExtensionTwiceInTwoBatches line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addSomeValidExtensions line 19 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectPlatformMetadataTest.createGradleKotlin line 62 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectPlatformMetadataTest.create line 37 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectPlatformMetadataTest.createGradle line 52 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectTest.createOnTopOfExisting line 206 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectTest.createSpringWeb line 87 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectTest.createRESTEasyAndSpringWeb line 115 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectTest.createMultipleTimes line 233 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectTest.createGradle line 146 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectTest.createRESTEasy line 48 - Source on GitHub

io.quarkus.devtools.commands.ListExtensionsTest.listWithBomExtensionWithSpaces line 57 - Source on GitHub

io.quarkus.devtools.commands.ListExtensionsTest.searchRest line 152 - Source on GitHub

io.quarkus.devtools.commands.ListExtensionsTest.listWithoutBom line 72 - Source on GitHub

io.quarkus.devtools.commands.ListExtensionsTest.listWithBom line 40 - Source on GitHub

io.quarkus.devtools.commands.ListExtensionsTest.searchUnexpected line 134 - Source on GitHub

io.quarkus.devtools.commands.RemoveGradleExtensionsTest.testRegexpMatches line 18 - Source on GitHub

io.quarkus.devtools.commands.RemoveGradleExtensionsTest.testPartialMatches line 18 - Source on GitHub

io.quarkus.devtools.commands.RemoveGradleExtensionsTest.removeSomeValidExtensions line 18 - Source on GitHub

io.quarkus.devtools.commands.RemoveMavenExtensionsTest.testRegexpMatches line 19 - Source on GitHub

io.quarkus.devtools.commands.RemoveMavenExtensionsTest.testPartialMatches line 19 - Source on GitHub

io.quarkus.devtools.commands.RemoveMavenExtensionsTest.removeSomeValidExtensions line 19 - Source on GitHub

io.quarkus.devtools.project.compress.QuarkusProjectCompressTest.createZipWithParentFolder line 61 - Source on GitHub

io.quarkus.devtools.project.compress.QuarkusProjectCompressTest.createZip line 40 - Source on GitHub


⚙️ Devtools Tests - JDK 11 Windows #

📦 integration-tests/devtools

io.quarkus.devtools.commands.AddGradleExtensionsTest.testRegexpMatches line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.testPartialMatches line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addExtensionWithGAV line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.doesNotAddExtensionsWhenMultipleMatchWithOneKeyword line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addDuplicatedExtensionUsingGAV line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.testVertx line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addExtensionWithGroupIdAndArtifactId line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addExistingAndMissingExtensionsWillFailForBoth line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.testVertxWithDot line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addExtensionTwiceInOneBatch line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.doNotAddExtensionWhenMultipleMatchWithMultipleKeywords line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addMissingExtension line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addExtensionTwiceInTwoBatches line 24 - Source on GitHub

io.quarkus.devtools.commands.AddGradleExtensionsTest.addSomeValidExtensions line 24 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.testRegexpMatches line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.testPartialMatches line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addExtensionWithGAV line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.doesNotAddExtensionsWhenMultipleMatchWithOneKeyword line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addDuplicatedExtensionUsingGAV line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.testVertx line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addExtensionWithGroupIdAndArtifactId line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addExistingAndMissingExtensionsWillFailForBoth line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.testVertxWithDot line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addExtensionTwiceInOneBatch line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.doNotAddExtensionWhenMultipleMatchWithMultipleKeywords line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addMissingExtension line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addExtensionTwiceInTwoBatches line 19 - Source on GitHub

io.quarkus.devtools.commands.AddMavenExtensionsTest.addSomeValidExtensions line 19 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectPlatformMetadataTest.createGradleKotlin line 62 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectPlatformMetadataTest.create line 37 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectPlatformMetadataTest.createGradle line 52 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectTest.createOnTopOfExisting line 206 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectTest.createSpringWeb line 87 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectTest.createRESTEasyAndSpringWeb line 115 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectTest.createMultipleTimes line 233 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectTest.createGradle line 146 - Source on GitHub

io.quarkus.devtools.commands.CreateProjectTest.createRESTEasy line 48 - Source on GitHub

io.quarkus.devtools.commands.ListExtensionsTest.listWithBomExtensionWithSpaces line 57 - Source on GitHub

io.quarkus.devtools.commands.ListExtensionsTest.searchRest line 152 - Source on GitHub

io.quarkus.devtools.commands.ListExtensionsTest.listWithoutBom line 72 - Source on GitHub

io.quarkus.devtools.commands.ListExtensionsTest.listWithBom line 40 - Source on GitHub

io.quarkus.devtools.commands.ListExtensionsTest.searchUnexpected line 134 - Source on GitHub

io.quarkus.devtools.commands.RemoveGradleExtensionsTest.testRegexpMatches line 18 - Source on GitHub

io.quarkus.devtools.commands.RemoveGradleExtensionsTest.testPartialMatches line 18 - Source on GitHub

io.quarkus.devtools.commands.RemoveGradleExtensionsTest.removeSomeValidExtensions line 18 - Source on GitHub

io.quarkus.devtools.commands.RemoveMavenExtensionsTest.testRegexpMatches line 19 - Source on GitHub

io.quarkus.devtools.commands.RemoveMavenExtensionsTest.testPartialMatches line 19 - Source on GitHub

io.quarkus.devtools.commands.RemoveMavenExtensionsTest.removeSomeValidExtensions line 19 - Source on GitHub

io.quarkus.devtools.project.compress.QuarkusProjectCompressTest.createZipWithParentFolder line 61 - Source on GitHub

io.quarkus.devtools.project.compress.QuarkusProjectCompressTest.createZip line 40 - Source on GitHub


⚙️ Gradle Tests - JDK 11 #

📦 integration-tests/gradle

io.quarkus.gradle.QuarkusPluginFunctionalTest.canDetectClasspathChangeWhenBuilding() line 101 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canDetectUpToDateBuild() line 61 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canDetectUpToDateTests() line 129 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canDetectSystemPropertyChangeWhenBuilding() line 142 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.Build JAVA project line 47 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.Build KOTLIN project line 47 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.Build SCALA project line 47 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canRunTest() line 157 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canDetectResourceChangeWhenBuilding() line 72 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canDetectClassChangeWhenBuilding() line 86 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canDetectOutputChangeWhenBuilding() line 113 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canGenerateConfig() line 36 - Source on GitHub


⚙️ Gradle Tests - JDK 11 Windows #

📦 integration-tests/gradle

io.quarkus.gradle.QuarkusPluginFunctionalTest.canDetectClasspathChangeWhenBuilding() line 101 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canDetectUpToDateBuild() line 61 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canDetectUpToDateTests() line 129 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canDetectSystemPropertyChangeWhenBuilding() line 142 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.Build JAVA project line 47 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.Build KOTLIN project line 47 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.Build SCALA project line 47 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canRunTest() line 157 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canDetectResourceChangeWhenBuilding() line 72 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canDetectClassChangeWhenBuilding() line 86 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canDetectOutputChangeWhenBuilding() line 113 - Source on GitHub

io.quarkus.gradle.QuarkusPluginFunctionalTest.canGenerateConfig() line 36 - Source on GitHub


⚙️ JVM Tests - JDK 11 #

📦 independent-projects/tools/devtools-testing

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromMultiplePlatformsTest.addExtensionsFromAlreadyImportedPlatform line 59 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.createWithExtensionsPresentInTheLatestReleaseOfAnOldStream line 124 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.createWithExtensionsPresentInTheLatestReleaseOfTheLatestStream line 114 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.attemptAddingExtensionFromIncompatibleMemberBom line 166 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.createWithNonPlatformExtensionCompatibleWithTheOldestQuarkusVersion line 81 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.createWithExtensionPresentInTheOldReleaseOfAnOldStream line 134 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.attemptCreateWithIncompatibleExtensions line 160 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.createWithNonPlatformExtensionCompatibleWithQuarkusVersion112 line 103 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.addExtensionAndImportMemberBom line 145 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.createWithNonPlatformExtensionCompatibleWithTheLatestQuarkusVersion line 92 - Source on GitHub

io.quarkus.devtools.project.create.QuarkusPlatformReferencingUpstreamVersionTest.addExtensionsFromAlreadyImportedPlatform line 66 - Source on GitHub


⚙️ JVM Tests - JDK 11 Windows #

📦 independent-projects/tools/devtools-testing

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromMultiplePlatformsTest.addExtensionsFromAlreadyImportedPlatform line 59 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.createWithExtensionsPresentInTheLatestReleaseOfAnOldStream line 124 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.createWithExtensionsPresentInTheLatestReleaseOfTheLatestStream line 114 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.attemptAddingExtensionFromIncompatibleMemberBom line 166 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.createWithNonPlatformExtensionCompatibleWithTheOldestQuarkusVersion line 81 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.createWithExtensionPresentInTheOldReleaseOfAnOldStream line 134 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.attemptCreateWithIncompatibleExtensions line 160 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.createWithNonPlatformExtensionCompatibleWithQuarkusVersion112 line 103 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.addExtensionAndImportMemberBom line 145 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.createWithNonPlatformExtensionCompatibleWithTheLatestQuarkusVersion line 92 - Source on GitHub

io.quarkus.devtools.project.create.QuarkusPlatformReferencingUpstreamVersionTest.addExtensionsFromAlreadyImportedPlatform line 66 - Source on GitHub


⚙️ JVM Tests - JDK 16 #

📦 independent-projects/tools/devtools-testing

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromMultiplePlatformsTest.addExtensionsFromAlreadyImportedPlatform line 59 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.createWithExtensionsPresentInTheLatestReleaseOfAnOldStream line 124 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.createWithExtensionsPresentInTheLatestReleaseOfTheLatestStream line 114 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.attemptAddingExtensionFromIncompatibleMemberBom line 166 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.createWithNonPlatformExtensionCompatibleWithTheOldestQuarkusVersion line 81 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.createWithExtensionPresentInTheOldReleaseOfAnOldStream line 134 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.attemptCreateWithIncompatibleExtensions line 160 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.createWithNonPlatformExtensionCompatibleWithQuarkusVersion112 line 103 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.addExtensionAndImportMemberBom line 145 - Source on GitHub

io.quarkus.devtools.project.create.MavenProjectImportingMultipleBomsFromSinglePlatformTest.createWithNonPlatformExtensionCompatibleWithTheLatestQuarkusVersion line 92 - Source on GitHub

io.quarkus.devtools.project.create.QuarkusPlatformReferencingUpstreamVersionTest.addExtensionsFromAlreadyImportedPlatform line 66 - Source on GitHub

@quarkus-bot quarkus-bot bot added the triage/invalid This doesn't seem right label Aug 13, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/cli Related to quarkus cli (not maven/gradle/etc.) area/devtools Issues/PR related to maven, gradle, platform and cli tooling/plugins area/maven area/platform Issues related to definition and interaction with Quarkus Platform triage/invalid This doesn't seem right
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add the option to define parent pom in the maven codestart
4 participants