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

Quarkus build does not work since 3.2.0 with teamcity/plexus launcher #34875

Closed
robp94 opened this issue Jul 20, 2023 · 16 comments · Fixed by #35203
Closed

Quarkus build does not work since 3.2.0 with teamcity/plexus launcher #34875

robp94 opened this issue Jul 20, 2023 · 16 comments · Fixed by #35203
Labels
area/devtools Issues/PR related to maven, gradle, platform and cli tooling/plugins kind/bug Something isn't working
Milestone

Comments

@robp94
Copy link
Contributor

robp94 commented Jul 20, 2023

Describe the bug

We have some custom extensions which use dependencies from a private repository. Since quarkus 3.2.0 the build fails while generating the test code. Up to 3.1.3 it worked fine.

  [INFO] --- quarkus:3.2.1.Final:generate-code-tests (default) @ database-extension-base ---
  [INFO] Artifact de.mobilexag.serviceplatform:service-parent-kotlin:pom:1.8.1 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [central (https://repo.maven.apache.org/maven2, default, releases)]
  Downloading from central: https://repo.maven.apache.org/maven2/de/mobilexag/serviceplatform/service-parent-kotlin/1.8.1/service-parent-kotlin-1.8.1.pom
  [INFO] No previous run data found, generating javadoc.
  Failed to execute goal io.quarkus:quarkus-maven-plugin:3.2.1.Final:generate-code-tests (default) on project database-extension-base: Quarkus code generation phase has failed

I first thought this might be the problem, but it fails still with 3.2.1 #34448

We encountered the problem on our build system teamcity. It starts maven builds via the plexus launcher. https://codehaus-plexus.github.io/plexus-classworlds/launcher.html
The quarkus maven plugin seems to ignore the settings file set via plexus. The call looks something like this:

java -Dmaven.repo.local=local-repo \
-Dclassworlds.conf=teamcity.m2.conf \
-Dmaven.multiModuleProjectDirectory=../code-with-quarkus \
 --add-opens \
 java.base/java.lang=ALL-UNNAMED \
 -classpath \
 "$MAVEN_HOME/boot/*:" \
 org.codehaus.plexus.classworlds.launcher.Launcher \
 -f \
 pom.xml \
 -B \
 -s \
 custom-settings.xml \
 -fae \
 -Plicense \
 -X \
 clean \
 package

The settings file is set via -s command on maven start.

In the reproducer, there are some scripts to start the build.

Expected behavior

Build should work.

Actual behavior

Build fails.

How to Reproduce?

https://github.com/robp94/quarkus-3.2.x-maven-problem

Output of uname -a or ver

ubuntu

Output of java -version

17

GraalVM version (if different from Java)

No response

Quarkus version or git rev

3.2.2

Build tool (ie. output of mvnw --version or gradlew --version)

maven 3.9.3

Additional information

No response

@robp94 robp94 added the kind/bug Something isn't working label Jul 20, 2023
@quarkus-bot
Copy link

quarkus-bot bot commented Jul 20, 2023

/cc @evanchooly (kotlin), @geoand (kotlin)

@robp94
Copy link
Contributor Author

robp94 commented Jul 20, 2023

This should not be a Kotlin issue but a maven plugin issue.

@geoand geoand added area/devtools Issues/PR related to maven, gradle, platform and cli tooling/plugins and removed area/kotlin labels Jul 20, 2023
@gsmet
Copy link
Member

gsmet commented Jul 20, 2023

Could you give us a bit more details about your setup and typically how your private repository is configured?

/cc @aloubyansky

@johgoe
Copy link

johgoe commented Jul 20, 2023

Our internal repository is a setup with a Nexus3 Maven Repository.

We have a proxy repo for maven central as cache, a hosted repo for the project and a group repo maven-public which combines the hosted repo and the proxy repo for maven central.

The maven settings.xml looks like this:

  <mirrors>
	 <mirror>
		<id>internal-repository</id>
		<name>maven-public</name>
		<url>https://packages.company.local/repository/maven-public/</url>
		<mirrorOf>external:*,!project-repository</mirrorOf>
	</mirror>
  </mirrors>

to mirror everything to the group repo but not the project repository

and the definition of the project repository

</repositories>
      <repository>
	<id>project-repository</id>
	<name>Project Repository</name>
	<url>https://packages.company.local/repository/projectname-mvn/</url>
	<layout>default</layout>
	<releases>
		<enabled>true</enabled>
		<updatePolicy>always</updatePolicy>
		<checksumPolicy>warn</checksumPolicy>
	</releases>
	<snapshots>
		<enabled>true</enabled>
		<updatePolicy>always</updatePolicy>
		<checksumPolicy>fail</checksumPolicy>
	</snapshots>
    </repository>
</repositories>

@robp94 I added it for you

@aloubyansky
Copy link
Member

Thanks for reporting the issue. In case you could provide a reproducer similar to https://github.com/agseijas/maven-security-quarkus/blob/master/README.md (that one was already fixed), it would help a lot.

@geoand geoand added the triage/needs-feedback We are waiting for feedback. label Jul 21, 2023
@robp94 robp94 changed the title Quarkus build does not work since 3.2.0 Quarkus build does not work since 3.2.0 with teamcity/plexus launcher Aug 3, 2023
@robp94
Copy link
Contributor Author

robp94 commented Aug 3, 2023

@aloubyansky this took quite a while to figure out, but I updated the first post and added a reproducer. Could you take a look? Please tell if something is not clear.

@geoand geoand removed the triage/needs-feedback We are waiting for feedback. label Aug 3, 2023
@aloubyansky
Copy link
Member

Thanks a lot @robp94 I'll look into it.

@aloubyansky
Copy link
Member

As a quick workaround you could pass maven.settings system property like

diff --git a/code-with-quarkus/maven-settings.sh b/code-with-quarkus/maven-settings.sh
old mode 100644
new mode 100755
diff --git a/code-with-quarkus/pom.xml b/code-with-quarkus/pom.xml
index b1506b3..5161ff0 100644
--- a/code-with-quarkus/pom.xml
+++ b/code-with-quarkus/pom.xml
@@ -87,6 +87,7 @@
           <systemPropertyVariables>
             <java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
             <maven.home>${maven.home}</maven.home>
+            <maven.settings>${maven.settings}</maven.settings>
           </systemPropertyVariables>
         </configuration>
       </plugin>
@@ -104,6 +105,7 @@
                 <native.image.path>${project.build.directory}/${project.build.finalName}-runner</native.image.path>
                 <java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
                 <maven.home>${maven.home}</maven.home>
+                <maven.settings>${maven.settings}</maven.settings>
               </systemPropertyVariables>
             </configuration>
           </execution>

diff --git a/code-with-quarkus/teamcity.sh b/code-with-quarkus/teamcity.sh
old mode 100644
new mode 100755
index 2801ffd..e111605
--- a/code-with-quarkus/teamcity.sh
+++ b/code-with-quarkus/teamcity.sh
@@ -1,5 +1,6 @@
 mkdir -p local-repo
 java -Dmaven.repo.local=local-repo \
+-Dmaven.settings=custom-settings.xml \
 -Dclassworlds.conf=teamcity.m2.conf \
 -Dmaven.multiModuleProjectDirectory=../code-with-quarkus \
  --add-opens \

@aloubyansky
Copy link
Member

I have a fix for 3.2 but the test plugin configs will need to be adjusted a bit for it to work and that's true for both 2.16 and 3.2:

diff --git a/code-with-quarkus/pom.xml b/code-with-quarkus/pom.xml
index b1506b3..6c497c5 100644
--- a/code-with-quarkus/pom.xml
+++ b/code-with-quarkus/pom.xml
@@ -87,6 +87,7 @@
           <systemPropertyVariables>
             <java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
             <maven.home>${maven.home}</maven.home>
+            <maven.settings>${session.request.userSettingsFile.absolutePath}</maven.settings>
           </systemPropertyVariables>
         </configuration>
       </plugin>
@@ -104,6 +105,7 @@
                 <native.image.path>${project.build.directory}/${project.build.finalName}-runner</native.image.path>
                 <java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
                 <maven.home>${maven.home}</maven.home>
+                <maven.settings>${session.request.userSettingsFile.absolutePath}</maven.settings>
               </systemPropertyVariables>
             </configuration>

@aloubyansky
Copy link
Member

I'll probably adjust the project generator to add the maven.setting property to the test plugins as well.

@robp94
Copy link
Contributor Author

robp94 commented Aug 4, 2023

Ok, while the workaround worked for me localy, I was not able to get it to work with teamcity.

We currently use this as a config for the test plugins:
<maven.settings>${session.request.userSettingsFile.path}</maven.settings>

@aloubyansky
Copy link
Member

3.2 still requires a patch, I'll open a pr later today.
It fails before the test plugins currently.
Unless you are using source code generating plugins (grpc, avro, etc) you could also remove the generate-code goals, that's where it fails currently.

@robp94
Copy link
Contributor Author

robp94 commented Aug 4, 2023

Thanks. I will take a look later today or on Monday again.

@aloubyansky
Copy link
Member

I opened a PR to fix the generate-code goals, however I still haven't added the test plugin config adjustment in the project generator. I'm wondering whether we should document it or simply always pass it on to the test plugins in case the process isn't not launched using the mvn scripts.

@aloubyansky
Copy link
Member

About the maven.settings property, I added a note in the docs in #35211 for now

@robp94
Copy link
Contributor Author

robp94 commented Aug 4, 2023

Looks good, teamcity can build again. Thanks for the quick fix :)

@quarkus-bot quarkus-bot bot added this to the 3.4 - main milestone Aug 10, 2023
@gsmet gsmet modified the milestones: 3.4 - main, 3.2.4.Final Aug 10, 2023
benkard pushed a commit to benkard/mulkcms2 that referenced this issue Aug 29, 2023
This MR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [flow-bin](https://github.com/flowtype/flow-bin) ([changelog](https://github.com/facebook/flow/blob/master/Changelog.md)) | devDependencies | minor | [`^0.214.0` -> `^0.215.0`](https://renovatebot.com/diffs/npm/flow-bin/0.214.0/0.215.1) |
| [org.liquibase:liquibase-maven-plugin](http://www.liquibase.org/liquibase-maven-plugin) ([source](https://github.com/liquibase/liquibase)) | build | patch | `4.23.0` -> `4.23.1` |
| [io.quarkus:quarkus-maven-plugin](https://github.com/quarkusio/quarkus) | build | minor | `3.2.3.Final` -> `3.3.0` |
| [io.quarkus:quarkus-universe-bom](https://github.com/quarkusio/quarkus-platform) | import | minor | `3.2.3.Final` -> `3.3.0` |
| [org.apache.maven.plugins:maven-enforcer-plugin](https://maven.apache.org/enforcer/) | build | minor | `3.3.0` -> `3.4.0` |

---

### Release Notes

<details>
<summary>flowtype/flow-bin</summary>

### [`v0.215.1`](flow/flow-bin@a92ce80...cbb038f)

[Compare Source](flow/flow-bin@a92ce80...cbb038f)

### [`v0.215.0`](flow/flow-bin@ca11e28...a92ce80)

[Compare Source](flow/flow-bin@ca11e28...a92ce80)

</details>

<details>
<summary>liquibase/liquibase</summary>

### [`v4.23.1`](https://github.com/liquibase/liquibase/blob/HEAD/changelog.txt#Liquibase-4231-is-a-patch-release)

[Compare Source](liquibase/liquibase@v4.23.0...v4.23.1)

</details>

<details>
<summary>quarkusio/quarkus</summary>

### [`v3.3.0`](https://github.com/quarkusio/quarkus/releases/tag/3.3.0)

[Compare Source](quarkusio/quarkus@3.2.4.Final...3.3.0)

##### Complete changelog

-   [#&#8203;35350](quarkusio/quarkus#35350) - Fix package type system property clearing
-   [#&#8203;35348](quarkusio/quarkus#35348) - quarkus-maven-plugin runs native building even if the profile is commented out
-   [#&#8203;35343](quarkusio/quarkus#35343) - ArC: fix StackOverflowError in AutoAddScopeBuildItem
-   [#&#8203;35319](quarkusio/quarkus#35319) - Register arrays of Hibernate ORM's JDBC basic types for reflection
-   [#&#8203;35315](quarkusio/quarkus#35315) - Fix Datasource timing issues with Liquibase / Flyway and OpenTelemetry
-   [#&#8203;35314](quarkusio/quarkus#35314) - Regression in 3.3.0.CR1: Synthetic bean instance for io.opentelemetry.api.OpenTelemetry not initialized yet
-   [#&#8203;35312](quarkusio/quarkus#35312) - Updates Infinispan to 14.0.13.Final
-   [#&#8203;35308](quarkusio/quarkus#35308) - Lock jib execution to avoid OverlappingFileLockException in parallel builds
-   [#&#8203;35305](quarkusio/quarkus#35305) - Fix the titles of the tables in RESTEasy Reactive doc
-   [#&#8203;35302](quarkusio/quarkus#35302) - Docs: Mention wilcard support in resteasy reactive XML serialisation exclude classes configuration
-   [#&#8203;35301](quarkusio/quarkus#35301) - Fix potential NPE in quarkus-csrf-reactive when no MediaType is found
-   [#&#8203;35299](quarkusio/quarkus#35299) - Output build graph using `quarkus.builder.graph-output` property
-   [#&#8203;35285](quarkusio/quarkus#35285) - NullPointerException during http post request when quarkus-csrf-reactive extension is added to a project
-   [#&#8203;35283](quarkusio/quarkus#35283) - Upgrade proto-google-common-protos to 2.23.0
-   [#&#8203;35282](quarkusio/quarkus#35282) - Avoid keeping references to BytecodeRecorderImpl
-   [#&#8203;35276](quarkusio/quarkus#35276) - Reinstate DevModeTestUtil to avoid breaking other projects that depend on it
-   [#&#8203;35273](quarkusio/quarkus#35273) - Fix small typo in comment
-   [#&#8203;35263](quarkusio/quarkus#35263) - Stop the recovery service while ArC is still around
-   [#&#8203;35245](quarkusio/quarkus#35245) - Add missing info to init Jobs
-   [#&#8203;35244](quarkusio/quarkus#35244) - Init Jobs are missing ServiceAccount and Image Pull Secrets
-   [#&#8203;35240](quarkusio/quarkus#35240) - Update SmallRye Health to 4.0.4
-   [#&#8203;34071](quarkusio/quarkus#34071) - 3.1.1 Final - java.lang.IllegalArgumentException: Class java.util.UUID\[] is instantiated reflectively but was never registered
-   [#&#8203;32800](quarkusio/quarkus#32800) - Duplicated checks in health check response
-   [#&#8203;11903](quarkusio/quarkus#11903) - Gradle multimodule project + quarkus-container-image-jib: OverlappingFileLockException

### [`v3.2.4.Final`](https://github.com/quarkusio/quarkus/releases/tag/3.2.4.Final)

[Compare Source](quarkusio/quarkus@3.2.3.Final...3.2.4.Final)

##### Complete changelog

-   [#&#8203;35300](quarkusio/quarkus#35300) - Fix `jandex-gradle-plugin-version` in CDI Reference
-   [#&#8203;35296](quarkusio/quarkus#35296) - Upgrade H2 to 2.2.220
-   [#&#8203;35258](quarkusio/quarkus#35258) - CDI Reference 1.1 has incomplete information for gradle
-   [#&#8203;35255](quarkusio/quarkus#35255) - Quartz: QuarkusMSSQLDelegate should extends MSSQLDelegate
-   [#&#8203;35211](quarkusio/quarkus#35211) - Document Maven config options that may be relevant when running tests
-   [#&#8203;35203](quarkusio/quarkus#35203) - Pass Maven user settings when initializing artifact resolver
-   [#&#8203;35193](quarkusio/quarkus#35193) - OpenTelemetry service name should have higher priority than app name when no resource attributes are set
-   [#&#8203;35189](quarkusio/quarkus#35189) - Quarkus CLI fixes
-   [#&#8203;35188](quarkusio/quarkus#35188) - SmallRyeGraphQLOverWebSocketHandler: use order value > Integer.MIN_VALUE
-   [#&#8203;35181](quarkusio/quarkus#35181) - REST Data with Panache should not produce links when hal is disabled
-   [#&#8203;35174](quarkusio/quarkus#35174) - Ensure the narayana-jta extension fully shuts down the recovery manager
-   [#&#8203;35172](quarkusio/quarkus#35172) - Kafka Streams: restore the feature name at Quarkus startup
-   [#&#8203;35171](quarkusio/quarkus#35171) - kafka-streams: feature not listed on startup
-   [#&#8203;35165](quarkusio/quarkus#35165) - Propagate all user methods in REST Data with Panache
-   [#&#8203;35160](quarkusio/quarkus#35160) - Properly use internal links to point to other guides
-   [#&#8203;35140](quarkusio/quarkus#35140) - ArC: fix deadlock when calling guarded methods on the same thread
-   [#&#8203;35136](quarkusio/quarkus#35136) - Deadlock while calling write-locked method from read-locked method
-   [#&#8203;34908](quarkusio/quarkus#34908) - `@RouteFilter` stopped working with WebSocket requests Quarkus 3.2.0.Final
-   [#&#8203;34875](quarkusio/quarkus#34875) - Quarkus build does not work since 3.2.0 with teamcity/plexus launcher
-   [#&#8203;34713](quarkusio/quarkus#34713) - Option to track build configuration for changes between builds
-   [#&#8203;34576](quarkusio/quarkus#34576) - Live reload stopped working on 3.2 when using XA transactions
-   [#&#8203;34514](quarkusio/quarkus#34514) - Support `@WithUnnamedKey` in documentation
-   [#&#8203;34065](quarkusio/quarkus#34065) - Add support for project Java version update based on extensions
-   [#&#8203;33317](quarkusio/quarkus#33317) - OpenTelemetry SDK autoconfiguration ignores OTEL service name in favor of Quarkus app name
-   [#&#8203;15461](quarkusio/quarkus#15461) - Quarkus tests fails mTLS authentication against internal Maven repository

</details>

<details>
<summary>quarkusio/quarkus-platform</summary>

### [`v3.3.0`](quarkusio/quarkus-platform@3.2.4.Final...3.3.0)

[Compare Source](quarkusio/quarkus-platform@3.2.4.Final...3.3.0)

### [`v3.2.4.Final`](quarkusio/quarkus-platform@3.2.3.Final...3.2.4.Final)

[Compare Source](quarkusio/quarkus-platform@3.2.3.Final...3.2.4.Final)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever MR is behind base branch, or you tick the rebase/retry checkbox.

👻 **Immortal**: This MR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired.

---

 - [x] <!-- rebase-check -->If you want to rebase/retry this MR, check this box

---

This MR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4yNC4wIiwidXBkYXRlZEluVmVyIjoiMzQuMjQuMCJ9-->
benkard pushed a commit to benkard/quarkus-googlecloud-jsonlogging that referenced this issue Sep 21, 2023
…s-googlecloud-jsonlogging!17)

This MR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [io.quarkus:quarkus-extension-processor](https://github.com/quarkusio/quarkus) |  | minor | `3.2.3.Final` -> `3.3.0` |
| [io.quarkus:quarkus-extension-maven-plugin](https://github.com/quarkusio/quarkus) | build | minor | `3.2.3.Final` -> `3.3.0` |
| [io.quarkus:quarkus-maven-plugin](https://github.com/quarkusio/quarkus) | build | minor | `3.2.3.Final` -> `3.3.0` |
| [io.quarkus:quarkus-bom](https://github.com/quarkusio/quarkus) | import | minor | `3.2.3.Final` -> `3.3.0` |

---

### Release Notes

<details>
<summary>quarkusio/quarkus</summary>

### [`v3.3.0`](quarkusio/quarkus@3.2.4.Final...3.3.0)

[Compare Source](quarkusio/quarkus@3.2.4.Final...3.3.0)

### [`v3.2.4.Final`](https://github.com/quarkusio/quarkus/releases/tag/3.2.4.Final)

[Compare Source](quarkusio/quarkus@3.2.3.Final...3.2.4.Final)

##### Complete changelog

-   [#&#8203;35300](quarkusio/quarkus#35300) - Fix `jandex-gradle-plugin-version` in CDI Reference
-   [#&#8203;35296](quarkusio/quarkus#35296) - Upgrade H2 to 2.2.220
-   [#&#8203;35258](quarkusio/quarkus#35258) - CDI Reference 1.1 has incomplete information for gradle
-   [#&#8203;35255](quarkusio/quarkus#35255) - Quartz: QuarkusMSSQLDelegate should extends MSSQLDelegate
-   [#&#8203;35211](quarkusio/quarkus#35211) - Document Maven config options that may be relevant when running tests
-   [#&#8203;35203](quarkusio/quarkus#35203) - Pass Maven user settings when initializing artifact resolver
-   [#&#8203;35193](quarkusio/quarkus#35193) - OpenTelemetry service name should have higher priority than app name when no resource attributes are set
-   [#&#8203;35189](quarkusio/quarkus#35189) - Quarkus CLI fixes
-   [#&#8203;35188](quarkusio/quarkus#35188) - SmallRyeGraphQLOverWebSocketHandler: use order value > Integer.MIN_VALUE
-   [#&#8203;35181](quarkusio/quarkus#35181) - REST Data with Panache should not produce links when hal is disabled
-   [#&#8203;35174](quarkusio/quarkus#35174) - Ensure the narayana-jta extension fully shuts down the recovery manager
-   [#&#8203;35172](quarkusio/quarkus#35172) - Kafka Streams: restore the feature name at Quarkus startup
-   [#&#8203;35171](quarkusio/quarkus#35171) - kafka-streams: feature not listed on startup
-   [#&#8203;35165](quarkusio/quarkus#35165) - Propagate all user methods in REST Data with Panache
-   [#&#8203;35160](quarkusio/quarkus#35160) - Properly use internal links to point to other guides
-   [#&#8203;35140](quarkusio/quarkus#35140) - ArC: fix deadlock when calling guarded methods on the same thread
-   [#&#8203;35136](quarkusio/quarkus#35136) - Deadlock while calling write-locked method from read-locked method
-   [#&#8203;34908](quarkusio/quarkus#34908) - `@RouteFilter` stopped working with WebSocket requests Quarkus 3.2.0.Final
-   [#&#8203;34875](quarkusio/quarkus#34875) - Quarkus build does not work since 3.2.0 with teamcity/plexus launcher
-   [#&#8203;34713](quarkusio/quarkus#34713) - Option to track build configuration for changes between builds
-   [#&#8203;34576](quarkusio/quarkus#34576) - Live reload stopped working on 3.2 when using XA transactions
-   [#&#8203;34514](quarkusio/quarkus#34514) - Support `@WithUnnamedKey` in documentation
-   [#&#8203;34065](quarkusio/quarkus#34065) - Add support for project Java version update based on extensions
-   [#&#8203;33317](quarkusio/quarkus#33317) - OpenTelemetry SDK autoconfiguration ignores OTEL service name in favor of Quarkus app name
-   [#&#8203;15461](quarkusio/quarkus#15461) - Quarkus tests fails mTLS authentication against internal Maven repository

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever MR is behind base branch, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this MR and you won't be reminded about these updates again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this MR, check this box

---

This MR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4yNC4wIiwidXBkYXRlZEluVmVyIjoiMzQuMjQuMCJ9-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/devtools Issues/PR related to maven, gradle, platform and cli tooling/plugins kind/bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

5 participants