Пересобираем с нуля
This commit is contained in:
		
							parent
							
								
									124c56758e
								
							
						
					
					
						commit
						ffc52cf419
					
				
							
								
								
									
										42
									
								
								pom.xml
								
								
								
								
							
							
						
						
									
										42
									
								
								pom.xml
								
								
								
								
							|  | @ -8,11 +8,11 @@ | |||
| 		<version>3.2.2</version> | ||||
| 		<relativePath/> <!-- lookup parent from repository --> | ||||
| 	</parent> | ||||
| 	<groupId>com.dhaverd</groupId> | ||||
| 	<artifactId>backlog</artifactId> | ||||
| 	<groupId>dhaverd</groupId> | ||||
| 	<artifactId>backlog-spring</artifactId> | ||||
| 	<version>0.0.1-SNAPSHOT</version> | ||||
| 	<name>backlog</name> | ||||
| 	<description>Backlogging Spring Boot web application</description> | ||||
| 	<name>backlog-spring</name> | ||||
| 	<description>backlog-spring</description> | ||||
| 	<properties> | ||||
| 		<java.version>21</java.version> | ||||
| 	</properties> | ||||
|  | @ -21,26 +21,38 @@ | |||
| 			<groupId>org.springframework.boot</groupId> | ||||
| 			<artifactId>spring-boot-starter-data-jpa</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-thymeleaf</artifactId> | ||||
| 		</dependency> | ||||
| 		<dependency> | ||||
| 			<groupId>org.springframework.boot</groupId> | ||||
| 			<artifactId>spring-boot-starter-web</artifactId> | ||||
| 		</dependency> | ||||
| 		<dependency> | ||||
| 			<groupId>org.thymeleaf.extras</groupId> | ||||
| 			<artifactId>thymeleaf-extras-springsecurity6</artifactId> | ||||
| 		</dependency> | ||||
| 
 | ||||
| 		<dependency> | ||||
| 			<groupId>com.h2database</groupId> | ||||
| 			<artifactId>h2</artifactId> | ||||
| 			<groupId>com.mysql</groupId> | ||||
| 			<artifactId>mysql-connector-j</artifactId> | ||||
| 			<scope>runtime</scope> | ||||
| 		</dependency> | ||||
| 		<dependency> | ||||
| 			<groupId>org.projectlombok</groupId> | ||||
| 			<artifactId>lombok</artifactId> | ||||
| 			<optional>true</optional> | ||||
| 		</dependency> | ||||
| 		<dependency> | ||||
| 			<groupId>org.springframework.boot</groupId> | ||||
| 			<artifactId>spring-boot-starter-test</artifactId> | ||||
| 			<scope>test</scope> | ||||
| 		</dependency> | ||||
| 		<dependency> | ||||
| 			<groupId>org.springframework.security</groupId> | ||||
| 			<artifactId>spring-security-test</artifactId> | ||||
| 			<scope>test</scope> | ||||
| 		</dependency> | ||||
| 	</dependencies> | ||||
| 
 | ||||
| 	<build> | ||||
|  | @ -48,14 +60,6 @@ | |||
| 			<plugin> | ||||
| 				<groupId>org.springframework.boot</groupId> | ||||
| 				<artifactId>spring-boot-maven-plugin</artifactId> | ||||
| 				<configuration> | ||||
| 					<excludes> | ||||
| 						<exclude> | ||||
| 							<groupId>org.projectlombok</groupId> | ||||
| 							<artifactId>lombok</artifactId> | ||||
| 						</exclude> | ||||
| 					</excludes> | ||||
| 				</configuration> | ||||
| 			</plugin> | ||||
| 		</plugins> | ||||
| 	</build> | ||||
|  |  | |||
|  | @ -1,13 +1,13 @@ | |||
| package com.dhaverd.backlog; | ||||
| package dhaverd.backlogspring; | ||||
| 
 | ||||
| import org.springframework.boot.SpringApplication; | ||||
| import org.springframework.boot.autoconfigure.SpringBootApplication; | ||||
| 
 | ||||
| @SpringBootApplication | ||||
| public class BacklogApplication { | ||||
| public class BacklogSpringApplication { | ||||
| 
 | ||||
| 	public static void main(String[] args) { | ||||
| 		SpringApplication.run(BacklogApplication.class, args); | ||||
| 		SpringApplication.run(BacklogSpringApplication.class, args); | ||||
| 	} | ||||
| 
 | ||||
| } | ||||
|  | @ -1,10 +1,10 @@ | |||
| package com.dhaverd.backlog; | ||||
| package dhaverd.backlogspring; | ||||
| 
 | ||||
| import org.junit.jupiter.api.Test; | ||||
| import org.springframework.boot.test.context.SpringBootTest; | ||||
| 
 | ||||
| @SpringBootTest | ||||
| class BacklogApplicationTests { | ||||
| class BacklogSpringApplicationTests { | ||||
| 
 | ||||
| 	@Test | ||||
| 	void contextLoads() { | ||||
		Loading…
	
		Reference in New Issue