1 Star 0 Fork 32

游龙698 / jeeweb-generator

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 4.60 KB
一键复制 编辑 原始数据 按行查看 历史
wangcunjian 提交于 2018-10-08 11:46 . 代码生成器1.0.4.RELEASE
<?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">
<!--基于Springboot-->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.1.RELEASE</version>
<relativePath/>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>cn.jeeweb</groupId>
<artifactId>jeeweb-generator</artifactId>
<packaging>jar</packaging>
<version>1.0.4.RELEASE</version>
<url>http://www.jeeweb.cn</url>
<properties>
<shiro.version>1.3.2</shiro.version>
<jeeweb.version>1.0.4.RELEASE</jeeweb.version>
</properties>
<dependencies>
<!--spring boot 相关开始-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<!--spring boot 相关结束-->
<!--热部署动态更新-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
<!--引入标签-->
<dependency>
<groupId>cn.jeeweb</groupId>
<artifactId>jeeweb-common-mybatismvc</artifactId>
<version>${jeeweb.version}</version>
</dependency>
<dependency>
<groupId>cn.jeeweb</groupId>
<artifactId>jeeweb-ui-static</artifactId>
<version>${jeeweb.version}</version>
</dependency>
<dependency>
<groupId>cn.jeeweb</groupId>
<artifactId>jeeweb-ui-tag</artifactId>
<version>${jeeweb.version}</version>
</dependency>
</dependencies>
<build>
<finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<fork>true</fork>
<executable>true</executable>
<jvmArguments>-Dfile.encoding=UTF-8</jvmArguments>
</configuration>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- 编码和编译和JDK版本 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
<!--打包插件-->
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/main/assembly/assembly.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<!--不推送到仓库-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.4</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>
Java
1
https://gitee.com/youlong698_admin/jeeweb-generator.git
git@gitee.com:youlong698_admin/jeeweb-generator.git
youlong698_admin
jeeweb-generator
jeeweb-generator
master

搜索帮助