1 Star 0 Fork 0

myjdbc-group/myjdbc-web-security-rd

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 2.80 KB
一键复制 编辑 原始数据 按行查看 历史
陈sir 提交于 2022-05-06 21:18 . Initial commit
<?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>
<parent>
<groupId>com.myjdbc</groupId>
<artifactId>myjdbc-starter-parent</artifactId>
<version>1.0.4</version>
</parent>
<groupId>com.myjdbc.web</groupId>
<artifactId>myjdbc-web-security-rd</artifactId>
<version>1.0.0</version>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>
<dependencies>
<!-- 安全框架 -->
<dependency>
<groupId>com.myjdbc.web</groupId>
<artifactId>myjdbc-web-security</artifactId>
</dependency>
<!-- 安全框架 -->
<dependency>
<groupId>com.myjdbc.web</groupId>
<artifactId>myjdbc-web-orm</artifactId>
</dependency>
<!-- Excel插件 -->
<dependency>
<groupId>com.myjdbc.module</groupId>
<artifactId>myjdbc-module-excel</artifactId>
</dependency>
</dependencies>
<!--阿里私有云Maven仓库-->
<distributionManagement>
<repository>
<id>rdc-releases</id>
<url>https://repo.rdc.aliyun.com/repository/49922-release-Ezq88P/</url>
</repository>
<snapshotRepository>
<id>rdc-snapshots</id>
<url>https://repo.rdc.aliyun.com/repository/49922-snapshot-RvgibH/</url>
</snapshotRepository>
</distributionManagement>
<build>
<plugins>
<!--上传source.jar 非必须 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- maven的插件方式来升级整个项目的版本号 -->
<!--设置新的版本号未1.2.0-SNAPSHOT-->
<!--mvn versions:set -DnewVersion=1.2.0-SNAPSHOT-->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.3</version>
<configuration>
<generateBackupPoms>false</generateBackupPoms>
</configuration>
</plugin>
</plugins>
</build>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/myjdbc-group/myjdbc-web-security-rd.git
git@gitee.com:myjdbc-group/myjdbc-web-security-rd.git
myjdbc-group
myjdbc-web-security-rd
myjdbc-web-security-rd
master

搜索帮助