Skip to content

Commit

Permalink
Added jasypt spring boot dependency to support open text password enc…
Browse files Browse the repository at this point in the history
…ryption (#114)
  • Loading branch information
xdurvak authored Jun 4, 2018
1 parent cf384fb commit 1cc812f
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 0.5.9
- Added jasypt-spring-boot-starter dependency to support open text encryption

## 0.5.8
- EventParser functionality added to endpoint /generateAndPublish (@param parseData added)

Expand Down
14 changes: 12 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ repositories {
maven {
url 'https://jitpack.io'
}
maven {
url 'https://repo.spring.io/libs-milestone'
}
}
ext {
springBootVersion = "1.4.1.RELEASE"
Expand All @@ -60,14 +63,19 @@ subprojects {
apply plugin: 'java'

//Latest version for publish
version = "0.5.8"
version = "0.5.9"

//Declare where to find the dependencies of project here
repositories {
// Use 'jcenter' for resolving your dependencies.
// You can declare any Maven/Ivy/file repository here.
mavenCentral()
maven { url 'https://jitpack.io' }
maven {
url 'https://jitpack.io'
}
maven {
url 'https://repo.spring.io/libs-milestone'
}
}

apply plugin: 'spring-boot'
Expand Down Expand Up @@ -111,6 +119,8 @@ subprojects {
//Injectable Message Library and its Implementation
compile 'com.github.Ericsson:eiffel-remrem-shared:0.3.5'
//For publishing eiffel2.0 events

compile 'com.github.ulisesbocchio:jasypt-spring-boot-starter:2.0.0'

compile("com.github.Ericsson:eiffel-remrem-semantics:0.4.1"){

Expand Down
7 changes: 5 additions & 2 deletions publish-common/src/main/resources/config.template.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
logging.level.org.springframework.web: DEBUG
logging.level.com.ericsson.eiffel.remrem.producer: DEBUG

# Jasypt configurations
jasypt.encryptor.password:<Any value which was used at the time of encrypting the original password will be used at runtime to decrypt the same>

#RabbitMq configurations

# need to be updated according to the test env.
Expand All @@ -17,7 +20,7 @@
eiffelsemantics.rabbitmq.host: 127.0.0.1
eiffelsemantics.rabbitmq.port: 5672
eiffelsemantics.rabbitmq.username: guest
eiffelsemantics.rabbitmq.password: guest
eiffelsemantics.rabbitmq.password: ENC(<encrypted password>) or password
eiffelsemantics.rabbitmq.tls:
eiffelsemantics.rabbitmq.exchangeName: amq.direct
eiffelsemantics.rabbitmq.domainId: eiffelxxx
Expand All @@ -31,7 +34,7 @@
#Ldap authentication configurations
activedirectory.publish.enabled: false
activedirectory.ldapUrl :
activedirectory.managerPassword :
activedirectory.managerPassword : ENC(<encrypted password>) or password
activedirectory.managerDn:
activedirectory.rootDn:
activedirectory.userSearchFilter:

0 comments on commit 1cc812f

Please sign in to comment.