Skip to content

Commit 21cefe3

Browse files
committed
add 2023.03 version
1 parent b99123b commit 21cefe3

10 files changed

+27198
-0
lines changed

data/2023.03/bnd-output.txt

Lines changed: 5933 additions & 0 deletions
Large diffs are not rendered by default.

data/2023.03/maven-artifacts.json

Lines changed: 2337 additions & 0 deletions
Large diffs are not rendered by default.

data/2023.03/potential-maven-artifacts.json

Lines changed: 16072 additions & 0 deletions
Large diffs are not rendered by default.

data/2023.03/repolist.bndrun

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
-standalone true
2+
-plugin.p2 \
3+
aQute.bnd.repository.p2.provider.P2Repository; \
4+
url="https://download.eclipse.org/releases/2023-03"

repo/fr/jmini/ecentral/eclipse-full-dependencies/2023.03/eclipse-full-dependencies-2023.03.pom

Lines changed: 2835 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
aa9aa91589ed91b36be1a7d841819f84
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
4258ba3e91d4bf54191311186aa5cfb07e787f5f
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3ebbfe644f430e80dea0cbce57925126da9e79190752c06628457551f019b291
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
deb2d030493f50f8cf3a718863429b78e898df41cb044c7762cd60709e5eb123093289908f21e8eba2dd2f9d641c4c415c7dba12137fd51c368de43502715090

src/test/java/fr/jmini/utils/ecentral/RunTest.java

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,19 @@
1212
*/
1313
class RunTest {
1414

15+
@Test
16+
void run_2023_03() throws Exception {
17+
Input input = new Input()
18+
.withReleaseName("2023-03")
19+
.withArtifactId("eclipse-full-dependencies");
20+
ECentralTask task = new ECentralTask(input);
21+
task.run();
22+
String mavenArtifacts = Files.readString(task.getMavenArtifactsFile(), StandardCharsets.UTF_8);
23+
String potentialMavenArtifacts = Files.readString(task.getPotentialMavenArtifactsFile(), StandardCharsets.UTF_8);
24+
25+
assertThatJson(mavenArtifacts).isEqualTo(potentialMavenArtifacts);
26+
}
27+
1528
@Test
1629
void run_2022_09() throws Exception {
1730
Input input = new Input()

0 commit comments

Comments
 (0)