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.2 to 4.0.4 #338

Merged
merged 1 commit into from
Dec 7, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 8, 2023

Bumps tycho-version from 4.0.2 to 4.0.4.
Updates org.eclipse.tycho:tycho-maven-plugin from 4.0.2 to 4.0.4

Release notes

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

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

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

  • Christoph Läubrich
  • dependabot[bot]
  • Gilles
  • Hannes Wellmann
  • Lars Vogel
  • Marco Lehmann-Mörz
  • Martin D'Aloia
  • Pierre-Charles David
  • Tobias Hahnen
  • Vasili Gulevich
  • Александър Куртаков

💰 we would like to also thank the Eclipse IDE Workinggroup for sponsoring the releng work in this release

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.

Eclipse Tycho: Release notes

This page describes the noteworthy improvements provided by each release of Eclipse Tycho. If you are reading this in the browser, then you can quickly jump to specific versions by using the rightmost button above the headline: grafik

5.0.0 (under development)

new tycho-repository-plugin

Tycho now contains a new tycho-repository-plugin that can be used to package OSGi repositories.

new option to include referenced repositories when resolving the target platform

Repositories can contain references to other repositories (e.g. to find additional dependencies), from now on there is a new option to also consider these references:

<plugin>
	<groupId>org.eclipse.tycho</groupId>
	<artifactId>target-platform-configuration</artifactId>
	<version>${tycho-version}</version>
	<configuration>
		... other configuration options ...
		<referencedRepositoryMode>include</referencedRepositoryMode>
	</configuration>
</plugin>

new option to filter added repository-references when assembling a p2-repository

