Skip to content

Commit

Permalink
chore: update snapshot version to 0.1.0-SNAPSHOT (#162)
Browse files Browse the repository at this point in the history
  • Loading branch information
paullatzelsperger committed May 26, 2023
1 parent d4d1be5 commit 994acf5
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 5 deletions.
2 changes: 1 addition & 1 deletion buildSrc/gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=0.0.1-SNAPSHOT
version=0.1.0-SNAPSHOT
2 changes: 1 addition & 1 deletion docs/legal/generateThirdPartyReport.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# The Eclipse Dash Licenses tool was executed and resulted in an file (e.g., NOTICES)
# listing all dependencies of the project.
# To process the dependencies of a specific module, execute the following command:
# gradle dependencies | grep -Poh "(?<=\s)[\w\.-]+:[\w\.-]+:[^:\s]+" | sort | uniq | java -jar /path/org.eclipse.dash.licenses-0.0.1-SNAPSHOT.jar - -summary NOTICES
# gradle dependencies | grep -Poh "(?<=\s)[\w\.-]+:[\w\.-]+:[^:\s]+" | sort | uniq | java -jar /path/org.eclipse.dash.licenses-<VERSION>.jar - -summary NOTICES
#
# Comments:
# Gradle doesn't support listing all dependencies of a multi-module project out of the box.
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
group=org.eclipse.edc
version=0.0.1-SNAPSHOT
version=0.1.0-SNAPSHOT

edcScmUrl=https://github.com/eclipse-edc/GradlePlugins
edcScmConnection=scm:git:git@github.com:eclipse-edc/GradlePlugins.git

annotationProcessorVersion=0.0.1-SNAPSHOT
annotationProcessorVersion=0.1.0-SNAPSHOT
1 change: 1 addition & 0 deletions plugins/autodoc/autodoc-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ plugins {
}

dependencies {
implementation(project(":runtime-metamodel"))
implementation(libs.jetbrains.annotations)
implementation(libs.jackson.core)
implementation(libs.jackson.annotations)
Expand Down
1 change: 1 addition & 0 deletions plugins/edc-build/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ repositories {
}

dependencies {
implementation(project(":runtime-metamodel"))
implementation(project(":plugins:autodoc:autodoc-plugin"))
implementation(project(":plugins:test-summary"))
implementation(project(":plugins:module-names"))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class DefaultDependencyConvention implements EdcConvention {
private static final String EDC_GROUP_ID = "org.eclipse.edc";
private static final String DEFAULT_JETBRAINS_ANNOTATION_VERSION = "24.0.1";
private static final String DEFAULT_JACKSON_VERSION = "2.14.2";
private static final String DEFAULT_METAMODEL_VERSION = "0.0.1-SNAPSHOT";
private static final String DEFAULT_METAMODEL_VERSION = "0.1.0-SNAPSHOT";
private static final String DEFAULT_MOCKITO_VERSION = "5.2.0";
private static final String DEFAULT_ASSERTJ_VERSION = "3.23.1";
private static final String DEFAULT_JUPITER_VERSION = "5.9.2";
Expand Down
4 changes: 4 additions & 0 deletions plugins/module-names/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,7 @@ gradlePlugin {
}
}
}

dependencies {
implementation(project(":runtime-metamodel"))
}
3 changes: 3 additions & 0 deletions plugins/openapi-merger/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ dependencies {
implementation(libs.plugin.openapi.merger)
// needed for the OpenApiDataInvalidException:
implementation(libs.plugin.openapi.merger.app)

implementation(project(":runtime-metamodel"))

}

gradlePlugin {
Expand Down
4 changes: 4 additions & 0 deletions plugins/test-summary/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,7 @@ gradlePlugin {
}
}
}

dependencies {
implementation(project(":runtime-metamodel"))
}

0 comments on commit 994acf5

Please sign in to comment.