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 org.eclipse.platform:org.eclipse.core.runtime from 3.31.100 to 3.32.0 #4501

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@
<dependency>
<groupId>org.eclipse.platform</groupId>
<artifactId>org.eclipse.core.runtime</artifactId>
<version>3.31.100</version>
<version>3.32.0</version>
</dependency>
<dependency>
<groupId>org.eclipse.platform</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public interface TychoConstants {
File USER_MAVEN_CONFIGURATION_HOME = new File(USER_HOME, ".m2");
File DEFAULT_USER_LOCALREPOSITORY = new File(USER_MAVEN_CONFIGURATION_HOME, "repository");

public static final String ECLIPSE_LATEST = "https://download.eclipse.org/releases/2024-09/";
public static final String ECLIPSE_LATEST = "https://download.eclipse.org/releases/2024-12/";

public static final String TYCHO_NOT_CONFIGURED = "Tycho build extension not configured for ";

Expand Down
10 changes: 2 additions & 8 deletions tycho-apitools-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,8 @@
<dependency>
<groupId>org.eclipse.pde</groupId>
<artifactId>org.eclipse.pde.api.tools</artifactId>
<version>1.3.500</version>
<version>1.3.600</version>
<type>jar</type>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.eclipse.pde</groupId>
Expand All @@ -62,7 +56,7 @@
<dependency>
<groupId>org.eclipse.platform</groupId>
<artifactId>org.eclipse.equinox.common</artifactId>
<version>3.19.100</version>
<version>3.19.200</version>
</dependency>
<dependency>
<groupId>org.eclipse.jdt</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public void testDependencyWithNestedJar() throws Exception {
try (BufferedReader reader = Files.newBufferedReader(file.toPath())) {
File dependency = new File(reader.readLine());
assertTrue(dependency.exists());
assertEquals("org.junit-4.13.2.v20230809-1000.jar", dependency.getName());
assertEquals("org.junit-4.13.2.v20240929-1000.jar", dependency.getName());
}
}
}
2 changes: 1 addition & 1 deletion tycho-its/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@
<dependency>
<groupId>org.eclipse.platform</groupId>
<artifactId>org.eclipse.jface</artifactId>
<version>3.35.0</version>
<version>3.35.100</version>
<scope>test</scope>
</dependency>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public void testLocalMavenRepository() throws Exception {
// TODO this is only an indirect test; it should test that the bundles nested
// jars are accessible as file URLs
File antHome = new File(v01.getBasedir(),
"tycho340.test/target/work/plugins/org.apache.ant_1.10.14.v20230922-1200");
"tycho340.test/target/work/plugins/org.apache.ant_1.10.15.v20240901-1000");
Assert.assertTrue(antHome.isDirectory());
}

Expand Down
Loading