1 Star 1 Fork 0

yinshuang/nlp-address-app

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
dependency-reduced-pom.xml 2.75 KB
一键复制 编辑 原始数据 按行查看 历史
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.banana</groupId>
<artifactId>nlp-address-app</artifactId>
<name>nlp-address-app</name>
<version>1.0.0-SNAPSHOT</version>
<description>an application for address recognition</description>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.2</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer>
<mainClass>NlpAddressAppApplication</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.verison}</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<encoding>${project.build.sourceEncoding}</encoding>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>javafx-plus</id>
<name>javafx-plus-releases</name>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>javafx-plus</id>
<name>javafx-plus-snapshots</name>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<properties>
<json.version>20240303</json.version>
<lombok.version>1.18.28</lombok.version>
<maven-compiler-plugin.verison>3.8.1</maven-compiler-plugin.verison>
<hutool.version>5.8.27</hutool.version>
<junit.version>5.10.2</junit.version>
<java.version>1.8</java.version>
<javafx.plus.version>1.3.0-SNAPSHOT</javafx.plus.version>
<okhttp.version>4.12.0</okhttp.version>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<easy.excel.version>3.3.4</easy.excel.version>
<fastjson.version>2.0.47</fastjson.version>
</properties>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/yinshuang/nlp-address-app.git
git@gitee.com:yinshuang/nlp-address-app.git
yinshuang
nlp-address-app
nlp-address-app
master

搜索帮助