Guillaume Nodet
6c5dd056fa
Next is 2.0.0-rc-4-SNAPSHOT
2025-03-10 16:56:59 +01:00
Guillaume Nodet
f912362c18
[release] Release 2.0.0-rc-3
2.0.0-rc-3
2025-03-10 16:56:55 +01:00
dependabot[bot]
f0f41a4253
Bump maven.version from 4.0.0-rc-3-SNAPSHOT to 4.0.0-rc-3 ( #1286 )
...
Bumps `maven.version` from 4.0.0-rc-3-SNAPSHOT to 4.0.0-rc-3.
Updates `org.apache.maven:maven-plugin-api` from 4.0.0-rc-3-SNAPSHOT to 4.0.0-rc-3
- [Release notes](https://github.com/apache/maven/releases )
- [Commits](https://github.com/apache/maven/commits/maven-4.0.0-rc-3 )
Updates `org.apache.maven:maven-model` from 4.0.0-rc-3-SNAPSHOT to 4.0.0-rc-3
- [Release notes](https://github.com/apache/maven/releases )
- [Commits](https://github.com/apache/maven/commits/maven-4.0.0-rc-3 )
Updates `org.apache.maven:maven-core` from 4.0.0-rc-3-SNAPSHOT to 4.0.0-rc-3
- [Release notes](https://github.com/apache/maven/releases )
- [Commits](https://github.com/apache/maven/commits/maven-4.0.0-rc-3 )
Updates `org.apache.maven:maven-resolver-provider` from 4.0.0-rc-3-SNAPSHOT to 4.0.0-rc-3
- [Release notes](https://github.com/apache/maven/releases )
- [Commits](https://github.com/apache/maven/commits/maven-4.0.0-rc-3 )
Updates `org.apache.maven:maven-embedder` from 4.0.0-rc-3-SNAPSHOT to 4.0.0-rc-3
- [Release notes](https://github.com/apache/maven/releases )
- [Commits](https://github.com/apache/maven/commits/maven-4.0.0-rc-3 )
Updates `org.apache.maven:maven-cli` from 4.0.0-rc-3-SNAPSHOT to 4.0.0-rc-3
- [Release notes](https://github.com/apache/maven/releases )
- [Commits](https://github.com/apache/maven/commits/maven-4.0.0-rc-3 )
Updates `org.apache.maven:maven-api-di` from 4.0.0-rc-3-SNAPSHOT to 4.0.0-rc-3
- [Release notes](https://github.com/apache/maven/releases )
- [Commits](https://github.com/apache/maven/commits/maven-4.0.0-rc-3 )
Updates `org.apache.maven:maven-jline` from 4.0.0-rc-3-SNAPSHOT to 4.0.0-rc-3
- [Release notes](https://github.com/apache/maven/releases )
- [Commits](https://github.com/apache/maven/commits/maven-4.0.0-rc-3 )
Updates `org.apache.maven:maven-logging` from 4.0.0-rc-3-SNAPSHOT to 4.0.0-rc-3
- [Release notes](https://github.com/apache/maven/releases )
- [Commits](https://github.com/apache/maven/commits/maven-4.0.0-rc-3 )
Updates `org.apache.maven:apache-maven` from 4.0.0-rc-3-SNAPSHOT to 4.0.0-rc-3
- [Release notes](https://github.com/apache/maven/releases )
- [Commits](https://github.com/apache/maven/commits/maven-4.0.0-rc-3 )
---
updated-dependencies:
- dependency-name: org.apache.maven:maven-plugin-api
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: org.apache.maven:maven-model
dependency-type: direct:development
update-type: version-update:semver-patch
- dependency-name: org.apache.maven:maven-core
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: org.apache.maven:maven-resolver-provider
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: org.apache.maven:maven-embedder
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: org.apache.maven:maven-cli
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: org.apache.maven:maven-api-di
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: org.apache.maven:maven-jline
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: org.apache.maven:maven-logging
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: org.apache.maven:apache-maven
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-10 16:34:22 +01:00
Tamas Cservenak
c4b5656d19
Bug: extension handling ( #1282 )
...
mvnd still had mvn3 like code, just drop it and let base parser
do the work. All the mvnd needs is filtering.
Discriminating based on XML file hashes.
Fixes #1280
2025-03-07 19:02:57 +01:00
Stefan Oehme
bb1191e4c6
Make DaemonRegistry concurrency-safe ( #1281 )
...
The previous implementation had two issues:
The memmory-mapped file was created in the constructor and ignored file expansions by other
threads or processes. It would then overwrite the file with its own, smaller size buffer.
Replaced the memory mapping with a regular InputStream/OutputStream approach. Memory mapping
is not very useful in this scenario anyway, since the file is small and infrequently read and
we always read/write the entire file.
The tryLock method was broken and only tried locking once. If the lock could not be acquired,
it returned null and the subsequent code then ignored that fact and proceeded without locking.
I've moved the retry loop and failure handling into the lock method, which gives it the intended
behavior of waiting for a lock for 20s and then failing.
The test expectation for the "big registry" test has changed, since we no longer
manually increase the file size to multiples of two, but instead simply write out
exactly the bytes we need.
I droped the String size requirement, since DataInputStream handles arbitrarly
long Strings. I also changed the exception handling to consistently do recovery
on any kind of exception while reading/writing, since it is reasonable to assume
that any such exception indicates a broken registry file. I've also adjusted the
user-facing message to only tell them to delete the file if recovery fails.
2025-03-07 18:34:44 +01:00
dependabot[bot]
413b986439
Bump testcontainers.version from 1.20.5 to 1.20.6 ( #1279 )
...
Bumps `testcontainers.version` from 1.20.5 to 1.20.6.
Updates `org.testcontainers:testcontainers` from 1.20.5 to 1.20.6
- [Release notes](https://github.com/testcontainers/testcontainers-java/releases )
- [Changelog](https://github.com/testcontainers/testcontainers-java/blob/main/CHANGELOG.md )
- [Commits](https://github.com/testcontainers/testcontainers-java/compare/1.20.5...1.20.6 )
Updates `org.testcontainers:junit-jupiter` from 1.20.5 to 1.20.6
- [Release notes](https://github.com/testcontainers/testcontainers-java/releases )
- [Changelog](https://github.com/testcontainers/testcontainers-java/blob/main/CHANGELOG.md )
- [Commits](https://github.com/testcontainers/testcontainers-java/compare/1.20.5...1.20.6 )
---
updated-dependencies:
- dependency-name: org.testcontainers:testcontainers
dependency-type: direct:development
update-type: version-update:semver-patch
- dependency-name: org.testcontainers:junit-jupiter
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-05 22:13:23 +01:00
dependabot[bot]
c42c36e8d5
Bump maven.resolver.version from 2.0.6 to 2.0.7 ( #1278 )
...
Bumps `maven.resolver.version` from 2.0.6 to 2.0.7.
Updates `org.apache.maven.resolver:maven-resolver-api` from 2.0.6 to 2.0.7
- [Release notes](https://github.com/apache/maven-resolver/releases )
- [Commits](https://github.com/apache/maven-resolver/compare/maven-resolver-2.0.6...maven-resolver-2.0.7 )
Updates `org.apache.maven.resolver:maven-resolver-impl` from 2.0.6 to 2.0.7
- [Release notes](https://github.com/apache/maven-resolver/releases )
- [Commits](https://github.com/apache/maven-resolver/compare/maven-resolver-2.0.6...maven-resolver-2.0.7 )
Updates `org.apache.maven.resolver:maven-resolver-spi` from 2.0.6 to 2.0.7
- [Release notes](https://github.com/apache/maven-resolver/releases )
- [Commits](https://github.com/apache/maven-resolver/compare/maven-resolver-2.0.6...maven-resolver-2.0.7 )
Updates `org.apache.maven.resolver:maven-resolver-util` from 2.0.6 to 2.0.7
- [Release notes](https://github.com/apache/maven-resolver/releases )
- [Commits](https://github.com/apache/maven-resolver/compare/maven-resolver-2.0.6...maven-resolver-2.0.7 )
Updates `org.apache.maven.resolver:maven-resolver-connector-basic` from 2.0.6 to 2.0.7
- [Release notes](https://github.com/apache/maven-resolver/releases )
- [Commits](https://github.com/apache/maven-resolver/compare/maven-resolver-2.0.6...maven-resolver-2.0.7 )
Updates `org.apache.maven.resolver:maven-resolver-transport-wagon` from 2.0.6 to 2.0.7
- [Release notes](https://github.com/apache/maven-resolver/releases )
- [Commits](https://github.com/apache/maven-resolver/compare/maven-resolver-2.0.6...maven-resolver-2.0.7 )
---
updated-dependencies:
- dependency-name: org.apache.maven.resolver:maven-resolver-api
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: org.apache.maven.resolver:maven-resolver-impl
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: org.apache.maven.resolver:maven-resolver-spi
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: org.apache.maven.resolver:maven-resolver-util
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: org.apache.maven.resolver:maven-resolver-connector-basic
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: org.apache.maven.resolver:maven-resolver-transport-wagon
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-03 13:30:07 +01:00
Guillaume Nodet
eee5c0ca9b
Remove build resumption which was ported from master to support resumption with 3.x ( #1275 )
2025-03-03 08:36:10 +01:00
dependabot[bot]
991a9bd844
Bump groovy.version from 4.0.25 to 4.0.26 ( #1276 )
...
Bumps `groovy.version` from 4.0.25 to 4.0.26.
Updates `org.apache.groovy:groovy` from 4.0.25 to 4.0.26
- [Commits](https://github.com/apache/groovy/commits )
Updates `org.apache.groovy:groovy-all` from 4.0.25 to 4.0.26
- [Commits](https://github.com/apache/groovy/commits )
---
updated-dependencies:
- dependency-name: org.apache.groovy:groovy
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: org.apache.groovy:groovy-all
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-28 15:15:20 +01:00
Tamas Cservenak
0bdeee9dcb
[MMG-8600] Adopt to Maven changes ( #1277 )
...
Adopt to https://github.com/apache/maven/pull/2134
Goal is to be able to perform required customizations to Terminal, but also "raw streams" (as Maven acts on false, while mvnd on true).
2025-02-28 14:51:59 +01:00
dependabot[bot]
2bee55c682
Bump testcontainers.version from 1.20.4 to 1.20.5 ( #1274 )
...
Bumps `testcontainers.version` from 1.20.4 to 1.20.5.
Updates `org.testcontainers:testcontainers` from 1.20.4 to 1.20.5
- [Release notes](https://github.com/testcontainers/testcontainers-java/releases )
- [Changelog](https://github.com/testcontainers/testcontainers-java/blob/main/CHANGELOG.md )
- [Commits](https://github.com/testcontainers/testcontainers-java/compare/1.20.4...1.20.5 )
Updates `org.testcontainers:junit-jupiter` from 1.20.4 to 1.20.5
- [Release notes](https://github.com/testcontainers/testcontainers-java/releases )
- [Changelog](https://github.com/testcontainers/testcontainers-java/blob/main/CHANGELOG.md )
- [Commits](https://github.com/testcontainers/testcontainers-java/compare/1.20.4...1.20.5 )
---
updated-dependencies:
- dependency-name: org.testcontainers:testcontainers
dependency-type: direct:development
update-type: version-update:semver-patch
- dependency-name: org.testcontainers:junit-jupiter
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-20 14:50:07 +01:00
Guillaume Nodet
dac81c7011
Support MAVEN_ARGS env var ( fixes #1219 ) ( #1269 )
2025-02-17 23:12:32 +01:00
Guillaume Nodet
9e32662401
Refactor input stream support ( fixes #1257 ) ( #1268 )
2025-02-17 23:12:16 +01:00
Guillaume Nodet
4f4e05f973
Cleanup BufferHelper for JDK 17+ ( fixes #1261 ) ( #1267 )
2025-02-17 23:11:40 +01:00
Slawomir Jaranowski
bec0644d43
Add GitHub issues template
2025-02-17 11:04:38 +01:00
Slawomir Jaranowski
c64c8b850f
Add Stale action
2025-02-16 18:45:52 +01:00
Slawomir Jaranowski
c5d390924f
Add PR Automation action
2025-02-15 09:36:44 +01:00
dependabot[bot]
029df7f37c
Bump org.assertj:assertj-core from 3.27.2 to 3.27.3 ( #1244 )
...
Bumps [org.assertj:assertj-core](https://github.com/assertj/assertj ) from 3.27.2 to 3.27.3.
- [Release notes](https://github.com/assertj/assertj/releases )
- [Commits](https://github.com/assertj/assertj/compare/assertj-build-3.27.2...assertj-build-3.27.3 )
---
updated-dependencies:
- dependency-name: org.assertj:assertj-core
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-10 11:29:31 +01:00
dependabot[bot]
fedeb064ea
Bump org.graalvm.nativeimage:svm from 24.1.1 to 24.1.2 ( #1247 )
...
Bumps [org.graalvm.nativeimage:svm](https://github.com/oracle/graal ) from 24.1.1 to 24.1.2.
- [Release notes](https://github.com/oracle/graal/releases )
- [Commits](https://github.com/oracle/graal/compare/vm-24.1.1...vm-24.1.2 )
---
updated-dependencies:
- dependency-name: org.graalvm.nativeimage:svm
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-10 11:29:24 +01:00
Tamas Cservenak
af431d9d54
Move override components back to Sisu ( #1263 )
...
As these component are overriding Sisu components.
2025-02-08 21:32:22 +01:00
Tamas Cservenak
d4d4f23d7d
Fixes ( #1253 )
...
Seems MSC fork does not allow pushes from users who have commit rights on forked maven-mvnd, so am incorporating @ascheman changes here as well.
This PR is:
* fixes from PR https://github.com/apache/maven-mvnd/pull/1252
* plus fix SO isse (self injected cache)
* plus migrated whole daemon to Maven DI (from javax.inject) except those that override Sisu components
* ported latest Maven changes
2025-02-08 20:55:53 +01:00
Sylwester Lachiewicz
49b7105dad
ci: run tests on macos-15
2025-01-10 01:16:15 +01:00
Sylwester Lachiewicz
8814df2be1
(doc) Delete branch on merge
2025-01-08 21:33:15 +01:00
dependabot[bot]
73167eee0f
Bump org.codehaus.gmavenplus:gmavenplus-plugin from 4.0.1 to 4.1.1 ( #1239 )
...
Bumps [org.codehaus.gmavenplus:gmavenplus-plugin](https://github.com/groovy/GMavenPlus ) from 4.0.1 to 4.1.1.
- [Release notes](https://github.com/groovy/GMavenPlus/releases )
- [Commits](https://github.com/groovy/GMavenPlus/compare/4.0.1...4.1.1 )
---
updated-dependencies:
- dependency-name: org.codehaus.gmavenplus:gmavenplus-plugin
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-01-08 18:10:20 +01:00
dependabot[bot]
153e4f8af5
Bump org.assertj:assertj-core from 3.27.0 to 3.27.2 ( #1241 )
...
Bumps [org.assertj:assertj-core](https://github.com/assertj/assertj ) from 3.27.0 to 3.27.2.
- [Release notes](https://github.com/assertj/assertj/releases )
- [Commits](https://github.com/assertj/assertj/compare/assertj-build-3.27.0...assertj-build-3.27.2 )
---
updated-dependencies:
- dependency-name: org.assertj:assertj-core
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-01-07 23:32:48 +08:00
dependabot[bot]
0e54b22320
Bump org.assertj:assertj-core from 3.26.3 to 3.27.0 ( #1232 )
...
Bumps [org.assertj:assertj-core](https://github.com/assertj/assertj ) from 3.26.3 to 3.27.0.
- [Release notes](https://github.com/assertj/assertj/releases )
- [Commits](https://github.com/assertj/assertj/compare/assertj-build-3.26.3...assertj-build-3.27.0 )
---
updated-dependencies:
- dependency-name: org.assertj:assertj-core
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-20 13:02:14 +01:00
Tamas Cservenak
2606a78f46
Align to 2.0.0-rc-3-SNAPSHOT
...
Same as Maven master
2024-12-17 14:34:46 +01:00
Tamas Cservenak
7820fcc20c
Port mvnsh changes ( #1228 )
...
Basically get rid of ResidentContext, is gone.
Also, port some other minor mvn RC-3 changes as well.
2024-12-17 13:54:57 +01:00
Jermaine Hua
7b309de9ab
Support core extension more configuration ( #1216 )
...
Fixes #1163
Signed-off-by: crazyhzm <crazyhzm@apache.org >
2024-12-17 13:50:43 +01:00
dependabot[bot]
89f8cbfe65
Bump com.google.guava:guava from 33.3.1-jre to 33.4.0-jre ( #1231 )
...
Bumps [com.google.guava:guava](https://github.com/google/guava ) from 33.3.1-jre to 33.4.0-jre.
- [Release notes](https://github.com/google/guava/releases )
- [Commits](https://github.com/google/guava/commits )
---
updated-dependencies:
- dependency-name: com.google.guava:guava
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-17 13:38:18 +01:00
dependabot[bot]
8b6abf17ff
Bump org.jboss.forge.roaster:roaster-jdt ( #1227 )
...
Bumps org.jboss.forge.roaster:roaster-jdt from 2.30.0.Final to 2.30.1.Final.
---
updated-dependencies:
- dependency-name: org.jboss.forge.roaster:roaster-jdt
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-17 13:37:46 +01:00
dependabot[bot]
ccb1cd1d3c
Bump jline.version from 3.27.1 to 3.28.0 ( #1226 )
...
Bumps `jline.version` from 3.27.1 to 3.28.0.
Updates `org.jline:jline` from 3.27.1 to 3.28.0
- [Release notes](https://github.com/jline/jline3/releases )
- [Changelog](https://github.com/jline/jline3/blob/master/changelog.md )
- [Commits](https://github.com/jline/jline3/compare/jline-3.27.1...jline-3.28.0 )
Updates `org.jline:jline-terminal` from 3.27.1 to 3.28.0
- [Release notes](https://github.com/jline/jline3/releases )
- [Changelog](https://github.com/jline/jline3/blob/master/changelog.md )
- [Commits](https://github.com/jline/jline3/compare/jline-3.27.1...jline-3.28.0 )
Updates `org.jline:jline-terminal-jansi` from 3.27.1 to 3.28.0
- [Release notes](https://github.com/jline/jline3/releases )
- [Changelog](https://github.com/jline/jline3/blob/master/changelog.md )
- [Commits](https://github.com/jline/jline3/compare/jline-3.27.1...jline-3.28.0 )
Updates `org.jline:jline-terminal-jni` from 3.27.1 to 3.28.0
- [Release notes](https://github.com/jline/jline3/releases )
- [Changelog](https://github.com/jline/jline3/blob/master/changelog.md )
- [Commits](https://github.com/jline/jline3/compare/jline-3.27.1...jline-3.28.0 )
---
updated-dependencies:
- dependency-name: org.jline:jline
dependency-type: direct:production
update-type: version-update:semver-minor
- dependency-name: org.jline:jline-terminal
dependency-type: direct:production
update-type: version-update:semver-minor
- dependency-name: org.jline:jline-terminal-jansi
dependency-type: direct:production
update-type: version-update:semver-minor
- dependency-name: org.jline:jline-terminal-jni
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-17 13:37:38 +01:00
dependabot[bot]
c2713ab02a
Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.11.1 to 3.11.2 ( #1218 )
...
Bumps [org.apache.maven.plugins:maven-javadoc-plugin](https://github.com/apache/maven-javadoc-plugin ) from 3.11.1 to 3.11.2.
- [Release notes](https://github.com/apache/maven-javadoc-plugin/releases )
- [Commits](https://github.com/apache/maven-javadoc-plugin/compare/maven-javadoc-plugin-3.11.1...maven-javadoc-plugin-3.11.2 )
---
updated-dependencies:
- dependency-name: org.apache.maven.plugins:maven-javadoc-plugin
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-09 23:56:03 +08:00
dependabot[bot]
20ba809184
Bump org.jboss.forge.roaster:roaster-jdt ( #1212 )
...
Bumps org.jboss.forge.roaster:roaster-jdt from 2.29.0.Final to 2.30.0.Final.
---
updated-dependencies:
- dependency-name: org.jboss.forge.roaster:roaster-jdt
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-08 22:50:18 +08:00
dependabot[bot]
41e5a54096
Bump org.graalvm.buildtools:native-maven-plugin from 0.10.3 to 0.10.4 ( #1213 )
...
Bumps [org.graalvm.buildtools:native-maven-plugin](https://github.com/graalvm/native-build-tools ) from 0.10.3 to 0.10.4.
- [Release notes](https://github.com/graalvm/native-build-tools/releases )
- [Commits](https://github.com/graalvm/native-build-tools/commits )
---
updated-dependencies:
- dependency-name: org.graalvm.buildtools:native-maven-plugin
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-08 22:49:18 +08:00
Guillaume Nodet
b0a210d81a
Do publish release on homebrew
2024-12-06 17:49:06 +01:00
Guillaume Nodet
c8fc604504
Next is 2.0.0-rc-2-SNAPSHOT
2024-11-26 10:14:09 +01:00
Guillaume Nodet
39127a4669
[release] Release 2.0.0-rc-1
2.0.0-rc-1
2024-11-26 10:14:05 +01:00
Guillaume Nodet
083a28b7af
Fixes --verbose/--debug options ( fixes #1208 )
2024-11-26 10:02:05 +01:00
Guillaume Nodet
dade78541c
Upgrade to 4.0.0-rc-1 ( fixes #1203 and #1204 )
...
# Conflicts:
# pom.xml
2024-11-26 10:02:05 +01:00
Guillaume Nodet
514cf3de02
Debug mode should provide better defaults for keepAlive and connectTimeout ( fixes #1209 )
2024-11-26 10:02:05 +01:00
Guillaume Nodet
a070d0c07d
Fix color option
2024-11-26 10:02:05 +01:00
Tamas Cservenak
64c0a8fdf4
Fix log ordering
...
nano time is not enough, rather use a "sequence"
2024-11-26 10:02:05 +01:00
Guillaume Nodet
9f0537a681
Do not display client environment unless specifically asked for
2024-11-26 10:02:05 +01:00
dependabot[bot]
ed55f5cd2b
Bump testcontainers.version from 1.20.3 to 1.20.4
...
Bumps `testcontainers.version` from 1.20.3 to 1.20.4.
Updates `org.testcontainers:testcontainers` from 1.20.3 to 1.20.4
- [Release notes](https://github.com/testcontainers/testcontainers-java/releases )
- [Changelog](https://github.com/testcontainers/testcontainers-java/blob/main/CHANGELOG.md )
- [Commits](https://github.com/testcontainers/testcontainers-java/compare/1.20.3...1.20.4 )
Updates `org.testcontainers:junit-jupiter` from 1.20.3 to 1.20.4
- [Release notes](https://github.com/testcontainers/testcontainers-java/releases )
- [Changelog](https://github.com/testcontainers/testcontainers-java/blob/main/CHANGELOG.md )
- [Commits](https://github.com/testcontainers/testcontainers-java/compare/1.20.3...1.20.4 )
---
updated-dependencies:
- dependency-name: org.testcontainers:testcontainers
dependency-type: direct:development
update-type: version-update:semver-patch
- dependency-name: org.testcontainers:junit-jupiter
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-11-22 08:05:23 +01:00
dependabot[bot]
47f1bf3c79
Bump maven.resolver.version from 2.0.2 to 2.0.4
...
Bumps `maven.resolver.version` from 2.0.2 to 2.0.4.
Updates `org.apache.maven.resolver:maven-resolver-api` from 2.0.2 to 2.0.4
- [Release notes](https://github.com/apache/maven-resolver/releases )
- [Commits](https://github.com/apache/maven-resolver/compare/maven-resolver-2.0.2...maven-resolver-2.0.4 )
Updates `org.apache.maven.resolver:maven-resolver-impl` from 2.0.2 to 2.0.4
- [Release notes](https://github.com/apache/maven-resolver/releases )
- [Commits](https://github.com/apache/maven-resolver/compare/maven-resolver-2.0.2...maven-resolver-2.0.4 )
Updates `org.apache.maven.resolver:maven-resolver-spi` from 2.0.2 to 2.0.4
- [Release notes](https://github.com/apache/maven-resolver/releases )
- [Commits](https://github.com/apache/maven-resolver/compare/maven-resolver-2.0.2...maven-resolver-2.0.4 )
Updates `org.apache.maven.resolver:maven-resolver-util` from 2.0.2 to 2.0.4
- [Release notes](https://github.com/apache/maven-resolver/releases )
- [Commits](https://github.com/apache/maven-resolver/compare/maven-resolver-2.0.2...maven-resolver-2.0.4 )
Updates `org.apache.maven.resolver:maven-resolver-connector-basic` from 2.0.2 to 2.0.4
- [Release notes](https://github.com/apache/maven-resolver/releases )
- [Commits](https://github.com/apache/maven-resolver/compare/maven-resolver-2.0.2...maven-resolver-2.0.4 )
Updates `org.apache.maven.resolver:maven-resolver-transport-wagon` from 2.0.2 to 2.0.4
- [Release notes](https://github.com/apache/maven-resolver/releases )
- [Commits](https://github.com/apache/maven-resolver/compare/maven-resolver-2.0.2...maven-resolver-2.0.4 )
---
updated-dependencies:
- dependency-name: org.apache.maven.resolver:maven-resolver-api
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: org.apache.maven.resolver:maven-resolver-impl
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: org.apache.maven.resolver:maven-resolver-spi
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: org.apache.maven.resolver:maven-resolver-util
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: org.apache.maven.resolver:maven-resolver-connector-basic
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: org.apache.maven.resolver:maven-resolver-transport-wagon
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-11-19 08:32:48 +01:00
Stefan Oehme
a7537fc233
Update m2.conf to match Maven 4.x
...
So calling the `mvn` executable from a daemon distribution behaves more like vanilla Maven 4.x
2024-11-19 08:32:07 +01:00
dependabot[bot]
0835f0a0b5
Bump groovy.version from 4.0.23 to 4.0.24 ( #1198 )
...
Bumps `groovy.version` from 4.0.23 to 4.0.24.
Updates `org.apache.groovy:groovy` from 4.0.23 to 4.0.24
- [Commits](https://github.com/apache/groovy/commits )
Updates `org.apache.groovy:groovy-all` from 4.0.23 to 4.0.24
- [Commits](https://github.com/apache/groovy/commits )
---
updated-dependencies:
- dependency-name: org.apache.groovy:groovy
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: org.apache.groovy:groovy-all
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-11-13 15:19:52 +01:00
dependabot[bot]
6e6d1a9001
Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.10.1 to 3.11.1 ( #1199 )
...
Bumps [org.apache.maven.plugins:maven-javadoc-plugin](https://github.com/apache/maven-javadoc-plugin ) from 3.10.1 to 3.11.1.
- [Release notes](https://github.com/apache/maven-javadoc-plugin/releases )
- [Commits](https://github.com/apache/maven-javadoc-plugin/compare/maven-javadoc-plugin-3.10.1...maven-javadoc-plugin-3.11.1 )
---
updated-dependencies:
- dependency-name: org.apache.maven.plugins:maven-javadoc-plugin
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-11-13 15:19:38 +01:00
dependabot[bot]
c059186852
Bump com.thoughtworks.xstream:xstream from 1.4.20 to 1.4.21
...
Bumps [com.thoughtworks.xstream:xstream](https://github.com/x-stream/xstream ) from 1.4.20 to 1.4.21.
- [Release notes](https://github.com/x-stream/xstream/releases )
- [Commits](https://github.com/x-stream/xstream/commits )
---
updated-dependencies:
- dependency-name: com.thoughtworks.xstream:xstream
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-11-08 19:25:45 +01:00