2 Star 0 Fork 0

陈宗杰/LLMmisp(Origin)

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 2.96 KB
一键复制 编辑 原始数据 按行查看 历史
陈宗杰 提交于 2021-11-15 19:56 . 第一次提交:
<?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>edu.scau</groupId>
<artifactId>misp</artifactId>
<!--检查根目录下pom.xml的packaging标签内容设定为pom-->
<packaging>pom</packaging>
<version>1.0</version>
<!--项目子模块-->
<modules>
<module>LLMmis-web</module>
<module>LLMmis-core</module>
<module>LLMmis-pos</module>
<module>LLMmis-sys</module>
<module>LLMmis-lab</module>
</modules>
<!--版本设定-->
<properties>
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<druid.version>1.2.6</druid.version>
<fastjson.version>1.2.76</fastjson.version>
<mybatis-spring-boot.version>2.1.4</mybatis-spring-boot.version>
<pagehelper.boot.version>1.3.1</pagehelper.boot.version>
</properties>
<!--设定SpringBoot依赖管理,之后引入依赖不需要添加版本号-->
<dependencyManagement>
<dependencies>
<!-- SpringBoot的依赖配置-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>2.2.13.RELEASE</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<!--设定maven编译插件为3.1版本-->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
</plugins>
</build>
<!--设定从阿里云下载依赖-->
<repositories>
<repository>
<id>public</id>
<name>aliyun nexus</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<releases>
<enabled>true</enabled>
</releases>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>public</id>
<name>aliyun nexus</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/chen_zongjie/LLMmisp.git
git@gitee.com:chen_zongjie/LLMmisp.git
chen_zongjie
LLMmisp
LLMmisp(Origin)
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385