You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
2.1 KiB
73 lines
2.1 KiB
5 years ago
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
5 years ago
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
5 years ago
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<parent>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-parent</artifactId>
|
||
5 years ago
|
<version>2.2.1.RELEASE</version>
|
||
|
<relativePath /> <!-- lookup parent from repository -->
|
||
5 years ago
|
</parent>
|
||
5 years ago
|
<artifactId>mivan</artifactId>
|
||
5 years ago
|
<version>0.0.1-SNAPSHOT</version>
|
||
5 years ago
|
<name>mivan</name>
|
||
|
<description>Spring MVC and Hibernate project</description>
|
||
5 years ago
|
|
||
|
<properties>
|
||
5 years ago
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||
5 years ago
|
<java.version>1.8</java.version>
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
5 years ago
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
||
5 years ago
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
5 years ago
|
<artifactId>spring-boot-starter-web</artifactId>
|
||
5 years ago
|
</dependency>
|
||
5 years ago
|
<dependency>
|
||
|
<groupId>org.hibernate</groupId>
|
||
|
<artifactId>hibernate-core</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.hibernate</groupId>
|
||
|
<artifactId>hibernate-entitymanager</artifactId>
|
||
|
</dependency>
|
||
|
|
||
5 years ago
|
<dependency>
|
||
|
<groupId>com.h2database</groupId>
|
||
|
<artifactId>h2</artifactId>
|
||
|
<scope>runtime</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-test</artifactId>
|
||
|
<scope>test</scope>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<groupId>org.junit.vintage</groupId>
|
||
|
<artifactId>junit-vintage-engine</artifactId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
5 years ago
|
<configuration>
|
||
|
<executable>true</executable>
|
||
|
<finalName>${project.artifactId}</finalName>
|
||
|
</configuration>
|
||
5 years ago
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
</project>
|