mirror of
https://github.com/JeffLi1993/springboot-learning-example.git
synced 2026-03-14 06:03:52 +08:00
Bumps [junit](https://github.com/junit-team/junit4) from 4.12 to 4.13.1. - [Release notes](https://github.com/junit-team/junit4/releases) - [Changelog](https://github.com/junit-team/junit4/blob/main/doc/ReleaseNotes4.12.md) - [Commits](https://github.com/junit-team/junit4/compare/r4.12...r4.13.1) Signed-off-by: dependabot[bot] <support@github.com>
52 lines
1.6 KiB
XML
52 lines
1.6 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>
|
|
|
|
<groupId>springboot</groupId>
|
|
<artifactId>springboot-hbase</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<name>springboot-hbase</name>
|
|
|
|
<!-- Spring Boot 启动父依赖 -->
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>1.5.6.RELEASE</version>
|
|
</parent>
|
|
|
|
<properties>
|
|
<hbase-spring-boot>1.0.0.RELEASE</hbase-spring-boot>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<!-- Spring Boot Web 依赖 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Spring Boot Test 依赖 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<!-- Spring Boot HBase 依赖 -->
|
|
<dependency>
|
|
<groupId>com.spring4all</groupId>
|
|
<artifactId>spring-boot-starter-hbase</artifactId>
|
|
<version>${hbase-spring-boot}</version>
|
|
</dependency>
|
|
|
|
<!-- Junit -->
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.13.1</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|