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

Bump tycho-version from 4.0.10 to 4.0.11 #449

Merged
merged 1 commit into from
Feb 5, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 5, 2025

Bumps tycho-version from 4.0.10 to 4.0.11.
Updates org.eclipse.tycho.extras:tycho-sourceref-jgit from 4.0.10 to 4.0.11

Updates org.eclipse.tycho:tycho-maven-plugin from 4.0.10 to 4.0.11

Release notes

Sourced from org.eclipse.tycho:tycho-maven-plugin's releases.

Tycho 4.0.11 has been released and is available from Maven Central repository.

🆕 https://github.com/eclipse-tycho/tycho/blob/tycho-4.0.11/RELEASE_NOTES.md 🏷️ https://github.com/eclipse-tycho/tycho/tree/tycho-4.0.11 👔 https://projects.eclipse.org/projects/technology.tycho/releases/4.0.11 🙏 contributors who contributed patches for this release:

  • Andreas Schwarz
  • Christoph Läubrich
  • Christoph Rueger
  • dependabot[bot]
  • kysmith-csg
  • Michael Keppler
  • Sebastian Ratz
  • Zlika
  • Александър Куртаков

💰 we would like to also thank for sponsoring contributions in this release and the Eclipse IDE Workingroup for funding the release work

and thanks to everyone who helped us with testing the snapshot version.

Regards,

The Tycho Team

What's Changed

... (truncated)

Changelog

Sourced from org.eclipse.tycho:tycho-maven-plugin's changelog.

4.0.11

Important Notice: There was a bug in previous versions of Tycho that has lead to the situation that projects are resolved with a higher bundle required java version even though this was not explicitly allowed. This could also lead to the case that even though tests should run with a lower java version as the build, actually the build jvm defined the minimum runtime.

This is now fixed, but might result in build previously working now fail due to the constraints not properly checked before, to fix those builds you have the following opportunities:

  1. Update the required execution environment (BREE) of your bundle to those of the dependencies (recommended)
  2. If you still want to target older BREE for example because you support older versions of the dependencies, you can set the BREE in your target configuration or target platform file to express the latest runtime requirements you are targeting.
<plugin>
	<groupId>org.eclipse.tycho</groupId>
	<artifactId>target-platform-configuration</artifactId>
	<version>${tycho-version}</version>
	<configuration>
		<executionEnvironment>JavaSE-17</executionEnvironment>
	</configuration>
</plugin>
  1. As an alternative you can disable execution environment checks all together (not recommended)
<plugin>
	<groupId>org.eclipse.tycho</groupId>
	<artifactId>target-platform-configuration</artifactId>
	<version>${tycho-version}</version>
	<configuration>
		<resolveWithExecutionEnvironmentConstraints>false</resolveWithExecutionEnvironmentConstraints>
	</configuration>
</plugin>

Please note: This all does not influence the compile-target, that is always derived from the BREE regardless of resolution if not otherwise configured.

backports:

  • Create new tycho-cleancode plugin for automated code cleanups
  • Create tycho-baseline:check-dependencies mojo to validate versions
  • Add a version report to target update mojo
  • Add support for exporting bndruns in bndworkspace projects
  • Add support for building sub-bundle with tycho-bnd-extension
  • Add support for date patterns in update target
  • Add support for version patterns in URLs to update IU locations
  • Add support for setting an API baseline in EclipseBuildMojos
  • Add support for reading artifacts from global bundle pools
  • Add support for using maven repositories as P2 mirror
  • Add an option to print the java memory before/after mojo execution

... (truncated)

Commits
  • 105ab43 Perform 4.0.11 release
  • f845f79 Update Release Notes
  • 5a9fb8e make synchronization of classpath calculation more fine-grained
  • 5e5b061 add bndtools workspace template fragment
  • a416275 Do not print diff for features
  • da2ed1e Add a version report to target update mojo
  • 483cc67 Consider runbundles when computing dependencies
  • 099af7f extend bnd demo ws for .bndrun usecase
  • f7cef38 Support custom properties from bnd files and enhance the documentation
  • 6c0287c Add support for exporting bndruns in bndworkspace projects
  • Additional commits viewable in compare view

Updates org.eclipse.tycho:target-platform-configuration from 4.0.10 to 4.0.11

Release notes

Sourced from org.eclipse.tycho:target-platform-configuration's releases.

