This is an automated email from the ASF dual-hosted git repository.
jbarrett pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git
The following commit(s) were added to refs/heads/develop by this push:
new 5e0289b GEODE-5812: Adds task to resolve and download dependencies.
5e0289b is described below
commit 5e0289b5d90023cbf597d3415db6d969b7b913ef
Author: Jacob Barrett <[email protected]>
AuthorDate: Tue Oct 2 17:19:40 2018 -0700
GEODE-5812: Adds task to resolve and download dependencies.
---
build.gradle | 1 +
gradle/resolve-dependencies.gradle | 35 +++++++++++++++++++++++++++++++++++
2 files changed, 36 insertions(+)
diff --git a/build.gradle b/build.gradle
index a7b9215..96ea2fd 100755
--- a/build.gradle
+++ b/build.gradle
@@ -86,6 +86,7 @@ apply from: "${scriptDir}/sonar.gradle"
apply from: "${scriptDir}/rat.gradle"
apply from: "${scriptDir}/docker.gradle"
apply from: "${scriptDir}/spotless.gradle"
+apply from: "${scriptDir}/resolve-dependencies.gradle"
subprojects {
apply plugin: 'com.github.ben-manes.versions'
diff --git a/gradle/resolve-dependencies.gradle
b/gradle/resolve-dependencies.gradle
new file mode 100644
index 0000000..fa67a45
--- /dev/null
+++ b/gradle/resolve-dependencies.gradle
@@ -0,0 +1,35 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+task resolveDependencies {
+ doLast {
+ project.rootProject.allprojects.each { subProject ->
+ subProject.buildscript.configurations.each { configuration ->
+ resolveConfiguration(configuration)
+ }
+ subProject.configurations.each { configuration ->
+ resolveConfiguration(configuration)
+ }
+ }
+ }
+}
+
+void resolveConfiguration(configuration) {
+ if (configuration.canBeResolved) {
+ configuration.resolve()
+ }
+}