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

Create BOM for Eclipse release 2023-12 #33

Merged
merged 1 commit into from
Aug 28, 2024
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
971 changes: 971 additions & 0 deletions data/4.30/bnd-output.txt

Large diffs are not rendered by default.

1,742 changes: 1,742 additions & 0 deletions data/4.30/maven-artifacts.json

Large diffs are not rendered by default.

2,037 changes: 2,037 additions & 0 deletions data/4.30/potential-maven-artifacts.json

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions data/4.30/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/eclipse/updates/4.30/"

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2e45ec73cbefde3b27fa4da25f7f14f3
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
34d2f0cb5eccaad6e9b30973a2284c413937b10f
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
847aff40685b32403af470f82996618a4fd8b39cdfbc089ab8b7bd6624291178
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
f803b84caed516118692262033c0ef48f70233ad9aceb6cb6553efaf625e2b2ea617cc85d6c84dee790fb6519cf20f4c9c7e47c7d49cc6c33cc089a0e9533846
3 changes: 3 additions & 0 deletions src/docs/asciidoc/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ Where `$\{eclipseReleaseVersion}` correspond to the platform version of the Ecli
| Eclipse Release Name
| Eclipse Release Version

| 2023-12
| `4.30`

| 2023-09
| `4.29`

Expand Down
9 changes: 9 additions & 0 deletions src/test/java/fr/jmini/utils/ecentral/RunTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@
*/
class RunTest {

@Test
void run_4_30() throws Exception {
Input input = new Input()
.withReleaseName("2023-12")
.withReleaseVersion("4.30")
.withUpdateSite("https://download.eclipse.org/eclipse/updates/4.30/");
new ECentralTask(input).run();
}

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