Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps tycho-version from 4.0.5 to 4.0.12.
Updates org.eclipse.tycho:tycho-maven-plugin from 4.0.5 to 4.0.12

Release notes

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

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

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

  • Christian Dietrich
  • Christoph Läubrich
  • Christoph Rueger
  • dependabot[bot]
  • zladdi

💰 we would like to also thank 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

Important Notice: There was a bug in previous versions of Tycho regarding the handling of maven target locations, it might be that you now get some more content or even some less (most noticeable optional artifacts are ignored now) or slightly different versions when using dependency inclusion.

What's Changed

Full Changelog: eclipse-tycho/tycho@tycho-4.0.11...tycho-4.0.12

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

... (truncated)

Changelog

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

4.0.12

Support for JUnit 5.12

As there are some breaking changes in JUnit 5.12 Tycho now adds a new junit512 provider.

backports:

  • Remove signatures from wrapped source bundles
  • Improve error handling for maven-target locations
  • Fix collection of maven target locations
  • Improve bnd integration
  • Align bnd mojos with maven-surefire / maven-compiler plugin
  • Add support to filter files to perform cleanup
  • Do not collect dependencies for classified artifacts

Important Notice: There was a bug in previous versions of Tycho regarding the handling of maven target locations, it might be that you now get some more content or even some less (most noticeable optional artifacts are ignored now) or slightly different versions when using dependency inclusion.

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>
</tr></table> 

... (truncated)

Commits
  • ff2f4fa Perform 4.0.12 release
  • af372a2 Update Release Notes for 4.0.12
  • 9535cbf Rename Testclass and comments in test
  • 1350b62 Move test code to own folder
  • 7181234 Add support for JUnit 5.12
  • 3c46bae Create test for junit 5.12 problems
  • dc618e9 Let the MavenDependencyCollector decide about the effective depth
  • 7c84b0e Read the repository from the ArtifactResult
  • 6ad6eb3 Use the new MavenDependencyCollector shared with m2e
  • 01d3803 Bump org.apache.maven.plugins:maven-compiler-plugin
  • Additional commits viewable in compare view

Updates org.eclipse.tycho:tycho-versions-plugin from 4.0.5 to 4.0.12

Release notes

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

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

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

  • Christian Dietrich
  • Christoph Läubrich
  • Christoph Rueger
  • dependabot[bot]
  • zladdi

💰 we would like to also thank 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

Important Notice: There was a bug in previous versions of Tycho regarding the handling of maven target locations, it might be that you now get some more content or even some less (most noticeable optional artifacts are ignored now) or slightly different versions when using dependency inclusion.

What's Changed

Full Changelog: eclipse-tycho/tycho@tycho-4.0.11...tycho-4.0.12

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

... (truncated)

Changelog

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

4.0.12

Support for JUnit 5.12

As there are some breaking changes in JUnit 5.12 Tycho now adds a new junit512 provider.

backports:

  • Remove signatures from wrapped source bundles
  • Improve error handling for maven-target locations
  • Fix collection of maven target locations
  • Improve bnd integration
  • Align bnd mojos with maven-surefire / maven-compiler plugin
  • Add support to filter files to perform cleanup
  • Do not collect dependencies for classified artifacts

Important Notice: There was a bug in previous versions of Tycho regarding the handling of maven target locations, it might be that you now get some more content or even some less (most noticeable optional artifacts are ignored now) or slightly different versions when using dependency inclusion.

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>
</tr></table> 

... (truncated)

Commits
  • ff2f4fa Perform 4.0.12 release
  • af372a2 Update Release Notes for 4.0.12
  • 9535cbf Rename Testclass and comments in test
  • 1350b62 Move test code to own folder
  • 7181234 Add support for JUnit 5.12
  • 3c46bae Create test for junit 5.12 problems
  • dc618e9 Let the MavenDependencyCollector decide about the effective depth
  • 7c84b0e Read the repository from the ArtifactResult
  • 6ad6eb3 Use the new MavenDependencyCollector shared with m2e
  • 01d3803 Bump org.apache.maven.plugins:maven-compiler-plugin
  • Additional commits viewable in compare view

