Skip to content

Commit 883ac4a

Browse files
committed
Added RedisEnterpriseContainer constructor that accepts an image tag
name. Resolves #3
1 parent ba0796f commit 883ac4a

31 files changed

+1377
-1131
lines changed

.gitignore

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
/bin/
2-
/.classpath
3-
/.project
2+
/subprojects/testcontainers-redis/bin/
3+
.classpath
4+
.project
45
build
5-
/.gradle/
6-
/.settings/
6+
.gradle/
7+
.settings/
78
.idea
89
/out/

build.gradle

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ allprojects {
5353
gradlePluginPortal()
5454
mavenCentral()
5555
mavenLocal()
56-
maven { url 'https://projectlombok.org/edge-releases' }
5756
}
5857

5958
tasks.withType(GenerateModuleMetadata) {
@@ -72,9 +71,8 @@ subprojects {
7271
test {
7372
useJUnitPlatform()
7473
}
75-
76-
lombok {
77-
version = "edge-SNAPSHOT"
78-
}
74+
75+
sourceCompatibility = 8
76+
targetCompatibility = 8
7977

8078
}

gradle.properties

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
group=com.redis.testcontainers
2-
sourceCompatibility=1.8
3-
targetCompatibility=1.8
42

53
kordampPluginVersion=0.47.0
6-
lombokPluginVersion=6.2.0
74
kordampBuildVersion=2.6.0
85

6+
awaitilityVersion=4.1.1
97
junitVersion=5.7.2
108
lettucemodVersion=1.7.3
119
slf4jVersion=1.7.32

settings.gradle

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ buildscript {
77
dependencies {
88
classpath "org.kordamp.gradle:java-project-gradle-plugin:$kordampPluginVersion"
99
classpath "org.kordamp.gradle:kordamp-parentbuild:$kordampBuildVersion"
10-
classpath "io.freefair.gradle:lombok-plugin:$lombokPluginVersion"
1110
}
1211
}
1312

@@ -20,15 +19,14 @@ projects {
2019

2120
plugins {
2221
all {
23-
id 'idea'
22+
id 'eclipse'
2423
}
2524
path(':') {
2625
id 'org.kordamp.gradle.java-project'
2726
}
2827
dirs(['subprojects']) {
2928
id 'java-library'
3029
id 'java-library-distribution'
31-
id 'io.freefair.lombok'
3230
}
3331
}
3432
}

0 commit comments

Comments
 (0)