pom.xml 3.78 KB
<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>
	<parent>
		<groupId>com.hotent</groupId>
		<artifactId>eip</artifactId>
		<version>8.2.1-peony</version>
	</parent>
	<artifactId>form</artifactId>
	<name>form</name>
	<description>Form Designer &amp; publisher</description>
	<dependencies>
		<!-- bo -->
		<dependency>
			<groupId>com.hotent</groupId>
			<artifactId>bo</artifactId>
			<version>${parent.version}</version>
		</dependency>
		<!-- poi -->
		<dependency>
			<groupId>com.hotent</groupId>
			<artifactId>i18n</artifactId>
			<version>${parent.version}</version>
		</dependency>
		<!-- Spring boot 测试 -->
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-test</artifactId>
			<scope>test</scope>
		</dependency>
		<!-- HTML解析 -->
		<dependency>
			<groupId>org.jsoup</groupId>
			<artifactId>jsoup</artifactId>
		</dependency>
		<!-- rest-auth-service 获取请求方法的授权信息 portal门户模块请不要依赖 只在 bpm-model bpm-runtime
			form,uc中依赖 -->
		<dependency>
			<groupId>com.hotent</groupId>
			<artifactId>rest-auth-service</artifactId>
			<version>${parent.version}</version>
		</dependency>
		<!-- redis -->
		<dependency>
			<groupId>com.hotent</groupId>
			<artifactId>redis</artifactId>
			<version>${parent.version}</version>
		</dependency>
				<dependency>
			<groupId>com.hotent</groupId>
			<artifactId>jms</artifactId>
			<version>${project.version}</version>
		</dependency>
		<dependency>
			<groupId>com.hotent</groupId>
			<artifactId>uc-api-impl</artifactId>
			<version>${parent.version}</version>
		</dependency>
		<dependency>
			<groupId>com.hotent</groupId>
			<artifactId>file-upload</artifactId>
			<version>${parent.version}</version>
		</dependency>
		<dependency>
			<groupId>com.baomidou</groupId>
			<artifactId>mybatis-plus-generator</artifactId>
		</dependency>
		<dependency>
		    <groupId>com.googlecode.htmlcompressor</groupId>
		    <artifactId>htmlcompressor</artifactId>
		</dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
        </dependency>
    </dependencies>
	<!-- 用于生成jar文件 -->
	<build>
		<finalName>form</finalName>
		<plugins>
			<plugin>
				<groupId>org.springframework.boot</groupId>
				<artifactId>spring-boot-maven-plugin</artifactId>
				<version>${spring.boot.version}</version>
				<configuration>
					<mainClass>com.hotent.form.Application</mainClass>
					<layout>ZIP</layout>
					<!-- excludeGroupIds 和 includeGroupIds 保持一致   -->
					<!-- 排除的jar -->
					<excludeGroupIds>
						${third-party-group-ids}
					</excludeGroupIds>
				</configuration>
				<executions>
					<execution>
						<goals>
							<goal>repackage</goal>
						</goals>
						<configuration>
							<attach>false</attach>
							<classifier>boot</classifier>
						</configuration>
					</execution>
				</executions>
			</plugin>
			<!-- third-party jar into lib directory -->
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-dependency-plugin</artifactId>
				<executions>
					<execution>
						<id>copy-dependencies</id>
						<phase>prepare-package</phase>
						<goals>
							<goal>copy-dependencies</goal>
						</goals>
						<configuration>
							<outputDirectory>${project.build.directory}/lib</outputDirectory>
							<!-- excludeGroupIds 和 includeGroupIds 保持一致   -->
							<!-- 导出jar的 groupId -->
							<includeGroupIds>
								${third-party-group-ids}
							</includeGroupIds>
						</configuration>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>
</project>