You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
149 lines
5.1 KiB
149 lines
5.1 KiB
<?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>cn.stylefeng.guns</groupId> |
|
<artifactId>guns-generator</artifactId> |
|
<version>1.0.0</version> |
|
|
|
<packaging>jar</packaging> |
|
|
|
<name>guns-generator</name> |
|
<description>代码生成器</description> |
|
|
|
<parent> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-parent</artifactId> |
|
<version>2.0.1.RELEASE</version> |
|
</parent> |
|
|
|
<properties> |
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
|
<java.version>1.8</java.version> |
|
</properties> |
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>cn.stylefeng.roses</groupId> |
|
<artifactId>kernel-core</artifactId> |
|
<version>1.1.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.ibeetl</groupId> |
|
<artifactId>beetl</artifactId> |
|
<version>2.9.3</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.baomidou</groupId> |
|
<artifactId>mybatis-plus-generate</artifactId> |
|
<version>2.3</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.velocity</groupId> |
|
<artifactId>velocity-engine-core</artifactId> |
|
<version>2.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-web</artifactId> |
|
<scope>provided</scope> |
|
</dependency> |
|
</dependencies> |
|
|
|
<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> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-source-plugin</artifactId> |
|
<version>3.0.1</version> |
|
<configuration> |
|
<attach>true</attach> |
|
</configuration> |
|
<executions> |
|
<execution> |
|
<phase>compile</phase> |
|
<goals> |
|
<goal>jar</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-javadoc-plugin</artifactId> |
|
<version>2.9.1</version> |
|
<executions> |
|
<execution> |
|
<phase>package</phase> |
|
<goals> |
|
<goal>jar</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
<configuration> |
|
<additionalparam>-Xdoclint:none</additionalparam> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-gpg-plugin</artifactId> |
|
<version>1.5</version> |
|
<executions> |
|
<execution> |
|
<phase>verify</phase> |
|
<goals> |
|
<goal>sign</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
</plugins> |
|
<resources> |
|
<resource> |
|
<directory>src/main/resources</directory> |
|
</resource> |
|
<resource> |
|
<directory>src/main/java</directory> |
|
<includes> |
|
<include>**/*.xml</include> |
|
</includes> |
|
</resource> |
|
</resources> |
|
</build> |
|
|
|
<developers> |
|
<developer> |
|
<name>stylefeng</name> |
|
<email>sn93@qq.com</email> |
|
</developer> |
|
</developers> |
|
|
|
<scm> |
|
<connection>scm:git@gitee.com:stylefeng/guns-generator.git</connection> |
|
<developerConnection>scm:git@gitee.com:stylefeng/guns-generator.git</developerConnection> |
|
<url>https://gitee.com/stylefeng/guns-generator</url> |
|
</scm> |
|
|
|
<distributionManagement> |
|
<snapshotRepository> |
|
<id>center</id> |
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url> |
|
</snapshotRepository> |
|
<repository> |
|
<id>center</id> |
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> |
|
</repository> |
|
</distributionManagement> |
|
|
|
</project>
|
|
|