Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Jan 24, 2022

Bumps tycho-version from 2.5.0 to 2.6.0.
Updates target-platform-configuration from 2.5.0 to 2.6.0

Changelog

Sourced from target-platform-configuration's changelog.

2.6.0

Delayed classpath computation

Previously the classpath of a project was computed in the maven-setup phase, this has several restrictions. Tycho now delays the classpath computation to a later stage (initialize phase).

If you want to perform the classpath validation in the validate phase of your build you can force classpath computation with the following snippet:

<plugin>
	<groupId>org.eclipse.tycho</groupId>
	<artifactId>tycho-compiler-plugin</artifactId>
	<version>${tycho.version}</version>
	<executions>
		<execution>
			<id>verify-classpath</id>
			<phase>validate</phase>
			<goals>
				<goal>validate-classpath</goal>
			</goals>
			<configuration>
			</configuration>
		</execution>
	</executions>
</plugin>

Support for generation of a feature from a maven target-location template

Tycho now support the m2e feature to generate a feature from a maven target location.

Support for nested targets

Tycho now supports nested target locations.

An example could be found here.

Support for pom dependencies in maven target locations

Tycho now supports pom dependencies inside maven target locations.

Example:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<?pde version="3.8"?>
<target name="with-pom-dependency">
   <locations>
      <location includeSource="true" missingManifest="generate" type="Maven">
         <dependencies>
            <dependency>
               <groupId>com.sun.xml.ws</groupId>
               <artifactId>jaxws-ri</artifactId>
</tr></table> 

... (truncated)

Commits
  • 7a04b98 Prepare Tycho 2.6.0 release
  • cf98ee4 Fix #496 ResolutionArguments#hashcode is not stable
  • 5ca5155 - Update release notes to reflect the release on this branch
  • 1fe29d7 Update to maven-fluido-skin 1.10.0
  • a3733cb Bump doxia-module-markdown from 1.9.1 to 1.11.1
  • e1aae1d Bump maven-site-plugin from 3.9.1 to 3.10.0
  • a3d6f1e Bump plexusVersion from 2.1.0 to 2.1.1
  • 3039e08 Fix typos
  • bd3fe97 Merge pull request #446 from laeubi/adjust_for_m2e
  • e072a85 Adjust to recent m2e changes regarding DependencyDepth
  • Additional commits viewable in compare view

Updates tycho-compiler-plugin from 2.5.0 to 2.6.0

Changelog

Sourced from tycho-compiler-plugin's changelog.

2.6.0

Delayed classpath computation

Previously the classpath of a project was computed in the maven-setup phase, this has several restrictions. Tycho now delays the classpath computation to a later stage (initialize phase).

If you want to perform the classpath validation in the validate phase of your build you can force classpath computation with the following snippet:

<plugin>
	<groupId>org.eclipse.tycho</groupId>
	<artifactId>tycho-compiler-plugin</artifactId>
	<version>${tycho.version}</version>
	<executions>
		<execution>
			<id>verify-classpath</id>
			<phase>validate</phase>
			<goals>
				<goal>validate-classpath</goal>
			</goals>
			<configuration>
			</configuration>
		</execution>
	</executions>
</plugin>

Support for generation of a feature from a maven target-location template

Tycho now support the m2e feature to generate a feature from a maven target location.

Support for nested targets

Tycho now supports nested target locations.

An example could be found here.

Support for pom dependencies in maven target locations

Tycho now supports pom dependencies inside maven target locations.

Example:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<?pde version="3.8"?>
<target name="with-pom-dependency">
   <locations>
      <location includeSource="true" missingManifest="generate" type="Maven">
         <dependencies>
            <dependency>
               <groupId>com.sun.xml.ws</groupId>
               <artifactId>jaxws-ri</artifactId>
</tr></table> 

... (truncated)

Commits
  • 7a04b98 Prepare Tycho 2.6.0 release
  • cf98ee4 Fix #496 ResolutionArguments#hashcode is not stable
  • 5ca5155 - Update release notes to reflect the release on this branch
  • 1fe29d7 Update to maven-fluido-skin 1.10.0
  • a3733cb Bump doxia-module-markdown from 1.9.1 to 1.11.1
  • e1aae1d Bump maven-site-plugin from 3.9.1 to 3.10.0
  • a3d6f1e Bump plexusVersion from 2.1.0 to 2.1.1
  • 3039e08 Fix typos
  • bd3fe97 Merge pull request #446 from laeubi/adjust_for_m2e
  • e072a85 Adjust to recent m2e changes regarding DependencyDepth
  • Additional commits viewable in compare view

Updates tycho-maven-plugin from 2.5.0 to 2.6.0

Changelog

Sourced from tycho-maven-plugin's changelog.

2.6.0

Delayed classpath computation

Previously the classpath of a project was computed in the maven-setup phase, this has several restrictions. Tycho now delays the classpath computation to a later stage (initialize phase).

If you want to perform the classpath validation in the validate phase of your build you can force classpath computation with the following snippet:

<plugin>
	<groupId>org.eclipse.tycho</groupId>
	<artifactId>tycho-compiler-plugin</artifactId>
	<version>${tycho.version}</version>
	<executions>
		<execution>
			<id>verify-classpath</id>
			<phase>validate</phase>
			<goals>
				<goal>validate-classpath</goal>
			</goals>
			<configuration>
			</configuration>
		</execution>
	</executions>