Tycho 4.0.11 has been released and is available from Maven Central repository.

🆕 https://github.com/eclipse-tycho/tycho/blob/tycho-4.0.11/RELEASE_NOTES.md 🏷️ https://github.com/eclipse-tycho/tycho/tree/tycho-4.0.11 👔 https://projects.eclipse.org/projects/technology.tycho/releases/4.0.11 🙏 contributors who contributed patches for this release:

  • Andreas Schwarz
  • Christoph Läubrich
  • Christoph Rueger
  • dependabot[bot]
  • kysmith-csg
  • Michael Keppler
  • Sebastian Ratz
  • Zlika
  • Александър Куртаков

💰 we would like to also thank for sponsoring contributions in this release and the Eclipse IDE Workingroup for funding the release work

and thanks to everyone who helped us with testing the snapshot version.

Regards,

The Tycho Team

What's Changed

... (truncated)

Changelog

Sourced from org.eclipse.tycho:target-platform-configuration's changelog.

4.0.11

Important Notice: There was a bug in previous versions of Tycho that has lead to the situation that projects are resolved with a higher bundle required java version even though this was not explicitly allowed. This could also lead to the case that even though tests should run with a lower java version as the build, actually the build jvm defined the minimum runtime.

This is now fixed, but might result in build previously working now fail due to the constraints not properly checked before, to fix those builds you have the following opportunities:

  1. Update the required execution environment (BREE) of your bundle to those of the dependencies (recommended)
  2. If you still want to target older BREE for example because you support older versions of the dependencies, you can set the BREE in your target configuration or target platform file to express the latest runtime requirements you are targeting.
<plugin>
	<groupId>org.eclipse.tycho</groupId>
	<artifactId>target-platform-configuration</artifactId>
	<version>${tycho-version}</version>
	<configuration>
		<executionEnvironment>JavaSE-17</executionEnvironment>
	</configuration>
</plugin>
  1. As an alternative you can disable execution environment checks all together (not recommended)
<plugin>
	<groupId>org.eclipse.tycho</groupId>
	<artifactId>target-platform-configuration</artifactId>
	<version>${tycho-version}</version>
	<configuration>
		<resolveWithExecutionEnvironmentConstraints>false</resolveWithExecutionEnvironmentConstraints>
	</configuration>
</plugin>

Please note: This all does not influence the compile-target, that is always derived from the BREE regardless of resolution if not otherwise configured.

backports:

  • Create new tycho-cleancode plugin for automated code cleanups
  • Create tycho-baseline:check-dependencies mojo to validate versions
  • Add a version report to target update mojo
  • Add support for exporting bndruns in bndworkspace projects
  • Add support for building sub-bundle with tycho-bnd-extension
  • Add support for date patterns in update target
  • Add support for version patterns in URLs to update IU locations
  • Add support for setting an API baseline in EclipseBuildMojos
  • Add support for reading artifacts from global bundle pools
  • Add support for using maven repositories as P2 mirror
  • Add an option to print the java memory before/after mojo execution

... (truncated)

Commits
  • 105ab43 Perform 4.0.11 release
  • f845f79 Update Release Notes
  • 5a9fb8e make synchronization of classpath calculation more fine-grained
  • 5e5b061 add bndtools workspace template fragment
  • a416275 Do not print diff for features
  • da2ed1e Add a version report to target update mojo
  • 483cc67 Consider runbundles when computing dependencies
  • 099af7f extend bnd demo ws for .bndrun usecase
  • f7cef38 Support custom properties from bnd files and enhance the documentation
  • 6c0287c Add support for exporting bndruns in bndworkspace projects
  • Additional commits viewable in compare view

Updates org.eclipse.tycho:tycho-source-plugin from 4.0.10 to 4.0.11

Release notes

Sourced from org.eclipse.tycho:tycho-source-plugin's releases.

Tycho 4.0.11 has been released and is available from Maven Central repository.

🆕 https://github.com/eclipse-tycho/tycho/blob/tycho-4.0.11/RELEASE_NOTES.md 🏷️ https://github.com/eclipse-tycho/tycho/tree/tycho-4.0.11 👔 https://projects.eclipse.org/projects/technology.tycho/releases/4.0.11 🙏 contributors who contributed patches for this release:

  • Andreas Schwarz
  • Christoph Läubrich
  • Christoph Rueger
  • dependabot[bot]
  • kysmith-csg
  • Michael Keppler
  • Sebastian Ratz
  • Zlika
  • Александър Куртаков

