1 Star 0 Fork 0

流年/SimpleConfig

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 3.87 KB
一键复制 编辑 原始数据 按行查看 历史
流年 提交于 2023-02-15 15:42 . 2022.02.15-曹东泉-功能优化
<?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>com.liuyun.sc</groupId>
<artifactId>simple-config</artifactId>
<version>${revision}</version>
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>17</java.version>
<github.global.server>github</github.global.server>
<revision>0.1.2-beta-SNAPSHOT</revision>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>2.6.3</version>
</dependency>
<!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.31</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional> <!-- 自动维护additional-spring-configuration-metadata.json -->
<version>2.6.3</version>
</dependency>
<!-- 自动生成spring.factories -->
<dependency>
<groupId>net.dreamlu</groupId>
<artifactId>mica-auto</artifactId>
<version>2.3.0</version>
<scope>provided</scope>
</dependency>
<!-- <dependency>-->
<!-- <groupId>org.slf4j</groupId>-->
<!-- <artifactId>slf4j-api</artifactId>-->
<!-- <version>1.7.32</version>-->
<!-- </dependency>-->
</dependencies>
<developers>
<developer>
<id>ヅてDQ</id>
<name>ヅてDQ</name>
<roles>
<role>Java工程师</role>
</roles>
</developer>
</developers>
<build>
<plugins>
<!--该插件识别java代码 否则自己在Project Structure设置-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<!-- 要将源码放上去,需要加入这个插件 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<attach>true</attach>
</configuration>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<properties>
<revision>0.1.2-beta</revision>
</properties>
</profile>
</profiles>
<distributionManagement>
<repository>
<id>liuyun-mvn-repo-snapshots</id>
<url>http://8.134.69.78:8081/nexus/repository/maven-snapshots/</url>
</repository>
</distributionManagement>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/vvwvvwvvw/simple-config.git
git@gitee.com:vvwvvwvvw/simple-config.git
vvwvvwvvw
simple-config
SimpleConfig
prd

搜索帮助

23e8dbc6 1850385 7e0993f3 1850385