* JAVA-14723 Convert spring-mvc-basics-4 to Spring Boot project and update articles * JAVA-14723 Refactoring and remove unused files * JAVA-14723 remove the WEB-INF and migrate jsp to html * JAVA-14723 Add back the removed test and rename the test into: ArticleViewerControllerWithRequiredAttributeIntegrationTest --------- Co-authored-by: timis1 <noreplay@yahoo.com>
		
			
				
	
	
		
			41 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.5 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>
 | 
						|
    <artifactId>spring-mvc-basics-4</artifactId>
 | 
						|
    <name>spring-mvc-basics-4</name>
 | 
						|
    <packaging>war</packaging>
 | 
						|
 | 
						|
    <parent>
 | 
						|
        <groupId>com.baeldung</groupId>
 | 
						|
        <artifactId>parent-boot-2</artifactId>
 | 
						|
        <version>0.0.1-SNAPSHOT</version>
 | 
						|
        <relativePath>../../parent-boot-2</relativePath>
 | 
						|
    </parent>
 | 
						|
 | 
						|
    <dependencies>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.boot</groupId>
 | 
						|
            <artifactId>spring-boot-starter-validation</artifactId>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.boot</groupId>
 | 
						|
            <artifactId>spring-boot-starter-web</artifactId>
 | 
						|
            <version>3.0.2</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.apache.tomcat.embed</groupId>
 | 
						|
            <artifactId>tomcat-embed-jasper</artifactId>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>javax.servlet</groupId>
 | 
						|
            <artifactId>jstl</artifactId>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.boot</groupId>
 | 
						|
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
 | 
						|
        </dependency>
 | 
						|
    </dependencies>
 | 
						|
 | 
						|
</project> |