Skip to content

Commit 067b712

Browse files
author
Luis Sanchez
committed
[FAB-5928] Initial gradle build script
Add gradle wrapper and initial build files Change-Id: I2121dc7230ab06af3e90ed4e5ad5eb54199bb953 Signed-off-by: Luis Sanchez <sanchezl@us.ibm.com>
1 parent 6631548 commit 067b712

File tree

7 files changed

+286
-0
lines changed

7 files changed

+286
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/.gradle/
2+
/.settings/
3+
/.project

build.gradle

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/*
2+
* Copyright IBM Corp. 2017 All Rights Reserved.
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
allprojects {
8+
repositories {
9+
jcenter()
10+
}
11+
}
12+
13+
subprojects {
14+
version = '1.1'
15+
}

gradle/wrapper/gradle-wrapper.jar

53.4 KB
Binary file not shown.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#Wed Aug 23 07:28:06 EDT 2017
2+
distributionBase=GRADLE_USER_HOME
3+
distributionPath=wrapper/dists
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.0.2-bin.zip

gradlew

Lines changed: 172 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 84 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

settings.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/*
2+
* Copyright IBM Corp. 2017 All Rights Reserved.
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
rootProject.name = 'fabric-chaincode-java'

0 commit comments

Comments
 (0)