JAVA-117 Standardize spring-boot-modules

This commit is contained in:
mikr 2020-04-04 21:47:45 +02:00
parent 641956f87d
commit ad889f6bcd
21 changed files with 21 additions and 21 deletions

View File

@ -1,4 +1,4 @@
package org.baeldung; package com.baeldung;
import org.junit.Test; import org.junit.Test;
import org.junit.runner.RunWith; import org.junit.runner.RunWith;

View File

@ -1,4 +1,4 @@
package org.baeldung; package com.baeldung;
import org.junit.Test; import org.junit.Test;
import org.junit.runner.RunWith; import org.junit.runner.RunWith;

View File

@ -1,4 +1,4 @@
package org.baeldung; package com.baeldung;
import org.junit.Test; import org.junit.Test;
import org.junit.runner.RunWith; import org.junit.runner.RunWith;

View File

@ -208,7 +208,7 @@
<properties> <properties>
<!-- The main class to start by executing java -jar --> <!-- The main class to start by executing java -jar -->
<start-class>org.baeldung.boot.Application</start-class> <start-class>com.baeldung.boot.Application</start-class>
<jquery.version>3.1.1</jquery.version> <jquery.version>3.1.1</jquery.version>
<bootstrap.version>3.3.7-1</bootstrap.version> <bootstrap.version>3.3.7-1</bootstrap.version>
<jpa.version>2.2</jpa.version> <jpa.version>2.2</jpa.version>

View File

@ -1,4 +1,4 @@
package org.baeldung; package com.baeldung;
import org.junit.Test; import org.junit.Test;
import org.junit.runner.RunWith; import org.junit.runner.RunWith;

View File

@ -1,4 +1,4 @@
package org.baeldung; package com.baeldung;
import org.junit.Test; import org.junit.Test;

View File

@ -1,4 +1,4 @@
package org.baeldung; package com.baeldung;
import org.junit.Test; import org.junit.Test;
import org.junit.runner.RunWith; import org.junit.runner.RunWith;

View File

@ -1,4 +1,4 @@
package org.baeldung; package com.baeldung;
import org.junit.Test; import org.junit.Test;
import org.junit.runner.RunWith; import org.junit.runner.RunWith;

View File

@ -190,7 +190,7 @@
<properties> <properties>
<!-- The main class to start by executing java -jar --> <!-- The main class to start by executing java -jar -->
<start-class>org.baeldung.boot.Application</start-class> <start-class>com.baeldung.boot.Application</start-class>
<jquery.version>3.1.1</jquery.version> <jquery.version>3.1.1</jquery.version>
<bootstrap.version>3.3.7-1</bootstrap.version> <bootstrap.version>3.3.7-1</bootstrap.version>
<jpa.version>2.2</jpa.version> <jpa.version>2.2</jpa.version>

View File

@ -1,4 +1,4 @@
package org.baeldung; package com.baeldung;
import org.junit.Test; import org.junit.Test;
import org.junit.runner.RunWith; import org.junit.runner.RunWith;

View File

@ -1,4 +1,4 @@
package org.baeldung; package com.baeldung;
import org.junit.Test; import org.junit.Test;
import org.junit.runner.RunWith; import org.junit.runner.RunWith;

View File

@ -1,4 +1,4 @@
package org.baeldung; package com.baeldung;
import org.junit.Test; import org.junit.Test;
import org.junit.runner.RunWith; import org.junit.runner.RunWith;

View File

@ -1,4 +1,4 @@
package org.baeldung; package com.baeldung;
import org.junit.Test; import org.junit.Test;
import org.junit.runner.RunWith; import org.junit.runner.RunWith;

View File

@ -1,4 +1,4 @@
package org.baeldung; package com.baeldung;
import org.junit.Test; import org.junit.Test;
import org.junit.runner.RunWith; import org.junit.runner.RunWith;

View File

@ -7,7 +7,7 @@ import org.springframework.context.annotation.PropertySource;
import org.springframework.context.support.PropertySourcesPlaceholderConfigurer; import org.springframework.context.support.PropertySourcesPlaceholderConfigurer;
@Configuration @Configuration
@ComponentScan("org.baeldung.properties.core") @ComponentScan("com.baeldung.properties.core")
@PropertySource("classpath:foo.properties") @PropertySource("classpath:foo.properties")
public class ExternalPropertiesWithJavaConfig { public class ExternalPropertiesWithJavaConfig {

View File

@ -6,7 +6,7 @@ import org.springframework.context.annotation.ImportResource;
@Configuration @Configuration
@ImportResource("classpath:configForProperties.xml") @ImportResource("classpath:configForProperties.xml")
@ComponentScan("org.baeldung.core") @ComponentScan("com.baeldung.core")
public class ExternalPropertiesWithXmlConfig { public class ExternalPropertiesWithXmlConfig {
public ExternalPropertiesWithXmlConfig() { public ExternalPropertiesWithXmlConfig() {

View File

@ -6,7 +6,7 @@ import org.springframework.context.annotation.ImportResource;
@Configuration @Configuration
@ImportResource("classpath:configForPropertiesOne.xml") @ImportResource("classpath:configForPropertiesOne.xml")
@ComponentScan("org.baeldung.core") @ComponentScan("com.baeldung.core")
public class ExternalPropertiesWithXmlConfigOne { public class ExternalPropertiesWithXmlConfigOne {
public ExternalPropertiesWithXmlConfigOne() { public ExternalPropertiesWithXmlConfigOne() {

View File

@ -1,4 +1,4 @@
package org.baeldung; package com.baeldung;
import org.junit.Test; import org.junit.Test;
import org.junit.runner.RunWith; import org.junit.runner.RunWith;

View File

@ -1,4 +1,4 @@
package org.baeldung; package com.baeldung;
import org.junit.Test; import org.junit.Test;
import org.junit.runner.RunWith; import org.junit.runner.RunWith;

View File

@ -1,4 +1,4 @@
package org.baeldung; package com.baeldung;
import org.junit.Test; import org.junit.Test;
import org.junit.runner.RunWith; import org.junit.runner.RunWith;

View File

@ -18,7 +18,7 @@ import java.util.concurrent.Executors;
@RestController @RestController
@EnableAutoConfiguration @EnableAutoConfiguration
@ComponentScan({ "org.baeldung.common.error", "com.baeldung.common.error.controller", "com.baeldung.common.properties", "com.baeldung.common.resources", "com.baeldung.endpoints", "com.baeldung.service", "com.baeldung.monitor.jmx", "com.baeldung.boot.config" }) @ComponentScan({ "com.baeldung.common.error", "com.baeldung.common.error.controller", "com.baeldung.common.properties", "com.baeldung.common.resources", "com.baeldung.endpoints", "com.baeldung.service", "com.baeldung.monitor.jmx", "com.baeldung.boot.config" })
public class SpringBootApplication { public class SpringBootApplication {
private static ApplicationContext applicationContext; private static ApplicationContext applicationContext;