Skip to content

Commit

Permalink
add 2024.9 bom
Browse files Browse the repository at this point in the history
  • Loading branch information
amergey committed Sep 23, 2024
1 parent dfb8ed9 commit b337de4
Show file tree
Hide file tree
Showing 9 changed files with 11,691 additions and 0 deletions.
4,768 changes: 4,768 additions & 0 deletions data/2024.09/bnd-output.txt

Large diffs are not rendered by default.

3,122 changes: 3,122 additions & 0 deletions data/2024.09/maven-artifacts.json

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions data/2024.09/repolist.bndrun
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
-standalone true
-plugin.p2 \
aQute.bnd.repository.p2.provider.P2Repository; \
url="https://download.eclipse.org/releases/2024-09"

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
a88f8abb9b811a0cbc4e1eb2f0c1b006
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
20b8147a069b8336edf9cf2f2dee1b74d4bb389f
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
56847adbf39da3a695be98309a6df79e77106a37698e957b3a4609c09af93e65
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
f9814074c3e446232e5b9852ad857e1bd7483785f2c3f908744b261fd4d50bdce8e6b97110e56ce85d909746844e3a98ce5d79b9d1c1f0b8c7077ddc831c1431
16 changes: 16 additions & 0 deletions src/test/java/fr/jmini/utils/ecentral/RunTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,22 @@
* This test class run the code for different update sites.
*/
class RunTest {

@Test
void run_2024_09() throws Exception {
Input input = new Input()
.withReleaseName("2024-09")
.withArtifactId("eclipse-full-dependencies");
ECentralTask task = new ECentralTask(input);
task.run();
String mavenArtifacts = Files.readString(task.getMavenArtifactsFile(), StandardCharsets.UTF_8);

assertThatJson(mavenArtifacts).isArray()
.size()
.isEqualTo(task.parseBndOutput()
.size());
}

@Test
void run_2024_06() throws Exception {
Input input = new Input()
Expand Down

0 comments on commit b337de4

Please sign in to comment.