💰 we would like to also thank for sponsoring contributions in this release and the Eclipse IDE Workingroup for funding the release work

and thanks to everyone who helped us with testing the snapshot version.

Regards,

The Tycho Team

What's Changed

... (truncated)

Changelog

Sourced from org.eclipse.tycho:tycho-source-plugin's changelog.

4.0.11

Important Notice: There was a bug in previous versions of Tycho that has lead to the situation that projects are resolved with a higher bundle required java version even though this was not explicitly allowed. This could also lead to the case that even though tests should run with a lower java version as the build, actually the build jvm defined the minimum runtime.

This is now fixed, but might result in build previously working now fail due to the constraints not properly checked before, to fix those builds you have the following opportunities:

  1. Update the required execution environment (BREE) of your bundle to those of the dependencies (recommended)
  2. If you still want to target older BREE for example because you support older versions of the dependencies, you can set the BREE in your target configuration or target platform file to express the latest runtime requirements you are targeting.
<plugin>
	<groupId>org.eclipse.tycho</groupId>
	<artifactId>target-platform-configuration</artifactId>
	<version>${tycho-version}</version>
	<configuration>
		<executionEnvironment>JavaSE-17</executionEnvironment>
	</configuration>
</plugin>
  1. As an alternative you can disable execution environment checks all together (not recommended)
<plugin>
	<groupId>org.eclipse.tycho</groupId>
	<artifactId>target-platform-configuration</artifactId>
	<version>${tycho-version}</version>
	<configuration>
		<resolveWithExecutionEnvironmentConstraints>false</resolveWithExecutionEnvironmentConstraints>
	</configuration>
</plugin>

Please note: This all does not influence the compile-target, that is always derived from the BREE regardless of resolution if not otherwise configured.

backports:

  • Create new tycho-cleancode plugin for automated code cleanups
  • Create tycho-baseline:check-dependencies mojo to validate versions
  • Add a version report to target update mojo
  • Add support for exporting bndruns in bndworkspace projects
  • Add support for building sub-bundle with tycho-bnd-extension
  • Add support for date patterns in update target
  • Add support for version patterns in URLs to update IU locations
  • Add support for setting an API baseline in EclipseBuildMojos
  • Add support for reading artifacts from global bundle pools
  • Add support for using maven repositories as P2 mirror
  • Add an option to print the java memory before/after mojo execution

... (truncated)

Commits
  • 105ab43 Perform 4.0.11 release
  • f845f79 Update Release Notes
  • 5a9fb8e make synchronization of classpath calculation more fine-grained
  • 5e5b061 add bndtools workspace template fragment
  • a416275 Do not print diff for features
  • da2ed1e Add a version report to target update mojo
  • 483cc67 Consider runbundles when computing dependencies
  • 099af7f extend bnd demo ws for .bndrun usecase
  • f7cef38 Support custom properties from bnd files and enhance the documentation
  • 6c0287c Add support for exporting bndruns in bndworkspace projects
  • Additional commits viewable in compare view

Updates org.eclipse.tycho:tycho-compiler-plugin from 4.0.10 to 4.0.11

Release notes

Sourced from org.eclipse.tycho:tycho-compiler-plugin's releases.

Tycho 4.0.11 has been released and is available from Maven Central repository.

🆕 https://github.com/eclipse-tycho/tycho/blob/tycho-4.0.11/RELEASE_NOTES.md 🏷️ https://github.com/eclipse-tycho/tycho/tree/tycho-4.0.11 👔 https://projects.eclipse.org/projects/technology.tycho/releases/4.0.11 🙏 contributors who contributed patches for this release:

  • Andreas Schwarz
  • Christoph Läubrich
  • Christoph Rueger
  • dependabot[bot]
  • kysmith-csg
  • Michael Keppler
  • Sebastian Ratz
  • Zlika
  • Александър Куртаков

💰 we would like to also thank for sponsoring contributions in this release and the Eclipse IDE Workingroup for funding the release work

and thanks to everyone who helped us with testing the snapshot version.

Regards,

The Tycho Team

What's Changed

... (truncated)

Changelog

Sourced from org.eclipse.tycho:tycho-compiler-plugin's changelog.

