|
|
@ -17,58 +17,82 @@ |
|
|
|
<java.version>17</java.version> |
|
|
|
</properties> |
|
|
|
<dependencies> |
|
|
|
|
|
|
|
<dependency> |
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
<artifactId>spring-boot-starter-data-jdbc</artifactId> |
|
|
|
<artifactId>spring-boot-starter-web</artifactId> |
|
|
|
</dependency> |
|
|
|
|
|
|
|
<dependency> |
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId> |
|
|
|
<artifactId>spring-boot-devtools</artifactId> |
|
|
|
<scope>runtime</scope> |
|
|
|
<optional>true</optional> |
|
|
|
</dependency> |
|
|
|
|
|
|
|
<dependency> |
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId> |
|
|
|
<artifactId>spring-boot-starter-data-jdbc</artifactId> |
|
|
|
</dependency> |
|
|
|
<dependency> |
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
<artifactId>spring-boot-starter-web</artifactId> |
|
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId> |
|
|
|
</dependency> |
|
|
|
|
|
|
|
<dependency> |
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
<artifactId>spring-boot-devtools</artifactId> |
|
|
|
<groupId>org.mariadb.jdbc</groupId> |
|
|
|
<artifactId>mariadb-java-client</artifactId> |
|
|
|
<scope>runtime</scope> |
|
|
|
<optional>true</optional> |
|
|
|
</dependency> |
|
|
|
|
|
|
|
<dependency> |
|
|
|
<groupId>org.springframework.session</groupId> |
|
|
|
<artifactId>spring-session-data-redis</artifactId> |
|
|
|
<version>2.7.0</version> |
|
|
|
</dependency> |
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/com.h2database/h2 --> |
|
|
|
<dependency> |
|
|
|
<groupId>com.h2database</groupId> |
|
|
|
<artifactId>h2</artifactId> |
|
|
|
<scope>runtime</scope> |
|
|
|
</dependency> |
|
|
|
|
|
|
|
<dependency> |
|
|
|
<groupId>org.mariadb.jdbc</groupId> |
|
|
|
<artifactId>mariadb-java-client</artifactId> |
|
|
|
<scope>runtime</scope> |
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId> |
|
|
|
</dependency> |
|
|
|
<!-- https://mvnrepository.com/artifact/org.springframework.data/spring-data-mongodb --> |
|
|
|
|
|
|
|
<dependency> |
|
|
|
<groupId>org.springframework.data</groupId> |
|
|
|
<artifactId>spring-data-mongodb</artifactId> |
|
|
|
<version>4.0.1</version> |
|
|
|
<groupId>org.webjars</groupId> |
|
|
|
<artifactId>bootstrap</artifactId> |
|
|
|
<version>5.2.2</version> |
|
|
|
</dependency> |
|
|
|
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-data-mongodb --> |
|
|
|
|
|
|
|
<dependency> |
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
<artifactId>spring-boot-starter-data-mongodb</artifactId> |
|
|
|
<version>3.0.2</version> |
|
|
|
<groupId>org.webjars.bower</groupId> |
|
|
|
<artifactId>jquery</artifactId> |
|
|
|
<version>3.6.1</version> |
|
|
|
</dependency> |
|
|
|
|
|
|
|
<dependency> |
|
|
|
<groupId>org.webjars</groupId> |
|
|
|
<artifactId>font-awesome</artifactId> |
|
|
|
<version>6.2.0</version> |
|
|
|
</dependency> |
|
|
|
|
|
|
|
<dependency> |
|
|
|
<groupId>org.webjars</groupId> |
|
|
|
<artifactId>webjars-locator</artifactId> |
|
|
|
<version>0.46</version> |
|
|
|
</dependency> |
|
|
|
|
|
|
|
<dependency> |
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
<artifactId>spring-boot-starter-test</artifactId> |
|
|
|
<scope>test</scope> |
|
|
|
</dependency> |
|
|
|
|
|
|
|
</dependencies> |
|
|
|
|
|
|
|
<build> |
|
|
@ -76,6 +100,7 @@ |
|
|
|
<plugin> |
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId> |
|
|
|
<version>${project.parent.version}</version> |
|
|
|
</plugin> |
|
|
|
</plugins> |
|
|
|
</build> |
|
|
|