Skip to content

Commit 5d5ce59

Browse files
authored
Merge pull request #298 from sparsick/297-updateTycho
#297: Update Tycho to 2.7.5
2 parents 8b6933c + 97073d5 commit 5d5ce59

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
lines changed

pom.xml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<maven.plugin.plugin.version>3.6.0</maven.plugin.plugin.version>
2323
<!-- actually a dependency here. -->
2424
<dependency.maven.bundle.plugin.version>5.1.6</dependency.maven.bundle.plugin.version>
25-
<tycho.version>2.5.0</tycho.version>
25+
<tycho.version>2.7.5</tycho.version>
2626

2727
<sonatype.aether.version>1.13.1</sonatype.aether.version>
2828
<eclipse.aether.version>1.1.0</eclipse.aether.version>
@@ -153,6 +153,13 @@
153153
</dependencyManagement>
154154

155155
<dependencies>
156+
<dependency>
157+
<groupId>org.apache.maven</groupId>
158+
<artifactId>maven-core</artifactId>
159+
<version>${maven.version}</version>
160+
<scope>provided</scope>
161+
</dependency>
162+
156163
<dependency>
157164
<groupId>org.apache.maven</groupId>
158165
<artifactId>maven-plugin-api</artifactId>

src/main/java/org/reficio/p2/TychoFeatureBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
import org.apache.maven.plugin.BuildPluginManager;
3636
import org.apache.maven.plugin.MojoExecutionException;
3737
import org.apache.maven.project.MavenProject;
38-
import org.eclipse.tycho.core.TychoConstants;
38+
import org.eclipse.tycho.TychoConstants;
3939
import org.eclipse.tycho.core.osgitools.targetplatform.DefaultDependencyArtifacts;
4040
import org.reficio.p2.utils.Utils;
4141

src/main/java/org/reficio/p2/utils/Utils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public class Utils {
2626
private static final String JAR_SNAPSHOT_POSTFIX = "-SNAPSHOT";
2727
private static final String OSGI_SNAPSHOT_POSTFIX = ".SNAPSHOT";
2828
private static final String ECLIPSE_QUALIFIER_POSTFIX = ".qualifier";
29-
public static final String TYCHO_VERSION = "2.5.0";
29+
public static final String TYCHO_VERSION = "2.7.5";
3030

3131
public static String getTimeStamp() {
3232
SimpleDateFormat format = new SimpleDateFormat("yyyyMMddHHmmss");

src/test/integration/bug-17-it/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
<repositories>
8383
<repository>
8484
<id>hibernate-snapshots</id>
85-
<url>https://snapshots.jboss.org/maven2</url>
85+
<url>https://snapshots.jboss.org</url>
8686
</repository>
8787
</repositories>
8888

src/test/integration/feature-14-it/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@
133133
<repositories>
134134
<repository>
135135
<id>hibernate-snapshots</id>
136-
<url>https://snapshots.jboss.org/maven2</url>
136+
<url>https://snapshots.jboss.org</url>
137137
</repository>
138138
</repositories>
139139

0 commit comments

Comments
 (0)