Skip to content
This repository has been archived by the owner on Nov 23, 2021. It is now read-only.

Fixes for PR #665 #668

Merged
merged 2 commits into from
Aug 24, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions boms/bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,13 @@
<artifactId>hibernate-jpa-2.1-api</artifactId>
<version>1.0.0.Final</version>
</dependency>
<!--
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-envers</artifactId>
<version>4.3.5.Final</version>
<groupId>javax.persistence</groupId>
<artifactId>javax.persistence-api</artifactId>
<version>2.2</version>
</dependency>
-->
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib</artifactId>
Expand Down
6 changes: 6 additions & 0 deletions modules/jpa-basic/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@
<groupId>io.oasp.java.modules</groupId>
<artifactId>oasp4j-basic</artifactId>
</dependency>
<!--
<dependency>
<groupId>javax.persistence</groupId>
<artifactId>javax.persistence-api</artifactId>
</dependency>
-->
<dependency>
<groupId>org.hibernate.javax.persistence</groupId>
<artifactId>hibernate-jpa-2.1-api</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ public static DefaultRolesPrefixPostProcessor defaultRolesPrefixPostProcessor()
}

/**
* This method provide a new instance of {@code DelegatingPasswordEncoder}}
* This method provide a new instance of {@code DelegatingPasswordEncoder}
*
* @return the newly create {@code DelegatingPasswordEncoder}}
* @return the newly create {@code DelegatingPasswordEncoder}
*/
@Bean
public PasswordEncoder passwordEncoder() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ spring.batch.job.enabled=false

# Flyway for Database Setup and Migrations
#if ($dbType == 'mariadb')
#spring.flyway.locations=classpath:db/migration,classpath:db/type/mysql
spring.flyway.locations=classpath:db/migration,classpath:db/type/mysql
#else
spring.flyway.locations=classpath:db/migration,classpath:db/type/${dbType}
#end