Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
benedeki committed May 6, 2022
2 parents c759f81 + 62435f0 commit 1635d8c
Show file tree
Hide file tree
Showing 13 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion dao/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>za.co.absa.enceladus</groupId>
<artifactId>parent</artifactId>
<version>2.27.0</version>
<version>2.27.1</version>
</parent>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion data-model/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<parent>
<groupId>za.co.absa.enceladus</groupId>
<artifactId>parent</artifactId>
<version>2.27.0</version>
<version>2.27.1</version>
</parent>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>za.co.absa.enceladus</groupId>
<artifactId>parent</artifactId>
<version>2.27.0</version>
<version>2.27.1</version>
</parent>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion menas/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>za.co.absa.enceladus</groupId>
<artifactId>parent</artifactId>
<version>2.27.0</version>
<version>2.27.1</version>
</parent>

<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<Bar>
<contentMiddle>
<HBox alignItems="Center" justifyContent="End" renderType="Bare">
<Title text="Mapping Table: {/currentMappingTable/name} (v{/currentMappingTable/version})">
<Title text="Mapping Table: {/currentMappingTable/name} (v{/currentMappingTable/version})" />
<core:Icon src="sap-icon://locked"
visible="{= ${/currentMappingTable/locked} === true}"
tooltip="Locked by {/currentMappingTable/userLocked} at {/currentMappingTable/dateLocked}"/>
Expand Down
2 changes: 1 addition & 1 deletion migrations-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>za.co.absa.enceladus</groupId>
<artifactId>parent</artifactId>
<version>2.27.0</version>
<version>2.27.1</version>
</parent>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion migrations/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>za.co.absa.enceladus</groupId>
<artifactId>parent</artifactId>
<version>2.27.0</version>
<version>2.27.1</version>
</parent>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion plugins-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>za.co.absa.enceladus</groupId>
<artifactId>parent</artifactId>
<version>2.27.0</version>
<version>2.27.1</version>
</parent>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion plugins-builtin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>za.co.absa.enceladus</groupId>
<artifactId>parent</artifactId>
<version>2.27.0</version>
<version>2.27.1</version>
</parent>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>za.co.absa.enceladus</groupId>
<artifactId>parent</artifactId>
<version>2.27.0</version>
<version>2.27.1</version>
<packaging>pom</packaging>

<name>Enceladus</name>
Expand Down
2 changes: 1 addition & 1 deletion spark-jobs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>za.co.absa.enceladus</groupId>
<artifactId>parent</artifactId>
<version>2.27.0</version>
<version>2.27.1</version>
</parent>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion utils/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>za.co.absa.enceladus</groupId>
<artifactId>parent</artifactId>
<version>2.27.0</version>
<version>2.27.1</version>
</parent>

<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,12 +84,12 @@ class SecureConfigSuite extends AnyFlatSpec with Matchers {
"it" should "javaOptsStringFromConfigMap to convert config map to -Dx=y string" in {
val driverEnvMap = Map(
"javax.net.ssl.keyStore" -> "/path/to/my-keystore.jks",
"javax.net.ssl.keyStorePassword" -> "ksPassword1",
"javax.net.ssl.keyStorePassword" -> "examplePwd1",
"somethingElse" -> "whatever"
)

SecureConfig.javaOptsStringFromConfigMap(driverEnvMap) shouldBe
"-Djavax.net.ssl.keyStore=/path/to/my-keystore.jks -Djavax.net.ssl.keyStorePassword=ksPassword1 -DsomethingElse=whatever"
"-Djavax.net.ssl.keyStore=/path/to/my-keystore.jks -Djavax.net.ssl.keyStorePassword=examplePwd1 -DsomethingElse=whatever"
}

}

0 comments on commit 1635d8c

Please sign in to comment.