1 Star 0 Fork 0

silzhan/springboot-jsr303-example

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 4.72 KB
一键复制 编辑 原始数据 按行查看 历史
sunzhan 提交于 2024-09-21 19:20 +08:00 . init
<?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 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>
<version>2.5.4</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.example</groupId>
<artifactId>springboot-demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>springboot-demo</name>
<description>Demo project for Spring Boot</description>
<url/>
<licenses>
<license/>
</licenses>
<developers>
<developer/>
</developers>
<scm>
<connection/>
<developerConnection/>
<tag/>
<url/>
</scm>
<properties>
<java.version>8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.20</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.6</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math3</artifactId>
<version>3.6.1</version>
</dependency>
<dependency>
<groupId>com.github.magese</groupId>
<artifactId>ik-analyzer</artifactId>
<version>8.3.0</version>
</dependency>
<dependency>
<groupId>org.wltea.ik-analyzer</groupId>
<artifactId>ik-analyzer</artifactId>
<version>3.2.8</version>
</dependency>
<!-- Apache Commons Lang -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.12.0</version>
</dependency>
<dependency>
<groupId>com.github.rholder</groupId>
<artifactId>snowball-stemmer</artifactId>
<version>1.3.0.581.1</version>
</dependency>
<!-- &lt;!&ndash; Snowball Stemmer &ndash;&gt;-->
<!-- <dependency>-->
<!-- <groupId>net.sf.snowball-stemmer</groupId>-->
<!-- <artifactId>snowball-core</artifactId>-->
<!-- <version>2.2.0</version>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>net.sf.snowball-stemmer</groupId>-->
<!-- <artifactId>snowball</artifactId>-->
<!-- <version>2.2.0</version>-->
<!-- </dependency>-->
<!-- https://mvnrepository.com/artifact/snowball-stemmer/snowball-stemmer -->
<!-- <dependency>-->
<!-- <groupId>snowball-stemmer</groupId>-->
<!-- <artifactId>snowball-stemmer</artifactId>-->
<!-- <version>0.1.1</version>-->
<!-- </dependency>-->
<!-- &lt;!&ndash; LingPipe &ndash;&gt;-->
<!-- <dependency>-->
<!-- <groupId>com.linguisticsoftware</groupId>-->
<!-- <artifactId>lingpipe</artifactId>-->
<!-- <version>5.1.0</version>-->
<!-- </dependency>-->
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.5.4</version>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/silzhan/springboot-jsr303-example.git
git@gitee.com:silzhan/springboot-jsr303-example.git
silzhan
springboot-jsr303-example
springboot-jsr303-example
master

搜索帮助