mirror of https://gitee.com/xiaonuobase/snowy
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.
79 lines
2.6 KiB
79 lines
2.6 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>vip.xiaonuo</groupId> |
|
<artifactId>snowy</artifactId> |
|
<name>snowy</name> |
|
<version>2.0.0</version> |
|
<description>snowy快速开发平台</description> |
|
<packaging>pom</packaging> |
|
|
|
<parent> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-parent</artifactId> |
|
<version>2.5.12</version> |
|
</parent> |
|
|
|
<properties> |
|
<java.version>1.8</java.version> |
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
</properties> |
|
|
|
<modules> |
|
<!-- 基础通用规则模块 --> |
|
<module>snowy-common</module> |
|
|
|
<!-- 插件模块 --> |
|
<module>snowy-plugin</module> |
|
|
|
<!-- 插件API接口模块 --> |
|
<module>snowy-plugin-api</module> |
|
|
|
<!-- 主启动模块 --> |
|
<module>snowy-web-app</module> |
|
</modules> |
|
|
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-compiler-plugin</artifactId> |
|
<version>3.7.0</version> |
|
<configuration> |
|
<source>1.8</source> |
|
<target>1.8</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> |
|
</plugins> |
|
<resources> |
|
<resource> |
|
<directory>src/main/resources</directory> |
|
</resource> |
|
<resource> |
|
<directory>src/main/java</directory> |
|
<includes> |
|
<include>**/*.xml</include> |
|
</includes> |
|
</resource> |
|
</resources> |
|
</build> |
|
</project>
|
|
|