-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
277 additions
and
490 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
org.gradle.parallel=true | ||
# See https://github.com/gradle/gradle/pull/11358 , https://issues.apache.org/jira/browse/INFRA-14923 | ||
# repository.apache.org does not yet support .sha256 and .sha512 checksums | ||
systemProp.org.gradle.internal.publish.checksums.insecure=true | ||
kotlin.parallel.tasks.in.project=true |
105 changes: 0 additions & 105 deletions
105
src/main/java/ch/myniva/gradle/caching/s3/AwsS3BuildCache.java
This file was deleted.
Oops, something went wrong.
109 changes: 0 additions & 109 deletions
109
src/main/java/ch/myniva/gradle/caching/s3/internal/AwsS3BuildCacheService.java
This file was deleted.
Oops, something went wrong.
117 changes: 0 additions & 117 deletions
117
src/main/java/ch/myniva/gradle/caching/s3/internal/AwsS3BuildCacheServiceFactory.java
This file was deleted.
Oops, something went wrong.
30 changes: 30 additions & 0 deletions
30
src/main/kotlin/ch/myniva/gradle/caching/s3/AwsS3BuildCache.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* | ||
* Copyright 2017 the original author or authors. | ||
* | ||
* Licensed 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. | ||
*/ | ||
package ch.myniva.gradle.caching.s3 | ||
|
||
import org.gradle.caching.configuration.AbstractBuildCache | ||
|
||
open class AwsS3BuildCache : AbstractBuildCache() { | ||
var region: String? = null | ||
var bucket: String? = null | ||
var path: String? = null | ||
var isReducedRedundancy = true | ||
var endpoint: String? = null | ||
var headers: Map<String?, String?>? = null | ||
var awsAccessKeyId: String? = null | ||
var awsSecretKey: String? = null | ||
var sessionToken: String? = null | ||
} |
Oops, something went wrong.