If filtering provided artifacts is enabled, the repository references automatically added to a assembled p2-repository (via tycho-p2-repository-plugin's addIUTargetRepositoryReferences or addPomRepositoryReferences) can now be filtered by their location using exclusion and inclusion patterns and therefore allows more fine-grained control which references are added. Additionally the automatically added references can be filter based on if they provide any of the filtered units or not. If addOnlyProviding is true repositories that don't provide any filtered unit are not added to the assembled repo.

<plugin>
	<groupId>org.eclipse.tycho</groupId>
	<artifactId>tycho-p2-repository-plugin</artifactId>
	<version>${tycho-version}</version>
	<configuration>
		... other configuration options ...
		<repositoryReferenceFilter>
			<addOnlyProviding>true</addOnlyProviding>
			<exclude>
				<location>https://foo.bar.org/hidden/**</location>
				<location> %regex[http(s)?:\/\/foo\.bar\.org\/secret\/.*]</location>
				<location>![https://foo.bar.org/**]</location>
			</exclude>
		</repositoryReferenceFilter>
</tr></table> 

... (truncated)

Commits
  • 868454b Update versions for release 4.0.4
  • 272d217 Bump org.junit.jupiter:junit-jupiter from 5.9.3 to 5.10.1
  • 6c1d589 Fix possible NPE in AbstractApplication as seen in integration tests
  • b2797bc Add stripped down pdebuild bundle as a testcase
  • 34388f5 Set the real output location for embedded jars in ApiAnalysis
  • f5ba496 Bump org.codehaus.plexus:plexus-archiver from 4.8.0 to 4.9.0
  • 849778a Bump org.junit.jupiter:junit-jupiter-api from 5.9.3 to 5.10.1
  • d0479eb Bump surefire-version from 3.2.1 to 3.2.2
  • 0e0a174 Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.6.0 to 3.6.2
  • 1d8b72e Bump pluginToolsVersion from 3.10.1 to 3.10.2
  • Additional commits viewable in compare view

Updates org.eclipse.tycho:target-platform-configuration from 4.0.2 to 4.0.4

Release notes

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

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

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

  • Christoph Läubrich
  • dependabot[bot]
  • Gilles
  • Hannes Wellmann
  • Lars Vogel
  • Marco Lehmann-Mörz
  • Martin D'Aloia
  • Pierre-Charles David
  • Tobias Hahnen
  • Vasili Gulevich
  • Александър Куртаков

💰 we would like to also thank the Eclipse IDE Workinggroup for sponsoring the releng work in this release

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.

Eclipse Tycho: Release notes

This page describes the noteworthy improvements provided by each release of Eclipse Tycho. If you are reading this in the browser, then you can quickly jump to specific versions by using the rightmost button above the headline: grafik

5.0.0 (under development)

new tycho-repository-plugin

Tycho now contains a new tycho-repository-plugin that can be used to package OSGi repositories.

new option to include referenced repositories when resolving the target platform

Repositories can contain references to other repositories (e.g. to find additional dependencies), from now on there is a new option to also consider these references:

<plugin>
	<groupId>org.eclipse.tycho</groupId>
	<artifactId>target-platform-configuration</artifactId>
	<version>${tycho-version}</version>
	<configuration>
		... other configuration options ...
		<referencedRepositoryMode>include</referencedRepositoryMode>
	</configuration>
</plugin>

new option to filter added repository-references when assembling a p2-repository

If filtering provided artifacts is enabled, the repository references automatically added to a assembled p2-repository (via tycho-p2-repository-plugin's addIUTargetRepositoryReferences or addPomRepositoryReferences) can now be filtered by their location using exclusion and inclusion patterns and therefore allows more fine-grained control which references are added. Additionally the automatically added references can be filter based on if they provide any of the filtered units or not. If addOnlyProviding is true repositories that don't provide any filtered unit are not added to the assembled repo.

<plugin>
	<groupId>org.eclipse.tycho</groupId>
	<artifactId>tycho-p2-repository-plugin</artifactId>
	<version>${tycho-version}</version>
	<configuration>
		... other configuration options ...
		<repositoryReferenceFilter>
			<addOnlyProviding>true</addOnlyProviding>
			<exclude>
				<location>https://foo.bar.org/hidden/**</location>
				<location> %regex[http(s)?:\/\/foo\.bar\.org\/secret\/.*]</location>
				<location>![https://foo.bar.org/**]</location>
			</exclude>
		</repositoryReferenceFilter>
</tr></table> 

... (truncated)

Commits
  • 868454b Update versions for release 4.0.4
  • 272d217 Bump org.junit.jupiter:junit-jupiter from 5.9.3 to 5.10.1
  • 6c1d589 Fix possible NPE in AbstractApplication as seen in integration tests
  • b2797bc Add stripped down pdebuild bundle as a testcase
  • 34388f5 Set the real output location for embedded jars in ApiAnalysis
  • f5ba496 Bump org.codehaus.plexus:plexus-archiver from 4.8.0 to 4.9.0
  • 849778a Bump org.junit.jupiter:junit-jupiter-api from 5.9.3 to 5.10.1
  • d0479eb Bump surefire-version from 3.2.1 to 3.2.2
  • 0e0a174 Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.6.0 to 3.6.2
  • 1d8b72e Bump pluginToolsVersion from 3.10.1 to 3.10.2
  • Additional commits viewable in compare view

Updates org.eclipse.tycho:tycho-packaging-plugin from 4.0.2 to 4.0.4

Release notes

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

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

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

  • Christoph Läubrich
  • dependabot[bot]
  • Gilles
  • Hannes Wellmann
  • Lars Vogel
  • Marco Lehmann-Mörz
  • Martin D'Aloia
  • Pierre-Charles David
  • Tobias Hahnen
  • Vasili Gulevich
  • Александър Куртаков

💰 we would like to also thank the Eclipse IDE Workinggroup for sponsoring the releng work in this release

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-packaging-plugin's changelog.

Eclipse Tycho: Release notes

This page describes the noteworthy improvements provided by each release of Eclipse Tycho. If you are reading this in the browser, then you can quickly jump to specific versions by using the rightmost button above the headline: grafik

5.0.0 (under development)

new tycho-repository-plugin

Tycho now contains a new tycho-repository-plugin that can be used to package OSGi repositories.

new option to include referenced repositories when resolving the target platform

Repositories can contain references to other repositories (e.g. to find additional dependencies), from now on there is a new option to also consider these references:

<plugin>
	<groupId>org.eclipse.tycho</groupId>
	<artifactId>target-platform-configuration</artifactId>
	<version>${tycho-version}</version>
	<configuration>
		... other configuration options ...
		<referencedRepositoryMode>include</referencedRepositoryMode>
	</configuration>
</plugin>

new option to filter added repository-references when assembling a p2-repository

If filtering provided artifacts is enabled, the repository references automatically added to a assembled p2-repository (via tycho-p2-repository-plugin's addIUTargetRepositoryReferences or addPomRepositoryReferences) can now be filtered by their location using exclusion and inclusion patterns and therefore allows more fine-grained control which references are added. Additionally the automatically added references can be filter based on if they provide any of the filtered units or not. If addOnlyProviding is true repositories that don't provide any filtered unit are not added to the assembled repo.

<plugin>
	<groupId>org.eclipse.tycho</groupId>
	<artifactId>tycho-p2-repository-plugin</artifactId>
	<version>${tycho-version}</version>
	<configuration>
		... other configuration options ...
		<repositoryReferenceFilter>
			<addOnlyProviding>true</addOnlyProviding>
			<exclude>
				<location>https://foo.bar.org/hidden/**</location>
				<location> %regex[http(s)?:\/\/foo\.bar\.org\/secret\/.*]</location>
				<location>![https://foo.bar.org/**]</location>
			</exclude>
		</repositoryReferenceFilter>
</tr></table> 

... (truncated)

Commits
  • 868454b Update versions for release 4.0.4
  • 272d217 Bump org.junit.jupiter:junit-jupiter from 5.9.3 to 5.10.1
  • 6c1d589 Fix possible NPE in AbstractApplication as seen in integration tests
  • b2797bc Add stripped down pdebuild bundle as a testcase
  • 34388f5 Set the real output location for embedded jars in ApiAnalysis
  • f5ba496 Bump org.codehaus.plexus:plexus-archiver from 4.8.0 to 4.9.0
  • 849778a Bump org.junit.jupiter:junit-jupiter-api from 5.9.3 to 5.10.1
  • d0479eb Bump surefire-version from 3.2.1 to 3.2.2
  • 0e0a174 Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.6.0 to 3.6.2
  • 1d8b72e Bump pluginToolsVersion from 3.10.1 to 3.10.2
  • Additional commits viewable in compare view

Updates org.eclipse.tycho:tycho-surefire-plugin from 4.0.2 to 4.0.4

Updates org.eclipse.tycho:tycho-compiler-plugin from 4.0.2 to 4.0.4

Release notes

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

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

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

  • Christoph Läubrich
  • dependabot[bot]
  • Gilles
  • Hannes Wellmann
  • Lars Vogel
  • Marco Lehmann-Mörz
  • Martin D'Aloia
  • Pierre-Charles David
  • Tobias Hahnen
  • Vasili Gulevich
  • Александър Куртаков

💰 we would like to also thank the Eclipse IDE Workinggroup for sponsoring the releng work in this release

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.

Eclipse Tycho: Release notes

This page describes the noteworthy improvements provided by each release of Eclipse Tycho. If you are reading this in the browser, then you can quickly jump to specific versions by using the rightmost button above the headline: grafik

5.0.0 (under development)

new tycho-repository-plugin

Tycho now contains a new tycho-repository-plugin that can be used to package OSGi repositories.

new option to include referenced repositories when resolving the target platform

Repositories can contain references to other repositories (e.g. to find additional dependencies), from now on there is a new option to also consider these references:

<plugin>
	<groupId>org.eclipse.tycho</groupId>
	<artifactId>target-platform-configuration</artifactId>
	<version>${tycho-version}</version>
	<configuration>
		... other configuration options ...
		<referencedRepositoryMode>include</referencedRepositoryMode>
	</configuration>
</plugin>

new option to filter added repository-references when assembling a p2-repository

If filtering provided artifacts is enabled, the repository references automatically added to a assembled p2-repository (via tycho-p2-repository-plugin's addIUTargetRepositoryReferences or addPomRepositoryReferences) can now be filtered by their location using exclusion and inclusion patterns and therefore allows more fine-grained control which references are added. Additionally the automatically added references can be filter based on if they provide any of the filtered units or not. If addOnlyProviding is true repositories that don't provide any filtered unit are not added to the assembled repo.

<plugin>
	<groupId>org.eclipse.tycho</groupId>
	<artifactId>tycho-p2-repository-plugin</artifactId>
	<version>${tycho-version}</version>
	<configuration>
		... other configuration options ...
		<repositoryReferenceFilter>
			<addOnlyProviding>true</addOnlyProviding>
			<exclude>
				<location>https://foo.bar.org/hidden/**</location>
				<location> %regex[http(s)?:\/\/foo\.bar\.org\/secret\/.*]</location>
				<location>![https://foo.bar.org/**]</location>
			</exclude>
		</repositoryReferenceFilter>
</tr></table> 

... (truncated)

Commits
  • 868454b Update versions for release 4.0.4
  • 272d217 Bump org.junit.jupiter:junit-jupiter from 5.9.3 to 5.10.1
  • 6c1d589 Fix possible NPE in AbstractApplication as seen in integration tests
  • b2797bc Add stripped down pdebuild bundle as a testcase
  • 34388f5 Set the real output location for embedded jars in ApiAnalysis
  • f5ba496 Bump org.codehaus.plexus:plexus-archiver from 4.8.0 to 4.9.0
  • 849778a Bump org.junit.jupiter:junit-jupiter-api from 5.9.3 to 5.10.1
  • d0479eb Bump surefire-version from 3.2.1 to 3.2.2
  • 0e0a174 Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.6.0 to 3.6.2
  • 1d8b72e Bump pluginToolsVersion from 3.10.1 to 3.10.2
  • Additional commits viewable in compare view

Updates org.eclipse.tycho:tycho-p2-plugin from 4.0.2 to 4.0.4

Release notes

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

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

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

  • Christoph Läubrich
  • dependabot[bot]
  • Gilles
  • Hannes Wellmann
  • Lars Vogel
  • Marco Lehmann-Mörz
  • Martin D'Aloia
  • Pierre-Charles David
  • Tobias Hahnen
  • Vasili Gulevich
  • Александър Куртаков

💰 we would like to also thank the Eclipse IDE Workinggroup for sponsoring the releng work in this release

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-p2-plugin's changelog.

Eclipse Tycho: Release notes

This page describes the noteworthy improvements provided by each release of Eclipse Tycho. If you are reading this in the browser, then you can quickly jump to specific versions by using the rightmost button above the headline: grafik

5.0.0 (under development)

new tycho-repository-plugin

Tycho now contains a new tycho-repository-plugin that can be used to package OSGi repositories.

new option to include referenced repositories when resolving the target platform

Repositories can contain references to other repositories (e.g. to find additional dependencies), from now on there is a new option to also consider these references:

<plugin>
	<groupId>org.eclipse.tycho</groupId>
	<artifactId>target-platform-configuration</artifactId>
	<version>${tycho-version}</version>
	<configuration>
		... other configuration options ...
		<referencedRepositoryMode>include</referencedRepositoryMode>
	</configuration>
</plugin>

new option to filter added repository-references when assembling a p2-repository

If filtering provided artifacts is enabled, the repository references automatically added to a assembled p2-repository (via tycho-p2-repository-plugin's addIUTargetRepositoryReferences or addPomRepositoryReferences) can now be filtered by their location using exclusion and inclusion patterns and therefore allows more fine-grained control which references are added. Additionally the automatically added references can be filter based on if they provide any of the filtered units or not. If addOnlyProviding is true repositories that don't provide any filtered unit are not added to the assembled repo.

<plugin>
	<groupId>org.eclipse.tycho</groupId>
	<artifactId>tycho-p2-repository-plugin</artifactId>
	<version>${tycho-version}</version>
	<configuration>
		... other configuration options ...
		<repositoryReferenceFilter>
			<addOnlyProviding>true</addOnlyProviding>
			<exclude>
				<location>https://foo.bar.org/hidden/**</location>
				<location> %regex[http(s)?:\/\/foo\.bar\.org\/secret\/.*]</location>
				<location>![https://foo.bar.org/**]</location>
			</exclude>
		</repositoryReferenceFilter>
</tr></table> 

... (truncated)

Commits
  • 868454b Update versions for release 4.0.4
  • 272d217 Bump org.junit.jupiter:junit-jupiter from 5.9.3 to 5.10.1
  • 6c1d589 Fix possible NPE in AbstractApplication as seen in integration tests
  • b2797bc Add stripped down pdebuild bundle as a testcase
  • 34388f5 Set the real output location for embedded jars in ApiAnalysis
  • f5ba496 Bump org.codehaus.plexus:plexus-archiver from 4.8.0 to 4.9.0
  • 849778a Bump org.junit.jupiter:junit-jupiter-api from 5.9.3 to 5.10.1
  • d0479eb Bump surefire-version from 3.2.1 to 3.2.2
  • 0e0a174 Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.6.0 to 3.6.2
  • 1d8b72e Bump pluginToolsVersion from 3.10.1 to 3.10.2
  • Additional commits viewable in compare view

Updates org.eclipse.tycho:tycho-versions-plugin from 4.0.2 to 4.0.4

Release notes

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

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

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

  • Christoph Läubrich
  • dependabot[bot]
  • Gilles
  • Hannes Wellmann
  • Lars Vogel
  • Marco Lehmann-Mörz
  • Martin D'Aloia
  • Pierre-Charles David
  • Tobias Hahnen
  • Vasili Gulevich
  • Александър Куртаков

💰 we would like to also thank the Eclipse IDE Workinggroup for sponsoring the releng work in this release

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

Regards,

The Tycho Team

What's Changed

Bumps `tycho-version` from 4.0.2 to 4.0.4.

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

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

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

Updates `org.eclipse.tycho:tycho-surefire-plugin` from 4.0.2 to 4.0.4

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

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

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

---
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:target-platform-configuration
  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-surefire-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-p2-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
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Nov 8, 2023
@adangel adangel merged commit f84a45f into develop Dec 7, 2023
8 checks passed
@adangel adangel deleted the dependabot/maven/tycho-version-4.0.4 branch December 7, 2023 18:06
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.

None yet

1 participant