Skip to content

Commit 0fbdb9d

Browse files
authored
Gradle CI Example - Add repositories to all projects (jfrog#315)
1 parent 5b9f254 commit 0fbdb9d

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

Diff for: gradle-examples/gradle-example-ci-server/build.gradle

+4-6
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,17 @@
1414
* limitations under the License.
1515
*/
1616

17-
buildscript {
18-
repositories {
19-
mavenCentral()
20-
}
21-
}
22-
2317
allprojects {
2418
apply plugin: 'java'
2519
apply plugin: 'maven-publish'
2620

2721
group = 'org.jfrog.example.gradle'
2822
version = '1.0'
2923
status = 'integration'
24+
25+
repositories {
26+
mavenCentral()
27+
}
3028
}
3129

3230
// Setting this property to true will make the artifactoryPublish task

0 commit comments

Comments
 (0)