You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2021/03/15 06:11:06 UTC

[isis-app-simpleapp] branch jpa-SNAPSHOT updated: minor update for M5

This is an automated email from the ASF dual-hosted git repository.

danhaywood pushed a commit to branch jpa-SNAPSHOT
in repository https://gitbox.apache.org/repos/asf/isis-app-simpleapp.git


The following commit(s) were added to refs/heads/jpa-SNAPSHOT by this push:
     new 2e6b201  minor update for M5
2e6b201 is described below

commit 2e6b2011c62dbe9ebf8fa752351d372e7a62a52a
Author: danhaywood <da...@haywood-associates.co.uk>
AuthorDate: Mon Mar 15 06:10:55 2021 +0000

    minor update for M5
---
 .../src/main/java/domainapp/modules/simple/SimpleModule.java          | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/module-simple/src/main/java/domainapp/modules/simple/SimpleModule.java b/module-simple/src/main/java/domainapp/modules/simple/SimpleModule.java
index 08e564b..89c9d01 100644
--- a/module-simple/src/main/java/domainapp/modules/simple/SimpleModule.java
+++ b/module-simple/src/main/java/domainapp/modules/simple/SimpleModule.java
@@ -17,11 +17,11 @@ import domainapp.modules.simple.dom.so.SimpleObject;
 
 @Configuration
 @ComponentScan
-@EnableJpaRepositories
-@EntityScan(basePackageClasses = {SimpleModule.class})
 @EnableConfigurationProperties({
         SimpleModule.Configuration.class,
 })
+@EnableJpaRepositories
+@EntityScan(basePackageClasses = {SimpleModule.class})
 public class SimpleModule implements ModuleWithFixtures {
 
     @Override