4.0.11

Important Notice: There was a bug in previous versions of Tycho that has lead to the situation that projects are resolved with a higher bundle required java version even though this was not explicitly allowed. This could also lead to the case that even though tests should run with a lower java version as the build, actually the build jvm defined the minimum runtime.

This is now fixed, but might result in build previously working now fail due to the constraints not properly checked before, to fix those builds you have the following opportunities:

  1. Update the required execution environment (BREE) of your bundle to those of the dependencies (recommended)
  2. If you still want to target older BREE for example because you support older versions of the dependencies, you can set the BREE in your target configuration or target platform file to express the latest runtime requirements you are targeting.
<plugin>
	<groupId>org.eclipse.tycho</groupId>
	<artifactId>target-platform-configuration</artifactId>
	<version>${tycho-version}</version>
	<configuration>
		<executionEnvironment>JavaSE-17</executionEnvironment>
	</configuration>
</plugin>
  1. As an alternative you can disable execution environment checks all together (not recommended)
<plugin>
	<groupId>org.eclipse.tycho</groupId>
	<artifactId>target-platform-configuration</artifactId>
	<version>${tycho-version}</version>
	<configuration>
		<resolveWithExecutionEnvironmentConstraints>false</resolveWithExecutionEnvironmentConstraints>
	</configuration>
</plugin>

Please note: This all does not influence the compile-target, that is always derived from the BREE regardless of resolution if not otherwise configured.

backports:

  • Create new tycho-cleancode plugin for automated code cleanups
  • Create tycho-baseline:check-dependencies mojo to validate versions
  • Add a version report to target update mojo
  • Add support for exporting bndruns in bndworkspace projects
  • Add support for building sub-bundle with tycho-bnd-extension
  • Add support for date patterns in update target
  • Add support for version patterns in URLs to update IU locations
  • Add support for setting an API baseline in EclipseBuildMojos
  • Add support for reading artifacts from global bundle pools
  • Add support for using maven repositories as P2 mirror
  • Add an option to print the java memory before/after mojo execution

... (truncated)

Commits
  • 105ab43 Perform 4.0.11 release
  • f845f79 Update Release Notes
  • 5a9fb8e make synchronization of classpath calculation more fine-grained
  • 5e5b061 add bndtools workspace template fragment
  • a416275 Do not print diff for features
  • da2ed1e Add a version report to target update mojo
  • 483cc67 Consider runbundles when computing dependencies
  • 099af7f extend bnd demo ws for .bndrun usecase
  • f7cef38 Support custom properties from bnd files and enhance the documentation
  • 6c0287c Add support for exporting bndruns in bndworkspace projects
  • Additional commits viewable in compare view

Updates org.eclipse.tycho:tycho-surefire-plugin from 4.0.10 to 4.0.11

Updates org.eclipse.tycho:tycho-versions-plugin from 4.0.10 to 4.0.11

Release notes

Sourced from org.eclipse.tycho:tycho-versions-plugin's releases.

Tycho 4.0.11 has been released and is available from Maven Central repository.

🆕 https://github.com/eclipse-tycho/tycho/blob/tycho-4.0.11/RELEASE_NOTES.md 🏷️ https://github.com/eclipse-tycho/tycho/tree/tycho-4.0.11 👔 https://projects.eclipse.org/projects/technology.tycho/releases/4.0.11 🙏 contributors who contributed patches for this release:

  • Andreas Schwarz
  • Christoph Läubrich
  • Christoph Rueger
  • dependabot[bot]
  • kysmith-csg
  • Michael Keppler
  • Sebastian Ratz
  • Zlika
  • Александър Куртаков

💰 we would like to also thank for sponsoring contributions in this release and the Eclipse IDE Workingroup for funding the release work

and thanks to everyone who helped us with testing the snapshot version.

Regards,

The Tycho Team

What's Changed

... (truncated)

Changelog

Sourced from org.eclipse.tycho:tycho-versions-plugin's changelog.

4.0.11

Important Notice: There was a bug in previous versions of Tycho that has lead to the situation that projects are resolved with a higher bundle required java version even though this was not explicitly allowed. This could also lead to the case that even though tests should run with a lower java version as the build, actually the build jvm defined the minimum runtime.

