湖州项目后端
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.

156 lines
6.7 KiB

10 months ago
<?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>com.easy.admin</groupId>
<artifactId>easy-vben</artifactId>
<version>1.1.0</version>
</parent>
<artifactId>easy-api</artifactId>
<packaging>jar</packaging>
<!-- <packaging>war</packaging>-->
<description>Easy Api</description>
<dependencies>
<dependency>
<groupId>com.easy.admin</groupId>
<artifactId>easy-sys</artifactId>
</dependency>
<dependency>
<groupId>com.easy.admin</groupId>
<artifactId>easy-file</artifactId>
</dependency>
<dependency>
<groupId>com.easy.admin</groupId>
<artifactId>easy-generator</artifactId>
</dependency>
<dependency>
<groupId>com.easy.admin</groupId>
<artifactId>easy-scheduler</artifactId>
</dependency>
<dependency>
<groupId>com.easy.admin</groupId>
<artifactId>easy-activiti</artifactId>
</dependency>
<dependency>
<groupId>com.easy.admin</groupId>
<artifactId>easy-sample</artifactId>
</dependency>
<dependency>
<groupId>com.easy.admin</groupId>
<artifactId>easy-cms</artifactId>
</dependency>
<dependency>
<groupId>com.easy.admin</groupId>
<!-- easy-xxx 请替换为实际名称 -->
<artifactId>huzhou</artifactId>
</dependency>
<!-- <dependency>-->
<!-- <groupId>com.easy.admin</groupId>-->
<!-- <artifactId>easy-huozhou</artifactId>-->
<!-- </dependency>-->
</dependencies>
<build>
<finalName>huzhou</finalName>
10 months ago
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
<resource>
<directory>src/main/webapp</directory>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring-boot.version}</version>
<configuration>
<finalName>${project.build.finalName}</finalName>
</configuration>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>springloaded</artifactId>
<version>1.2.8.RELEASE</version>
</dependency>
</dependencies>
</plugin>
3 months ago
<!-- <plugin>-->
<!-- &lt;!&ndash; https://gitee.com/roseboy/classfinal &ndash;&gt;-->
<!--&lt;!&ndash; <groupId>cn.ywyu</groupId>&ndash;&gt;-->
<!--&lt;!&ndash; <artifactId>classfinal-maven-plugin</artifactId>&ndash;&gt;-->
<!--&lt;!&ndash; <version>1.3.2</version>&ndash;&gt;-->
<!-- <groupId>com.gitee.lcm742320521</groupId>-->
<!-- <artifactId>classfinal-maven-plugin</artifactId>-->
3 months ago
<!-- <version>1.4.1</version>-->
<!-- <configuration>-->
<!-- &lt;!&ndash;加密密码,如果是#号,则使用无密码模式加密,【加密后没有pom文件,不用担心泄漏】&ndash;&gt;-->
<!-- <password>123456</password>-->
<!-- &lt;!&ndash;加密的包名(可为空,多个用","分割)&ndash;&gt;-->
<!-- <packages>com.easy.admin</packages>-->
<!-- &lt;!&ndash;需要加密的配置文件,一般是classes目录下的yml或properties文件(可为空,多个用","分割)&ndash;&gt;-->
<!-- <cfgfiles>*.properties,*.yml,com/easy/admin/**/mapping/*.xml</cfgfiles>-->
<!-- &lt;!&ndash;外部依赖的jar目录,例如/tomcat/lib(可为空,多个用","分割)&ndash;&gt;-->
<!-- &lt;!&ndash;<classpath></classpath>&ndash;&gt;-->
<!-- <libjars>huzhou-1.1.0.jar</libjars> &lt;!&ndash;jar/war包lib下要加密jar文件名(可为空,多个用","分割)&ndash;&gt;-->
<!-- &lt;!&ndash;<cfgpasspath>/etc/.env</cfgpasspath>&ndash;&gt; &lt;!&ndash;密码文件路径,可为空,默认 /etc/.env&ndash;&gt;-->
<!-- &lt;!&ndash;<excludes>com.Test</excludes>&ndash;&gt; &lt;!&ndash;排除不需要加密的文件&ndash;&gt;-->
<!-- &lt;!&ndash;<classpath></classpath>&ndash;&gt; &lt;!&ndash;外部依赖jarlib&ndash;&gt;-->
<!-- &lt;!&ndash;<debug>true</debug>&ndash;&gt; &lt;!&ndash;调试模式,打印debug日志&ndash;&gt;-->
<!-- <code>7E38231D00D8427BB1E463E0BD7375EDD41D8CD98F00B204E9800998ECF8427ED41D8CD98F00B204E9800998ECF8427E</code>-->
<!-- </configuration>-->
<!-- <executions>-->
<!-- <execution>-->
<!-- <phase>package</phase>-->
<!-- <goals>-->
<!-- <goal>classFinal</goal>-->
<!-- </goals>-->
<!-- </execution>-->
<!-- </executions>-->
<!-- </plugin>-->
10 months ago
</plugins>
</build>
<repositories>
<!--阿里云主仓库,代理了maven central和jcenter仓库-->
<repository>
<id>aliyun</id>
<name>aliyun</name>
<url>https://maven.aliyun.com/repository/public</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<profiles>
<profile>
<id>dev</id>
<properties>
<!-- 环境标识,需要与配置文件的名称相对应 -->
<profiles.active>dev</profiles.active>
</properties>
<activation>
<!-- 默认环境 -->
<activeByDefault>true</activeByDefault>
</activation>
</profile>
</profiles>
</project>