Skip to content

Commit 994acf5

Browse files
chore: update snapshot version to 0.1.0-SNAPSHOT (#162)
1 parent d4d1be5 commit 994acf5

File tree

9 files changed

+18
-5
lines changed

9 files changed

+18
-5
lines changed

buildSrc/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=0.0.1-SNAPSHOT
1+
version=0.1.0-SNAPSHOT

docs/legal/generateThirdPartyReport.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# The Eclipse Dash Licenses tool was executed and resulted in an file (e.g., NOTICES)
88
# listing all dependencies of the project.
99
# To process the dependencies of a specific module, execute the following command:
10-
# gradle dependencies | grep -Poh "(?<=\s)[\w\.-]+:[\w\.-]+:[^:\s]+" | sort | uniq | java -jar /path/org.eclipse.dash.licenses-0.0.1-SNAPSHOT.jar - -summary NOTICES
10+
# gradle dependencies | grep -Poh "(?<=\s)[\w\.-]+:[\w\.-]+:[^:\s]+" | sort | uniq | java -jar /path/org.eclipse.dash.licenses-<VERSION>.jar - -summary NOTICES
1111
#
1212
# Comments:
1313
# Gradle doesn't support listing all dependencies of a multi-module project out of the box.

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
group=org.eclipse.edc
2-
version=0.0.1-SNAPSHOT
2+
version=0.1.0-SNAPSHOT
33

44
edcScmUrl=https://github.com/eclipse-edc/GradlePlugins
55
edcScmConnection=scm:git:[email protected]:eclipse-edc/GradlePlugins.git
66

7-
annotationProcessorVersion=0.0.1-SNAPSHOT
7+
annotationProcessorVersion=0.1.0-SNAPSHOT

plugins/autodoc/autodoc-plugin/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ plugins {
33
}
44

55
dependencies {
6+
implementation(project(":runtime-metamodel"))
67
implementation(libs.jetbrains.annotations)
78
implementation(libs.jackson.core)
89
implementation(libs.jackson.annotations)

plugins/edc-build/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ repositories {
1010
}
1111

1212
dependencies {
13+
implementation(project(":runtime-metamodel"))
1314
implementation(project(":plugins:autodoc:autodoc-plugin"))
1415
implementation(project(":plugins:test-summary"))
1516
implementation(project(":plugins:module-names"))

plugins/edc-build/src/main/java/org/eclipse/edc/plugins/edcbuild/conventions/DefaultDependencyConvention.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class DefaultDependencyConvention implements EdcConvention {
4040
private static final String EDC_GROUP_ID = "org.eclipse.edc";
4141
private static final String DEFAULT_JETBRAINS_ANNOTATION_VERSION = "24.0.1";
4242
private static final String DEFAULT_JACKSON_VERSION = "2.14.2";
43-
private static final String DEFAULT_METAMODEL_VERSION = "0.0.1-SNAPSHOT";
43+
private static final String DEFAULT_METAMODEL_VERSION = "0.1.0-SNAPSHOT";
4444
private static final String DEFAULT_MOCKITO_VERSION = "5.2.0";
4545
private static final String DEFAULT_ASSERTJ_VERSION = "3.23.1";
4646
private static final String DEFAULT_JUPITER_VERSION = "5.9.2";

plugins/module-names/build.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,7 @@ gradlePlugin {
2020
}
2121
}
2222
}
23+
24+
dependencies {
25+
implementation(project(":runtime-metamodel"))
26+
}

plugins/openapi-merger/build.gradle.kts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ dependencies {
99
implementation(libs.plugin.openapi.merger)
1010
// needed for the OpenApiDataInvalidException:
1111
implementation(libs.plugin.openapi.merger.app)
12+
13+
implementation(project(":runtime-metamodel"))
14+
1215
}
1316

1417
gradlePlugin {

plugins/test-summary/build.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,7 @@ gradlePlugin {
2020
}
2121
}
2222
}
23+
24+
dependencies {
25+
implementation(project(":runtime-metamodel"))
26+
}

0 commit comments

Comments
 (0)