* JAVA-2563: Upgrade Spring Boot version to 2.3.3.RELEASE * JAVA-2563: Downgrade spring-cloud-connectors-heroku to Spring Boot 2.2.6.RELEASE * JAVA-2563: Add joda-time version * JAVA-2563: Add spring-boot-starter-validation dependency * JAVA-2563: Add spring-boot-starter-validation dependency * JAVA-2563: Add spring-boot-starter-validation dependency * JAVA-2563: Add spring-boot-starter-validation dependency * JAVA-2563: Add spring-boot-starter-validation dependency * JAVA-2563: Use MongoClients factory instead of MongoClient directly * JAVA-2563: Downgrade spring-5-data-reactive to Spring Boot 2.2.6.RELEASE * JAVA-2563: Switch back to default bootstrap mode for JPA * JAVA-2563: Add spring-boot-starter-validation dependency * JAVA-2563: Switch from ServerHttpRequest to ServerWebExchange interface * JAVA-2563: Use OutputCaptureRule instead of OutputCapture * JAVA-2563: Add spring-boot-starter-validation dependency * JAVA-2563: Add spring-boot-starter-validation dependency * JAVA-2563: Add spring-boot-starter-validation dependency * JAVA-2563: Fix Jackson dependency * JAVA-2563: Fix ManualEmbeddedMongoDbIntegrationTest * JAVA-2563: Replace validation-api with spring-boot-starter-validation * JAVA-2563: Fix usage of deprecated getErrorAttributes method * JAVA-2563: Downgrade spring-data-cassandra-reactive to Spring Boot 2.2.6.RELEASE * JAVA-2563: Set spring.datasource.generate-unique-name to false in spring-session-jdbc
		
			
				
	
	
		
			152 lines
		
	
	
		
			5.4 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			152 lines
		
	
	
		
			5.4 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="UTF-8"?>
 | |
| <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">
 | |
|     <modelVersion>4.0.0</modelVersion>
 | |
| 
 | |
|     <parent>
 | |
|         <groupId>com.baeldung.spring-boot-modules</groupId>
 | |
|         <artifactId>spring-boot-modules</artifactId>
 | |
|         <version>1.0.0-SNAPSHOT</version>
 | |
|         <relativePath>../</relativePath>
 | |
|     </parent>
 | |
| 
 | |
|     <artifactId>spring-boot-testing</artifactId>
 | |
|     <packaging>war</packaging>
 | |
| 
 | |
|     <name>spring-boot-testing</name>
 | |
|     <description>This is simple boot application for demonstrating testing features.</description>
 | |
| 
 | |
|     <dependencies>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-data-redis</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-web</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-validation</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-tomcat</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-security</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-data-jpa</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>com.h2database</groupId>
 | |
|             <artifactId>h2</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-test</artifactId>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
| 
 | |
|         <!-- Embedded Redis Server -->
 | |
|         <dependency>
 | |
|             <groupId>it.ozimov</groupId>
 | |
|             <artifactId>embedded-redis</artifactId>
 | |
|             <version>${redis.version}</version>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
|         <!-- Spock & Spring -->
 | |
|         <dependency>
 | |
|             <groupId>org.spockframework</groupId>
 | |
|             <artifactId>spock-core</artifactId>
 | |
|             <version>${spock.version}</version>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>org.spockframework</groupId>
 | |
|             <artifactId>spock-spring</artifactId>
 | |
|             <version>${spock.version}</version>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>io.rest-assured</groupId>
 | |
|             <artifactId>rest-assured</artifactId>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
| 
 | |
|     </dependencies>
 | |
| 
 | |
|     <build>
 | |
|         <finalName>spring-boot-testing</finalName>
 | |
|         <resources>
 | |
|             <resource>
 | |
|                 <directory>src/main/resources</directory>
 | |
|                 <filtering>true</filtering>
 | |
|             </resource>
 | |
|         </resources>
 | |
| 
 | |
|         <plugins>
 | |
| 
 | |
|             <plugin>
 | |
|                 <groupId>org.apache.maven.plugins</groupId>
 | |
|                 <artifactId>maven-war-plugin</artifactId>
 | |
|             </plugin>
 | |
| 
 | |
|             <plugin>
 | |
|                 <groupId>pl.project13.maven</groupId>
 | |
|                 <artifactId>git-commit-id-plugin</artifactId>
 | |
|                 <version>${git-commit-id-plugin.version}</version>
 | |
|                 <executions>
 | |
|                     <execution>
 | |
|                         <id>get-the-git-infos</id>
 | |
|                         <goals>
 | |
|                             <goal>revision</goal>
 | |
|                         </goals>
 | |
|                         <phase>initialize</phase>
 | |
|                     </execution>
 | |
|                     <execution>
 | |
|                         <id>validate-the-git-infos</id>
 | |
|                         <goals>
 | |
|                             <goal>validateRevision</goal>
 | |
|                         </goals>
 | |
|                         <phase>package</phase>
 | |
|                     </execution>
 | |
|                 </executions>
 | |
|                 <configuration>
 | |
|                     <generateGitPropertiesFile>true</generateGitPropertiesFile>
 | |
|                     <generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties</generateGitPropertiesFilename>
 | |
|                 </configuration>
 | |
|             </plugin>
 | |
| 
 | |
|             <plugin>
 | |
|                 <groupId>org.codehaus.gmavenplus</groupId>
 | |
|                 <artifactId>gmavenplus-plugin</artifactId>
 | |
|                 <version>${gmavenplus-plugin.version}</version>
 | |
|                 <executions>
 | |
|                     <execution>
 | |
|                         <goals>
 | |
|                             <goal>compileTests</goal>
 | |
|                         </goals>
 | |
|                     </execution>
 | |
|                 </executions>
 | |
|             </plugin>
 | |
|         </plugins>
 | |
|     </build>
 | |
| 
 | |
|     <properties>
 | |
|         <!-- The main class to start by executing java -jar -->
 | |
|         <start-class>com.baeldung.boot.Application</start-class>
 | |
|         <git-commit-id-plugin.version>2.2.4</git-commit-id-plugin.version>
 | |
|         <spock.version>1.2-groovy-2.4</spock.version>
 | |
|         <gmavenplus-plugin.version>1.6</gmavenplus-plugin.version>
 | |
|         <redis.version>0.7.2</redis.version>
 | |
|     </properties>
 | |
| 
 | |
| </project>
 |