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

Commit

Permalink
Merge pull request #668 from hohwille/fixes-pr-665
Browse files Browse the repository at this point in the history
Fixes for PR #665
  • Loading branch information
AbhayChandel authored Aug 24, 2018
2 parents ada197d + 3e454ea commit 1738f09
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
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

0 comments on commit 1738f09

Please sign in to comment.