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/19 18:57:41 UTC

[isis-app-helloworld] branch jpa-SNAPSHOT updated: formatting changes is all.

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-helloworld.git


The following commit(s) were added to refs/heads/jpa-SNAPSHOT by this push:
     new 5e5510f  formatting changes is all.
5e5510f is described below

commit 5e5510f97be179b15402b42485e7e449a81fd997
Author: danhaywood <da...@haywood-associates.co.uk>
AuthorDate: Fri Mar 19 18:57:21 2021 +0000

    formatting changes is all.
---
 src/main/java/domainapp/modules/hello/HelloWorldModule.java | 5 ++++-
 src/main/java/domainapp/webapp/HelloWorldApp.java           | 2 ++
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/src/main/java/domainapp/modules/hello/HelloWorldModule.java b/src/main/java/domainapp/modules/hello/HelloWorldModule.java
index b3427c4..a465e6b 100644
--- a/src/main/java/domainapp/modules/hello/HelloWorldModule.java
+++ b/src/main/java/domainapp/modules/hello/HelloWorldModule.java
@@ -12,7 +12,10 @@ import domainapp.modules.hello.dom.hwo.HelloWorldObject;
 @Import({})
 @ComponentScan
 @EnableJpaRepositories
-@EntityScan(basePackageClasses = {HelloWorldModule.class})
+@EntityScan(
+    basePackageClasses = {
+        HelloWorldModule.class
+})
 public class HelloWorldModule {
 
 }
diff --git a/src/main/java/domainapp/webapp/HelloWorldApp.java b/src/main/java/domainapp/webapp/HelloWorldApp.java
index 0b9aafa..928d6df 100644
--- a/src/main/java/domainapp/webapp/HelloWorldApp.java
+++ b/src/main/java/domainapp/webapp/HelloWorldApp.java
@@ -4,6 +4,8 @@ import org.springframework.boot.SpringApplication;
 import org.springframework.boot.autoconfigure.SpringBootApplication;
 import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
 import org.springframework.context.annotation.Import;
+import org.springframework.context.annotation.PropertySource;
+import org.springframework.context.annotation.PropertySources;
 
 import org.apache.isis.core.config.presets.IsisPresets;