</plugin>

Support for generation of a feature from a maven target-location template

Tycho now support the m2e feature to generate a feature from a maven target location.

Support for nested targets

Tycho now supports nested target locations.

An example could be found here.

Support for pom dependencies in maven target locations

Tycho now supports pom dependencies inside maven target locations.

Example:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<?pde version="3.8"?>
<target name="with-pom-dependency">
   <locations>
      <location includeSource="true" missingManifest="generate" type="Maven">
         <dependencies>
            <dependency>
               <groupId>com.sun.xml.ws</groupId>
               <artifactId>jaxws-ri</artifactId>
</tr></table> 

... (truncated)

Commits
  • 7a04b98 Prepare Tycho 2.6.0 release
  • cf98ee4 Fix #496 ResolutionArguments#hashcode is not stable
  • 5ca5155 - Update release notes to reflect the release on this branch
  • 1fe29d7 Update to maven-fluido-skin 1.10.0
  • a3733cb Bump doxia-module-markdown from 1.9.1 to 1.11.1
  • e1aae1d Bump maven-site-plugin from 3.9.1 to 3.10.0
  • a3d6f1e Bump plexusVersion from 2.1.0 to 2.1.1
  • 3039e08 Fix typos
  • bd3fe97 Merge pull request #446 from laeubi/adjust_for_m2e
  • e072a85 Adjust to recent m2e changes regarding DependencyDepth
  • Additional commits viewable in compare view

Updates tycho-p2-director-plugin from 2.5.0 to 2.6.0

Updates tycho-p2-publisher-plugin from 2.5.0 to 2.6.0

Updates tycho-source-plugin from 2.5.0 to 2.6.0

Changelog

Sourced from tycho-source-plugin's changelog.

2.6.0

Delayed classpath computation

Previously the classpath of a project was computed in the maven-setup phase, this has several restrictions. Tycho now delays the classpath computation to a later stage (initialize phase).

If you want to perform the classpath validation in the validate phase of your build you can force classpath computation with the following snippet:

<plugin>
	<groupId>org.eclipse.tycho</groupId>
	<artifactId>tycho-compiler-plugin</artifactId>
	<version>${tycho.version}</version>
	<executions>
		<execution>
			<id>verify-classpath</id>
			<phase>validate</phase>
			<goals>
				<goal>validate-classpath</goal>
			</goals>
			<configuration>
			</configuration>
		</execution>
	</executions>
</plugin>

Support for generation of a feature from a maven target-location template

Tycho now support the m2e feature to generate a feature from a maven target location.

Support for nested targets

Tycho now supports nested target locations.

An example could be found here.

Support for pom dependencies in maven target locations

Tycho now supports pom dependencies inside maven target locations.

Example:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<?pde version="3.8"?>
<target name="with-pom-dependency">
   <locations>
      <location includeSource="true" missingManifest="generate" type="Maven">
         <dependencies>
            <dependency>
               <groupId>com.sun.xml.ws</groupId>
               <artifactId>jaxws-ri</artifactId>
</tr></table> 

... (truncated)

Commits
  • 7a04b98 Prepare Tycho 2.6.0 release
  • cf98ee4 Fix #496 ResolutionArguments#hashcode is not stable
  • 5ca5155 - Update release notes to reflect the release on this branch
  • 1fe29d7 Update to maven-fluido-skin 1.10.0
  • a3733cb Bump doxia-module-markdown from 1.9.1 to 1.11.1
  • e1aae1d Bump maven-site-plugin from 3.9.1 to 3.10.0
  • a3d6f1e Bump plexusVersion from 2.1.0 to 2.1.1
  • 3039e08 Fix typos
  • bd3fe97 Merge pull request #446 from laeubi/adjust_for_m2e
  • e072a85 Adjust to recent m2e changes regarding DependencyDepth
  • Additional commits viewable in compare view

Updates tycho-surefire-plugin from 2.5.0 to 2.6.0

Updates tycho-versions-plugin from 2.5.0 to 2.6.0

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps `tycho-version` from 2.5.0 to 2.6.0.

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

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

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

Updates `tycho-p2-director-plugin` from 2.5.0 to 2.6.0

Updates `tycho-p2-publisher-plugin` from 2.5.0 to 2.6.0

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

Updates `tycho-surefire-plugin` from 2.5.0 to 2.6.0

Updates `tycho-versions-plugin` from 2.5.0 to 2.6.0

---
updated-dependencies:
- dependency-name: org.eclipse.tycho:target-platform-configuration
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.eclipse.tycho:tycho-compiler-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.eclipse.tycho:tycho-maven-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.eclipse.tycho:tycho-p2-director-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.eclipse.tycho:tycho-p2-publisher-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.eclipse.tycho:tycho-source-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.eclipse.tycho:tycho-surefire-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.eclipse.tycho:tycho-versions-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

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 Jan 24, 2022
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Mar 7, 2022

Superseded by #3.

@dependabot dependabot bot closed this Mar 7, 2022
@dependabot dependabot bot deleted the dependabot/maven/tycho-version-2.6.0 branch March 7, 2022 01:30
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