This is now fixed, but might result in build previously working now fail due to the constraints not properly checked before, to fix those builds you have the following opportunities:

  1. Update the required execution environment (BREE) of your bundle to those of the dependencies (recommended)
  2. If you still want to target older BREE for example because you support older versions of the dependencies, you can set the BREE in your target configuration or target platform file to express the latest runtime requirements you are targeting.
<plugin>
	<groupId>org.eclipse.tycho</groupId>
	<artifactId>target-platform-configuration</artifactId>
	<version>${tycho-version}</version>
	<configuration>
		<executionEnvironment>JavaSE-17</executionEnvironment>
	</configuration>
</plugin>
  1. As an alternative you can disable execution environment checks all together (not recommended)
<plugin>
	<groupId>org.eclipse.tycho</groupId>
	<artifactId>target-platform-configuration</artifactId>
	<version>${tycho-version}</version>
	<configuration>
		<resolveWithExecutionEnvironmentConstraints>false</resolveWithExecutionEnvironmentConstraints>
	</configuration>
</plugin>

Please note: This all does not influence the compile-target, that is always derived from the BREE regardless of resolution if not otherwise configured.

backports:

  • Create new tycho-cleancode plugin for automated code cleanups
  • Create tycho-baseline:check-dependencies mojo to validate versions
  • Add a version report to target update mojo
  • Add support for exporting bndruns in bndworkspace projects
  • Add support for building sub-bundle with tycho-bnd-extension
  • Add support for date patterns in update target
  • Add support for version patterns in URLs to update IU locations
  • Add support for setting an API baseline in EclipseBuildMojos
  • Add support for reading artifacts from global bundle pools
  • Add support for using maven repositories as P2 mirror
  • Add an option to print the java memory before/after mojo execution

... (truncated)

Commits
  • 105ab43 Perform 4.0.11 release
  • f845f79 Update Release Notes
  • 5a9fb8e make synchronization of classpath calculation more fine-grained
  • 5e5b061 add bndtools workspace template fragment
  • a416275 Do not print diff for features
  • da2ed1e Add a version report to target update mojo
  • 483cc67 Consider runbundles when computing dependencies
  • 099af7f extend bnd demo ws for .bndrun usecase
  • f7cef38 Support custom properties from bnd files and enhance the documentation
  • 6c0287c Add support for exporting bndruns in bndworkspace projects
  • Additional commits viewable in compare view

Updates org.eclipse.tycho:tycho-p2-plugin from 4.0.10 to 4.0.11

Release notes

Sourced from org.eclipse.tycho:tycho-p2-plugin's releases.

Tycho 4.0.11 has been released and is available from Maven Central repository.

🆕 https://github.com/eclipse-tycho/tycho/blob/tycho-4.0.11/RELEASE_NOTES.md 🏷️ https://github.com/eclipse-tycho/tycho/tree/tycho-4.0.11 👔 https://projects.eclipse.org/projects/technology.tycho/releases/4.0.11 🙏 contributors who contributed patches for this release:

  • Andreas Schwarz
  • Christoph Läubrich
  • Christoph Rueger
  • dependabot[bot]
  • kysmith-csg
  • Michael Keppler
  • Sebastian Ratz
  • Zlika
  • Александър Куртаков

💰 we would like to also thank for sponsoring contributions in this release and the Description has been truncated

Bumps `tycho-version` from 4.0.10 to 4.0.11.

Updates `org.eclipse.tycho.extras:tycho-sourceref-jgit` from 4.0.10 to 4.0.11