Updates org.eclipse.tycho:tycho-compiler-plugin from 4.0.5 to 4.0.12

Release notes

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

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

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

  • Christian Dietrich
  • Christoph Läubrich
  • Christoph Rueger
  • dependabot[bot]
  • zladdi

💰 we would like to also thank 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

Important Notice: There was a bug in previous versions of Tycho regarding the handling of maven target locations, it might be that you now get some more content or even some less (most noticeable optional artifacts are ignored now) or slightly different versions when using dependency inclusion.

What's Changed

Full Changelog: eclipse-tycho/tycho@tycho-4.0.11...tycho-4.0.12

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

... (truncated)

Changelog

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

4.0.12

Support for JUnit 5.12

As there are some breaking changes in JUnit 5.12 Tycho now adds a new junit512 provider.

backports:

  • Remove signatures from wrapped source bundles
  • Improve error handling for maven-target locations
  • Fix collection of maven target locations
  • Improve bnd integration
  • Align bnd mojos with maven-surefire / maven-compiler plugin
  • Add support to filter files to perform cleanup
  • Do not collect dependencies for classified artifacts

Important Notice: There was a bug in previous versions of Tycho regarding the handling of maven target locations, it might be that you now get some more content or even some less (most noticeable optional artifacts are ignored now) or slightly different versions when using dependency inclusion.

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>
</tr></table> 

... (truncated)

Commits
  • ff2f4fa Perform 4.0.12 release
  • af372a2 Update Release Notes for 4.0.12
  • 9535cbf Rename Testclass and comments in test
  • 1350b62 Move test code to own folder
  • 7181234 Add support for JUnit 5.12
  • 3c46bae Create test for junit 5.12 problems
  • dc618e9 Let the MavenDependencyCollector decide about the effective depth
  • 7c84b0e Read the repository from the ArtifactResult
  • 6ad6eb3 Use the new MavenDependencyCollector shared with m2e
  • 01d3803 Bump org.apache.maven.plugins:maven-compiler-plugin
  • Additional commits viewable in compare view

Updates org.eclipse.tycho:tycho-ds-plugin from 4.0.5 to 4.0.12

Release notes

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

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

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

  • Christian Dietrich
  • Christoph Läubrich
  • Christoph Rueger
  • dependabot[bot]
  • zladdi

💰 we would like to also thank 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

Important Notice: There was a bug in previous versions of Tycho regarding the handling of maven target locations, it might be that you now get some more content or even some less (most noticeable optional artifacts are ignored now) or slightly different versions when using dependency inclusion.

What's Changed

Full Changelog: eclipse-tycho/tycho@tycho-4.0.11...tycho-4.0.12

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

... (truncated)

Changelog

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

4.0.12

Support for JUnit 5.12

As there are some breaking changes in JUnit 5.12 Tycho now adds a new junit512 provider.

backports:

  • Remove signatures from wrapped source bundles
  • Improve error handling for maven-target locations
  • Fix collection of maven target locations
  • Improve bnd integration
  • Align bnd mojos with maven-surefire / maven-compiler plugin
  • Add support to filter files to perform cleanup
  • Do not collect dependencies for classified artifacts

Important Notice: There was a bug in previous versions of Tycho regarding the handling of maven target locations, it might be that you now get some more content or even some less (most noticeable optional artifacts are ignored now) or slightly different versions when using dependency inclusion.

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>
</tr></table> 

... (truncated)

Commits
  • ff2f4fa Perform 4.0.12 release
  • af372a2 Update Release Notes for 4.0.12
  • 9535cbf Rename Testclass and comments in test
  • 1350b62 Move test code to own folder
  • 7181234 Add support for JUnit 5.12
  • 3c46bae Create test for junit 5.12 problems
  • dc618e9 Let the MavenDependencyCollector decide about the effective depth
  • 7c84b0e Read the repository from the ArtifactResult
  • 6ad6eb3 Use the new MavenDependencyCollector shared with m2e
  • 01d3803 Bump org.apache.maven.plugins:maven-compiler-plugin
  • Additional commits viewable in compare view

