1 Star 1 Fork 0

隔壁老于 / easy-do-plugins-gen-standalone

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 2.18 KB
一键复制 编辑 原始数据 按行查看 历史
yuzhafneng 提交于 2022-06-18 13:23 . 本地最新变更备份
<?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>plus.easydo</groupId>
<artifactId>easy-do-dependencies</artifactId>
<version>1.0.7</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>easy-do-generate-standalone</artifactId>
<name>easy-do-generate-standalone</name>
<version>${revision}</version>
<description>代码生成模块-单机版</description>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<artifactId>log4j-to-slf4j</artifactId>
<groupId>org.apache.logging.log4j</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>plus.easydo</groupId>
<artifactId>easy-do-generate</artifactId>
<version>${revision}</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>runtime</scope>
</dependency>
</dependencies>
<build>
<finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Java
1
https://gitee.com/yuzhanfeng/easy-do-plugins-gen-standalone.git
git@gitee.com:yuzhanfeng/easy-do-plugins-gen-standalone.git
yuzhanfeng
easy-do-plugins-gen-standalone
easy-do-plugins-gen-standalone
master

搜索帮助