Skip to content

Commit

Permalink
adding correct configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
cdsap committed Jul 29, 2024
1 parent 0d846f3 commit 611dbbd
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ private static void configureApplicationModelTask(Project project, QuarkusApplic
task.getProjectDescriptor().set(projectDescriptor);
task.getLaunchMode().set(launchMode);
task.getOriginalClasspath().setFrom(classpath.getOriginalRuntimeClasspathAsInput());
task.getAppClasspath().configureFrom(classpath.getRawRuntimeConfiguration());
task.getAppClasspath().configureFrom(classpath.getRuntimeConfiguration());
task.getPlatformConfiguration().configureFrom(classpath.getPlatformConfiguration());
task.getDeploymentClasspath().configureFrom(classpath.getDeploymentConfiguration());
task.getPlatformImportProperties().set(classpath.getPlatformImports().getPlatformProperties());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ public void publishTestExtensions() throws IOException, InterruptedException, UR

@Test
@Order(2)
@Disabled
public void shouldImportConditionalDependency() throws IOException, URISyntaxException, InterruptedException {

// A -> B?(C) -> E?(C)
Expand Down Expand Up @@ -128,7 +127,6 @@ public void shouldNotFailIfConditionalDependencyIsExplicitlyDeclared()

@Test
@Order(5)
@Disabled
public void scenarioTwo() throws Exception {

// F -> G -> H?(I,J) -> K -> T
Expand Down

0 comments on commit 611dbbd

Please sign in to comment.