-
Notifications
You must be signed in to change notification settings - Fork 1.1k
some cleanups #985
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
some cleanups #985
Changes from 11 commits
ba6af42
0b7e8ab
455bf15
6fe8738
877ae66
f33ba2e
ef9f400
46d6c0c
9578007
89f1f53
ea711c1
a95586b
c64b388
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -41,6 +41,7 @@ | |
| <wiremock.version>2.26.3</wiremock.version> | ||
| <spring-retry.version>1.3.1</spring-retry.version> | ||
| <commons.collections4.version>4.4</commons.collections4.version> | ||
| <bouncycastle.version>1.69</bouncycastle.version> | ||
|
||
| </properties> | ||
| <dependencyManagement> | ||
| <dependencies> | ||
|
|
@@ -86,6 +87,17 @@ | |
| <version>${spring-retry.version}</version> | ||
| </dependency> | ||
|
|
||
| <dependency> | ||
| <groupId>org.bouncycastle</groupId> | ||
| <artifactId>bcprov-jdk15on</artifactId> | ||
| <version>${bouncycastle.version}</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.bouncycastle</groupId> | ||
| <artifactId>bcpkix-jdk15on</artifactId> | ||
| <version>${bouncycastle.version}</version> | ||
| </dependency> | ||
|
|
||
| <!-- Own dependencies --> | ||
| <dependency> | ||
| <groupId>org.springframework.cloud</groupId> | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -131,6 +131,14 @@ | |
| <scope>test</scope> | ||
| </dependency> | ||
|
|
||
| <dependency> | ||
|
||
| <groupId>org.bouncycastle</groupId> | ||
| <artifactId>bcprov-jdk15on</artifactId> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.bouncycastle</groupId> | ||
| <artifactId>bcpkix-jdk15on</artifactId> | ||
| </dependency> | ||
|
|
||
| </dependencies> | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -22,7 +22,6 @@ | |
| import org.junit.jupiter.api.AfterAll; | ||
| import org.junit.jupiter.api.BeforeAll; | ||
| import org.junit.jupiter.api.Test; | ||
| import org.junit.runner.RunWith; | ||
|
|
||
| import org.springframework.beans.factory.annotation.Autowired; | ||
| import org.springframework.boot.test.context.SpringBootTest; | ||
|
|
@@ -32,11 +31,9 @@ | |
| import org.springframework.cloud.kubernetes.fabric8.Fabric8InfoContributor; | ||
| import org.springframework.cloud.kubernetes.fabric8.Fabric8PodUtils; | ||
| import org.springframework.context.ConfigurableApplicationContext; | ||
| import org.springframework.test.context.junit4.SpringRunner; | ||
|
|
||
| import static org.assertj.core.api.Assertions.assertThat; | ||
|
|
||
| @RunWith(SpringRunner.class) | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. minor clean-up from junit-4 |
||
| @SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT, classes = App.class, | ||
| properties = { "spring.cloud.kubernetes.client.password=mypassword", | ||
| "spring.cloud.kubernetes.client.proxy-password=myproxypassword" }) | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
newer images, these will not work anymore from May 22 (and until then there will be random times when they will not be available), so let's just upgrade
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah I changed this on main but forgot to cherry pick it, thanks!