Follow up of [BAEL-2350], renamed module (#8167)
This commit is contained in:
parent
6a41bd4bff
commit
f9124d3256
4
pom.xml
4
pom.xml
|
@ -610,7 +610,7 @@
|
||||||
|
|
||||||
<module>tensorflow-java</module>
|
<module>tensorflow-java</module>
|
||||||
<module>spf4j</module>
|
<module>spf4j</module>
|
||||||
<module>spring-boot-configuration</module>
|
<module>spring-boot-config-jpa-error</module>
|
||||||
<module>spring-boot-flowable</module>
|
<module>spring-boot-flowable</module>
|
||||||
<module>spring-boot-mvc-2</module>
|
<module>spring-boot-mvc-2</module>
|
||||||
<module>spring-boot-performance</module>
|
<module>spring-boot-performance</module>
|
||||||
|
@ -697,7 +697,7 @@
|
||||||
<module>spring-boot-bootstrap</module>
|
<module>spring-boot-bootstrap</module>
|
||||||
<module>spring-boot-camel</module>
|
<module>spring-boot-camel</module>
|
||||||
<!-- <module>spring-boot-cli</module> --> <!-- Not a maven project -->
|
<!-- <module>spring-boot-cli</module> --> <!-- Not a maven project -->
|
||||||
<module>spring-boot-configuration</module>
|
<module>spring-boot-config-jpa-error</module>
|
||||||
<module>spring-boot-client</module>
|
<module>spring-boot-client</module>
|
||||||
|
|
||||||
<module>spring-boot-crud</module>
|
<module>spring-boot-crud</module>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Spring Boot Configuration
|
# Spring Boot - DataJpaTest Error
|
||||||
|
|
||||||
This module contains articles about Spring Boot Configuration.
|
This module contains examples about a corner case using @DataJpaTest with a multi module project.
|
||||||
|
|
||||||
### Relevant Articles:
|
### Relevant Articles:
|
||||||
- [Unable to Find @SpringBootConfiguration with @DataJpaTest](https://www.baeldung.com/spring-boot-unable-to-find-springbootconfiguration-with-datajpatest)
|
- [Unable to Find @SpringBootConfiguration with @DataJpaTest](https://www.baeldung.com/spring-boot-unable-to-find-springbootconfiguration-with-datajpatest)
|
|
@ -5,8 +5,8 @@
|
||||||
<version>0.0.1-SNAPSHOT</version>
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>com.baeldung.spring-boot-configuration</groupId>
|
<groupId>com.baeldung.spring-boot-config-jpa-error</groupId>
|
||||||
<artifactId>spring-boot-configuration</artifactId>
|
<artifactId>spring-boot-config-jpa-error</artifactId>
|
||||||
<version>0.0.1-SNAPSHOT</version>
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
</project>
|
</project>
|
|
@ -5,8 +5,8 @@
|
||||||
<version>0.0.1-SNAPSHOT</version>
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>com.baeldung.spring-boot-configuration</groupId>
|
<groupId>com.baeldung.spring-boot-config-jpa-error</groupId>
|
||||||
<artifactId>spring-boot-configuration</artifactId>
|
<artifactId>spring-boot-config-jpa-error</artifactId>
|
||||||
<version>0.0.1-SNAPSHOT</version>
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
</project>
|
</project>
|
|
@ -1,8 +1,8 @@
|
||||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>com.baeldung.spring-boot-configuration</groupId>
|
<groupId>com.baeldung.spring-boot-config-jpa-error</groupId>
|
||||||
<artifactId>spring-boot-configuration</artifactId>
|
<artifactId>spring-boot-config-jpa-error</artifactId>
|
||||||
<version>0.0.1-SNAPSHOT</version>
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
Loading…
Reference in New Issue