File tree Expand file tree Collapse file tree 7 files changed +39
-25
lines changed
fabric-contract-example-gradle-kotlin
fabric-contract-example-maven
fabric-chaincode-integration-test/src/contracts Expand file tree Collapse file tree 7 files changed +39
-25
lines changed Original file line number Diff line number Diff line change 1+ version : 2
2+ updates :
3+ - package-ecosystem : docker
4+ directories :
5+ - " /fabric-chaincode-docker"
6+ - " /examples/fabric-contract-example-as-service"
7+ schedule :
8+ interval : weekly
9+ - package-ecosystem : " github-actions"
10+ directory : " /"
11+ schedule :
12+ interval : weekly
13+ - package-ecosystem : gradle
14+ directories :
15+ - " /"
16+ - " /fabric-chaincode-docker"
17+ - " /examples/fabric-contract-example-as-service"
18+ - " /examples/fabric-contract-example-gradle"
19+ - " /examples/fabric-contract-example-gradle-kotlin"
20+ - " /examples/ledger-api"
21+ - " /fabric-chaincode-integration-test"
22+ - " /fabric-chaincode-integration-test/src/contracts/bare-gradle"
23+ - " /fabric-chaincode-integration-test/src/contracts/fabric-ledger-api"
24+ - " /fabric-chaincode-integration-test/src/contracts/fabric-shim-api"
25+ - " /fabric-chaincode-shim"
26+ schedule :
27+ interval : weekly
28+ - package-ecosystem : maven
29+ directories :
30+ - " /examples/fabric-contract-example-maven"
31+ - " /fabric-chaincode-integration-test/src/contracts/bare-maven"
32+ - " /fabric-chaincode-integration-test/src/contracts/wrapper-maven"
33+ schedule :
34+ interval : weekly
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
55
66
77plugins {
8- id(" com.github.johnrengelman. shadow" ) version " 8.1.1 "
8+ id(" com.gradleup. shadow" ) version " 8.3.6 "
99 id(" org.jetbrains.kotlin.jvm" ) version " 1.9.22"
1010}
1111
Original file line number Diff line number Diff line change 111111 <artifactId >maven-compiler-plugin</artifactId >
112112 <version >3.1</version >
113113 <configuration >
114- <source >${java.version} </source >
115- <target >${java.version} </target >
114+ <release >${java.version} </release >
116115 </configuration >
117116 </plugin >
118117 <plugin >
Original file line number Diff line number Diff line change @@ -6,13 +6,8 @@ plugins {
66group ' org.hyperledger.fabric-chaincode-java'
77version ' 1.0-SNAPSHOT'
88
9- java {
10- sourceCompatibility = JavaVersion . VERSION_11
11- targetCompatibility = JavaVersion . VERSION_11
12- }
13-
149compileJava {
15- options. compilerArgs . addAll([ ' -- release' , ' 11 ' ])
10+ options. release = 11
1611}
1712
1813repositories {
Original file line number Diff line number Diff line change 2121 <id >jitpack.io</id >
2222 <url >https://www.jitpack.io</url >
2323 </repository >
24- <repository >
25- <id >artifactory</id >
26- <url >https://hyperledger.jfrog.io/hyperledger/fabric-maven</url >
27- </repository >
2824 <repository >
2925 <id >localfabirc</id >
3026 <url >file://${project.basedir} /repository</url >
Original file line number Diff line number Diff line change @@ -6,13 +6,8 @@ plugins {
66group ' org.hyperledger.fabric-chaincode-java'
77version ' '
88
9- java {
10- sourceCompatibility = JavaVersion . VERSION_11
11- targetCompatibility = JavaVersion . VERSION_11
12- }
13-
149compileJava {
15- options. compilerArgs . addAll([ ' -- release' , ' 11 ' ])
10+ options. release = 11
1611}
1712
1813repositories {
Original file line number Diff line number Diff line change @@ -6,13 +6,8 @@ plugins {
66group ' org.hyperledger.fabric-chaincode-java'
77version ' 1.0-SNAPSHOT'
88
9- java {
10- sourceCompatibility = JavaVersion . VERSION_11
11- targetCompatibility = JavaVersion . VERSION_11
12- }
13-
149compileJava {
15- options. compilerArgs . addAll([ ' -- release' , ' 11 ' ])
10+ options. release = 11
1611}
1712
1813repositories {
You can’t perform that action at this time.
0 commit comments