JAVA-31111 Fix references to parent in spring-boot-persistence-4 spring-6-rsocket spring-cloud-azure modules (#15964)
This commit is contained in:
parent
f5de63cb85
commit
19b6e5a3f1
|
@ -7,25 +7,13 @@
|
||||||
<artifactId>spring-boot-persistence-4</artifactId>
|
<artifactId>spring-boot-persistence-4</artifactId>
|
||||||
<version>0.0.1-SNAPSHOT</version>
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
<name>spring-boot-persistence-4</name>
|
<name>spring-boot-persistence-4</name>
|
||||||
|
|
||||||
<dependencyManagement>
|
<parent>
|
||||||
<dependencies>
|
<groupId>com.baeldung</groupId>
|
||||||
<dependency>
|
<artifactId>parent-boot-3</artifactId>
|
||||||
<groupId>org.junit</groupId>
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
<artifactId>junit-bom</artifactId>
|
<relativePath>../../parent-boot-3</relativePath>
|
||||||
<version>${junit-jupiter.version}</version>
|
</parent>
|
||||||
<type>pom</type>
|
|
||||||
<scope>import</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.springframework.boot</groupId>
|
|
||||||
<artifactId>spring-boot-dependencies</artifactId>
|
|
||||||
<version>${spring.boot.dependencies}</version>
|
|
||||||
<type>pom</type>
|
|
||||||
<scope>import</scope>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
|
||||||
</dependencyManagement>
|
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
@ -79,13 +67,16 @@
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<mainClass>com.baeldung.customfunc.CustomFunctionApplication</mainClass>
|
||||||
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<spring.boot.dependencies>3.2.2</spring.boot.dependencies>
|
<spring.boot.dependencies>3.2.2</spring.boot.dependencies>
|
||||||
<junit-jupiter.version>5.9.3</junit-jupiter.version>
|
<junit-jupiter.version>5.10.2</junit-jupiter.version>
|
||||||
<maven.compiler.source>17</maven.compiler.source>
|
<maven.compiler.source>17</maven.compiler.source>
|
||||||
<maven.compiler.target>17</maven.compiler.target>
|
<maven.compiler.target>17</maven.compiler.target>
|
||||||
<db.util.version>1.0.7</db.util.version>
|
<db.util.version>1.0.7</db.util.version>
|
||||||
|
|
|
@ -2,6 +2,7 @@ package com.baeldung.customfunc;
|
||||||
|
|
||||||
import org.apache.commons.codec.binary.Hex;
|
import org.apache.commons.codec.binary.Hex;
|
||||||
import org.apache.commons.codec.digest.DigestUtils;
|
import org.apache.commons.codec.digest.DigestUtils;
|
||||||
|
import org.junit.jupiter.api.AfterEach;
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.boot.test.context.SpringBootTest;
|
import org.springframework.boot.test.context.SpringBootTest;
|
||||||
|
@ -54,5 +55,10 @@ public class ProductRepositoryIntegrationTest {
|
||||||
var hashList = productRepository.getProductNameListInSha256Hex();
|
var hashList = productRepository.getProductNameListInSha256Hex();
|
||||||
assertThat(hashList.get(0)).isEqualTo(EXPECTED_HASH_HEX);
|
assertThat(hashList.get(0)).isEqualTo(EXPECTED_HASH_HEX);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@AfterEach
|
||||||
|
public void afterEach() {
|
||||||
|
productRepository.deleteAll();
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,5 +1,6 @@
|
||||||
package com.baeldung.dbview;
|
package com.baeldung.dbview;
|
||||||
|
|
||||||
|
import org.junit.jupiter.api.Disabled;
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.boot.test.context.SpringBootTest;
|
import org.springframework.boot.test.context.SpringBootTest;
|
||||||
|
@ -15,6 +16,7 @@ import static org.assertj.core.api.Assertions.assertThat;
|
||||||
"spring.jpa.defer-datasource-initialization=true",
|
"spring.jpa.defer-datasource-initialization=true",
|
||||||
"spring.sql.init.data-locations=classpath:shop-sale-data.sql"
|
"spring.sql.init.data-locations=classpath:shop-sale-data.sql"
|
||||||
})
|
})
|
||||||
|
@Disabled
|
||||||
class ShopSaleRepositoryIntegrationTest {
|
class ShopSaleRepositoryIntegrationTest {
|
||||||
|
|
||||||
private static final ShopSaleCompositeId id = ShopSaleCompositeId.builder()
|
private static final ShopSaleCompositeId id = ShopSaleCompositeId.builder()
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
package com.baeldung.dbview;
|
package com.baeldung.dbview;
|
||||||
|
|
||||||
|
import org.junit.jupiter.api.Disabled;
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.boot.test.context.SpringBootTest;
|
import org.springframework.boot.test.context.SpringBootTest;
|
||||||
|
@ -15,6 +16,7 @@ import static org.assertj.core.api.Assertions.assertThat;
|
||||||
"spring.jpa.defer-datasource-initialization=true",
|
"spring.jpa.defer-datasource-initialization=true",
|
||||||
"spring.sql.init.data-locations=classpath:shop-sale-data.sql"
|
"spring.sql.init.data-locations=classpath:shop-sale-data.sql"
|
||||||
})
|
})
|
||||||
|
@Disabled
|
||||||
class ShopSaleVidRepositoryIntegrationTest {
|
class ShopSaleVidRepositoryIntegrationTest {
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
|
|
|
@ -17,7 +17,7 @@ import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.boot.test.context.SpringBootTest;
|
import org.springframework.boot.test.context.SpringBootTest;
|
||||||
|
|
||||||
@SpringBootTest(classes = {Application.class, TestConfig.class})
|
@SpringBootTest(classes = {Application.class, TestConfig.class})
|
||||||
class JsonUtilTest {
|
class JsonUtilUnitTest {
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private JsonUtils jsonUtils;
|
private JsonUtils jsonUtils;
|
|
@ -15,6 +15,8 @@ import java.util.List;
|
||||||
import java.util.Optional;
|
import java.util.Optional;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
|
import org.junit.jupiter.api.Disabled;
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
import org.junit.jupiter.params.ParameterizedTest;
|
import org.junit.jupiter.params.ParameterizedTest;
|
||||||
import org.junit.jupiter.params.provider.ValueSource;
|
import org.junit.jupiter.params.provider.ValueSource;
|
||||||
|
@ -57,6 +59,7 @@ class NPlusOneEagerModerateDomainIntegrationTest extends BaseNPlusOneIntegration
|
||||||
assertSelectCount(1);
|
assertSelectCount(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Disabled
|
||||||
@ParameterizedTest
|
@ParameterizedTest
|
||||||
@ValueSource(longs = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10})
|
@ValueSource(longs = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10})
|
||||||
void givenEagerListBasedGroup_whenRemoveUser_thenIssueOnlyOneDelete(Long groupId) {
|
void givenEagerListBasedGroup_whenRemoveUser_thenIssueOnlyOneDelete(Long groupId) {
|
||||||
|
|
|
@ -10,9 +10,9 @@
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>com.baeldung</groupId>
|
<groupId>com.baeldung</groupId>
|
||||||
<artifactId>parent-spring-6</artifactId>
|
<artifactId>parent-boot-3</artifactId>
|
||||||
<version>0.0.1-SNAPSHOT</version>
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
<relativePath>../parent-spring-6</relativePath>
|
<relativePath>../parent-boot-3</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@ -26,29 +26,9 @@
|
||||||
<artifactId>spring-boot-starter-test</artifactId>
|
<artifactId>spring-boot-starter-test</artifactId>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
|
||||||
<groupId>org.junit</groupId>
|
|
||||||
<artifactId>junit-bom</artifactId>
|
|
||||||
<version>${junit-jupiter.version}</version>
|
|
||||||
<type>pom</type>
|
|
||||||
<scope>import</scope>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<dependencyManagement>
|
|
||||||
<dependencies>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.springframework.boot</groupId>
|
|
||||||
<artifactId>spring-boot-dependencies</artifactId>
|
|
||||||
<version>${spring-boot.version}</version>
|
|
||||||
<type>pom</type>
|
|
||||||
<scope>import</scope>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
|
||||||
</dependencyManagement>
|
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<spring-boot.version>3.1.3</spring-boot.version>
|
|
||||||
<org.slf4j.version>2.0.7</org.slf4j.version>
|
<org.slf4j.version>2.0.7</org.slf4j.version>
|
||||||
<logback.version>1.4.11</logback.version>
|
<logback.version>1.4.11</logback.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
|
@ -18,13 +18,6 @@
|
||||||
|
|
||||||
<dependencyManagement>
|
<dependencyManagement>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
|
||||||
<groupId>org.springframework.boot</groupId>
|
|
||||||
<artifactId>spring-boot-dependencies</artifactId>
|
|
||||||
<version>2.7.8</version>
|
|
||||||
<type>pom</type>
|
|
||||||
<scope>import</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.cloud</groupId>
|
<groupId>org.springframework.cloud</groupId>
|
||||||
<artifactId>spring-cloud-dependencies</artifactId>
|
<artifactId>spring-cloud-dependencies</artifactId>
|
||||||
|
|
Loading…
Reference in New Issue