Updates org.eclipse.tycho:tycho-packaging-plugin from 4.0.5 to 4.0.12

Release notes

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

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

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

  • Christian Dietrich
  • Christoph Läubrich
  • Christoph Rueger
  • dependabot[bot]
  • zladdi

💰 we would like to also thank 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

Important Notice: There was a bug in previous versions of Tycho regarding the handling of maven target locations, it might be that you now get some more content or even some less (most noticeable optional artifacts are ignored now) or slightly different versions when using dependency inclusion.

What's Changed

Full Changelog: eclipse-tycho/tycho@tycho-4.0.11...tycho-4.0.12

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

... (truncated)

Changelog

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

4.0.12

Support for JUnit 5.12

As there are some breaking changes in JUnit 5.12 Tycho now adds a new junit512 provider.

backports:

  • Remove signatures from wrapped source bundles
  • Improve error handling for maven-target locations
  • Fix collection of maven target locations
  • Improve bnd integration
  • Align bnd mojos with maven-surefire / maven-compiler plugin
  • Add support to filter files to perform cleanup
  • Do not collect dependencies for classified artifacts

Important Notice: There was a bug in previous versions of Tycho regarding the handling of maven target locations, it might be that you now get some more content or even some less (most noticeable optional artifacts are ignored now) or slightly different versions when using dependency inclusion.

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>
</tr></table> 

... (truncated)

Commits
  • ff2f4fa Perform 4.0.12 release
  • af372a2 Update Release Notes for 4.0.12
  • 9535cbf Rename Testclass and comments in test
  • 1350b62 Move test code to own folder
  • 7181234 Add support for JUnit 5.12
  • 3c46bae Create test for junit 5.12 problems
  • dc618e9 Let the MavenDependencyCollector decide about the effective depth
  • 7c84b0e Read the repository from the ArtifactResult
  • 6ad6eb3 Use the new MavenDependencyCollector shared with m2e
  • 01d3803 Bump org.apache.maven.plugins:maven-compiler-plugin
  • Additional commits viewable in compare view

Updates org.eclipse.tycho:target-platform-configuration from 4.0.5 to 4.0.12

Release notes

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

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

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

  • Christian Dietrich
  • Christoph Läubrich
  • Christoph Rueger
  • dependabot[bot]
  • zladdi

💰 we would like to also thank 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

Important Notice: There was a bug in previous versions of Tycho regarding the handling of maven target locations, it might be that you now get some more content or even some less (most noticeable optional artifacts are ignored now) or slightly different versions when using dependency inclusion.

What's Changed

@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Feb 26, 2025
Copy link

github-actions bot commented Feb 26, 2025

Test Results

0 tests   0 ✅  0s ⏱️
0 suites  0 💤
0 files    0 ❌

Results for commit 48c6cb2.

♻️ This comment has been updated with latest results.

This comment has been minimized.

Bumps `tycho-version` from 4.0.5 to 4.0.12.

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

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

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

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

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

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

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

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

Updates `org.eclipse.tycho:tycho-surefire-plugin` from 4.0.5 to 4.0.12

---
updated-dependencies:
- dependency-name: org.eclipse.tycho:tycho-maven-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-compiler-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.eclipse.tycho:tycho-ds-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: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-p2-director-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
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/maven/tycho-version-4.0.12 branch from 82a38f8 to 48c6cb2 Compare March 11, 2025 07:09
Copy link

License summary

✔️ All licenses already successfully vetted.

Workflow run (with attached summary files):
https://github.com/eclipse-set/set/actions/runs/13782325768

Copy link
Contributor Author

dependabot bot commented on behalf of github May 26, 2025

Superseded by #1624.

@dependabot dependabot bot closed this May 26, 2025
@dependabot dependabot bot deleted the dependabot/maven/tycho-version-4.0.12 branch May 26, 2025 07:51
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.

0 participants