Skip to content

Commit

Permalink
Merge pull request #298 from sparsick/297-updateTycho
Browse files Browse the repository at this point in the history
#297: Update Tycho to 2.7.5
  • Loading branch information
sparsick authored Nov 4, 2022
2 parents 8b6933c + 97073d5 commit 5d5ce59
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
9 changes: 8 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<maven.plugin.plugin.version>3.6.0</maven.plugin.plugin.version>
<!-- actually a dependency here. -->
<dependency.maven.bundle.plugin.version>5.1.6</dependency.maven.bundle.plugin.version>
<tycho.version>2.5.0</tycho.version>
<tycho.version>2.7.5</tycho.version>

<sonatype.aether.version>1.13.1</sonatype.aether.version>
<eclipse.aether.version>1.1.0</eclipse.aether.version>
Expand Down Expand Up @@ -153,6 +153,13 @@
</dependencyManagement>

<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>${maven.version}</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/reficio/p2/TychoFeatureBuilder.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
import org.apache.maven.plugin.BuildPluginManager;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.project.MavenProject;
import org.eclipse.tycho.core.TychoConstants;
import org.eclipse.tycho.TychoConstants;
import org.eclipse.tycho.core.osgitools.targetplatform.DefaultDependencyArtifacts;
import org.reficio.p2.utils.Utils;

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/reficio/p2/utils/Utils.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class Utils {
private static final String JAR_SNAPSHOT_POSTFIX = "-SNAPSHOT";
private static final String OSGI_SNAPSHOT_POSTFIX = ".SNAPSHOT";
private static final String ECLIPSE_QUALIFIER_POSTFIX = ".qualifier";
public static final String TYCHO_VERSION = "2.5.0";
public static final String TYCHO_VERSION = "2.7.5";

public static String getTimeStamp() {
SimpleDateFormat format = new SimpleDateFormat("yyyyMMddHHmmss");
Expand Down
2 changes: 1 addition & 1 deletion src/test/integration/bug-17-it/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
<repositories>
<repository>
<id>hibernate-snapshots</id>
<url>https://snapshots.jboss.org/maven2</url>
<url>https://snapshots.jboss.org</url>
</repository>
</repositories>

Expand Down
2 changes: 1 addition & 1 deletion src/test/integration/feature-14-it/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@
<repositories>
<repository>
<id>hibernate-snapshots</id>
<url>https://snapshots.jboss.org/maven2</url>
<url>https://snapshots.jboss.org</url>
</repository>
</repositories>

Expand Down

0 comments on commit 5d5ce59

Please sign in to comment.