3 Star 1 Fork 1

逸风如梦 / Rapid-Code-Generate-Plugin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 2.46 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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.dd.plugin</groupId>
<artifactId>plugin-code-auto-generate</artifactId>
<version>1.0</version>
<packaging>maven-plugin</packaging>
<name>CodeAutoGenerate-Plugin</name>
<url>http://maven.apache.org</url>
<description>A simple code generate plugin</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jdbc.driver.groupId>com.oracle</jdbc.driver.groupId>
<jdbc.driver.artifactId>ojdbc6</jdbc.driver.artifactId>
<jdbc.driver.version>11.2.0.1.0</jdbc.driver.version>
</properties>
<dependencies>
<dependency>
<groupId>${jdbc.driver.groupId}</groupId>
<artifactId>${jdbc.driver.artifactId}</artifactId>
<version>${jdbc.driver.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>3.0.3</version>
</dependency>
<!--代码生成器-->
<dependency>
<groupId>com.googlecode.rapid-framework.dd</groupId>
<artifactId>rapid-generator</artifactId>
<version>4.0.6</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.3.2</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>releases</id>
<name>Nexus Release Repository</name>
<url>http://123.15.36.218:8888/nexus/content/repositories/releases/</url>
</repository>
<snapshotRepository>
<id>snapshots</id>
<name>Nexus Snapshot Repository</name>
<url>http://123.15.36.218:8888/nexus/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
</project>
Java
1
https://gitee.com/dongrui/Rapid-Code-Generate-Plugin.git
git@gitee.com:dongrui/Rapid-Code-Generate-Plugin.git
dongrui
Rapid-Code-Generate-Plugin
Rapid-Code-Generate-Plugin
master

搜索帮助