FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
testcontainers-java/settings.gradle at netlify-python-debugging · asantosca/testcontainers-java · GitHub
asantosca
/
testcontainers-java
Public
forked from
testcontainers/testcontainers-java
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
testcontainers-java
/
settings.gradle
Copy path
More file actions
More file actions
Latest commit
History
History
History
57 lines (45 loc) · 1.26 KB
Breadcrumbs
testcontainers-java
/
settings.gradle
Copy path
File metadata and controls
57 lines (45 loc) · 1.26 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
buildscript
{
repositories {
maven {
url
"
https://plugins.gradle.org/m2/
"
}
}
dependencies {
classpath
"
gradle.plugin.ch.myniva.gradle:s3-build-cache:0.9.0
"
}
configurations
.
classpath {
resolutionStrategy {
force
'
com.amazonaws:aws-java-sdk-s3:1.11.582
'
}
}
}
apply
plugin
:
'
ch.myniva.s3-build-cache
'
ext
.
isMasterBuild
=
(
System
.
getenv(
"
CIRCLE_BRANCH
"
)
?:
System
.
getenv(
"
BUILD_SOURCEBRANCHNAME
"
))
==
"
master
"
buildCache
{
local {
enabled
=
!
isMasterBuild
}
remote(
ch.myniva.gradle.caching.s3.AwsS3BuildCache
) {
endpoint
=
'
fra1.digitaloceanspaces.com
'
region
=
'
fra1
'
bucket
=
'
testcontainers
'
path
=
'
cache
'
push
=
isMasterBuild
headers
=
[
'
x-amz-acl
'
:
'
public-read
'
]
}
}
rootProject
.
name
=
'
testcontainers-java
'
include
"
bom
"
include
"
testcontainers
"
project(
'
:testcontainers
'
)
.
projectDir
=
"
$r
ootDir
/core
"
as
File
file(
'
modules
'
)
.
eachDir
{ dir
->
include dir
.
name
project(
"
:
${
dir.name
}
"
)
.
projectDir
=
dir
}
include
'
:docs:examples:junit4:generic
'
include
'
:docs:examples:junit4:redis
'
include
'
:docs:examples:junit5:redis
'
include
'
:docs:examples:spock:redis
'
include
'
test-support
'
Back
|
FazBrowse Home
|
New Git URL