Skip to content

Commit

Permalink
reficio#297: Update Tycho to 2.7.5
Browse files Browse the repository at this point in the history
  • Loading branch information
sparsick committed Nov 3, 2022
1 parent 8b6933c commit 2c1984d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 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

0 comments on commit 2c1984d

Please sign in to comment.