Updates `org.eclipse.tycho:tycho-maven-plugin` from 4.0.10 to 4.0.11
- [Release notes](https://github.com/eclipse-tycho/tycho/releases)
- [Changelog](https://github.com/eclipse-tycho/tycho/blob/tycho-4.0.11/RELEASE_NOTES.md)
- [Commits](eclipse-tycho/tycho@tycho-4.0.10...tycho-4.0.11)

Updates `org.eclipse.tycho:target-platform-configuration` from 4.0.10 to 4.0.11
- [Release notes](https://github.com/eclipse-tycho/tycho/releases)
- [Changelog](https://github.com/eclipse-tycho/tycho/blob/tycho-4.0.11/RELEASE_NOTES.md)
- [Commits](eclipse-tycho/tycho@tycho-4.0.10...tycho-4.0.11)

Updates `org.eclipse.tycho:tycho-source-plugin` from 4.0.10 to 4.0.11
- [Release notes](https://github.com/eclipse-tycho/tycho/releases)
- [Changelog](https://github.com/eclipse-tycho/tycho/blob/tycho-4.0.11/RELEASE_NOTES.md)
- [Commits](eclipse-tycho/tycho@tycho-4.0.10...tycho-4.0.11)

Updates `org.eclipse.tycho:tycho-compiler-plugin` from 4.0.10 to 4.0.11
- [Release notes](https://github.com/eclipse-tycho/tycho/releases)
- [Changelog](https://github.com/eclipse-tycho/tycho/blob/tycho-4.0.11/RELEASE_NOTES.md)
- [Commits](eclipse-tycho/tycho@tycho-4.0.10...tycho-4.0.11)

Updates `org.eclipse.tycho:tycho-surefire-plugin` from 4.0.10 to 4.0.11

Updates `org.eclipse.tycho:tycho-versions-plugin` from 4.0.10 to 4.0.11
- [Release notes](https://github.com/eclipse-tycho/tycho/releases)
- [Changelog](https://github.com/eclipse-tycho/tycho/blob/tycho-4.0.11/RELEASE_NOTES.md)
- [Commits](eclipse-tycho/tycho@tycho-4.0.10...tycho-4.0.11)

Updates `org.eclipse.tycho:tycho-p2-plugin` from 4.0.10 to 4.0.11
- [Release notes](https://github.com/eclipse-tycho/tycho/releases)
- [Changelog](https://github.com/eclipse-tycho/tycho/blob/tycho-4.0.11/RELEASE_NOTES.md)
- [Commits](eclipse-tycho/tycho@tycho-4.0.10...tycho-4.0.11)

Updates `org.eclipse.tycho:tycho-packaging-plugin` from 4.0.10 to 4.0.11
- [Release notes](https://github.com/eclipse-tycho/tycho/releases)
- [Changelog](https://github.com/eclipse-tycho/tycho/blob/tycho-4.0.11/RELEASE_NOTES.md)
- [Commits](eclipse-tycho/tycho@tycho-4.0.10...tycho-4.0.11)

Updates `org.eclipse.tycho:tycho-gpg-plugin` from 4.0.10 to 4.0.11
- [Release notes](https://github.com/eclipse-tycho/tycho/releases)
- [Changelog](https://github.com/eclipse-tycho/tycho/blob/tycho-4.0.11/RELEASE_NOTES.md)
- [Commits](eclipse-tycho/tycho@tycho-4.0.10...tycho-4.0.11)

Updates `org.eclipse.tycho:tycho-p2-publisher-plugin` from 4.0.10 to 4.0.11
- [Release notes](https://github.com/eclipse-tycho/tycho/releases)
- [Changelog](https://github.com/eclipse-tycho/tycho/blob/tycho-4.0.11/RELEASE_NOTES.md)
- [Commits](eclipse-tycho/tycho@tycho-4.0.10...tycho-4.0.11)

Updates `org.eclipse.tycho:tycho-p2-repository-plugin` from 4.0.10 to 4.0.11
- [Release notes](https://github.com/eclipse-tycho/tycho/releases)
- [Changelog](https://github.com/eclipse-tycho/tycho/blob/tycho-4.0.11/RELEASE_NOTES.md)
- [Commits](eclipse-tycho/tycho@tycho-4.0.10...tycho-4.0.11)

---
updated-dependencies:
- dependency-name: org.eclipse.tycho.extras:tycho-sourceref-jgit
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.eclipse.tycho:tycho-maven-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.eclipse.tycho:target-platform-configuration
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.eclipse.tycho:tycho-source-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.eclipse.tycho:tycho-compiler-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.eclipse.tycho:tycho-surefire-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.eclipse.tycho:tycho-versions-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.eclipse.tycho:tycho-p2-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.eclipse.tycho:tycho-packaging-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.eclipse.tycho:tycho-gpg-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.eclipse.tycho:tycho-p2-publisher-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.eclipse.tycho:tycho-p2-repository-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Feb 5, 2025
@akurtakov akurtakov merged commit 2008d61 into master Feb 5, 2025
3 checks passed
@dependabot dependabot bot deleted the dependabot/maven/tycho-version-4.0.11 branch February 5, 2025 09:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file java Pull requests that update Java code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant