<?xml version="1.0" encoding="UTF-8" standalone="no"?><!-- ~ Copyright (c) 2014, 2023, Chengdu Minto Technology Co.,LTD. All rights reserved. ~ DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. --> <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"> <parent> <artifactId>tip-root</artifactId> <groupId>com.minto</groupId> <version>standard_V8.0_SP1_feature_M12</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>minto-tip-front</artifactId> <packaging>war</packaging> <name>tip-front</name> <description>工作目标管理平台</description> <properties> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>com.minto</groupId> <artifactId>minto-tip-api</artifactId> </dependency> <dependency> <groupId>com.minto</groupId> <artifactId>minto-tip-kernel</artifactId> </dependency> <dependency> <groupId>com.minto</groupId> <artifactId>minto-tip-bff</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.docx4j</groupId> <artifactId>docx4j-ImportXHTML</artifactId> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>jstl</artifactId> </dependency> <dependency> <groupId>javax.servlet.jsp</groupId> <artifactId>javax.servlet.jsp-api</artifactId> </dependency> <dependency> <groupId>org.apache.taglibs</groupId> <artifactId>taglibs-standard-impl</artifactId> </dependency> <dependency> <groupId>com.minto</groupId> <artifactId>tip-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.webjars</groupId> <artifactId>webjars-locator-core</artifactId> </dependency> <dependency> <groupId>org.webjars</groupId> <artifactId>sockjs-client</artifactId> <version>1.1.2</version> </dependency> <dependency> <groupId>org.webjars</groupId> <artifactId>stomp-websocket</artifactId> <version>2.3.3</version> </dependency> </dependencies> <build> <finalName>minto</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <configuration> <archiveClasses>true</archiveClasses> <packagingExcludes> %regex[WEB-INF/lib/(tomcat-).*.*.jar], %regex[WEB-INF/lib/(postgresql-).*.*.jar], %regex[WEB-INF/lib/(spring-boot-starter-tomcat-).*.*.jar] </packagingExcludes> </configuration> </plugin> <!--<plugin> <groupId>ro.isdc.wro4j</groupId> <artifactId>wro4j-maven-plugin</artifactId> <version>2.1.1</version> <executions> <execution> <phase>compile</phase> <goals> <goal>run</goal> </goals> </execution> </executions> <configuration> <!–<targetGroups>lib</targetGroups>–> <minimize>true</minimize> <destinationFolder>${basedir}/src/main/webapp/static/</destinationFolder> <contextFolder>${basedir}/src/main/webapp/</contextFolder> <wroFile>${basedir}/../src/main/config/wro/wro.xml</wroFile> <extraConfigFile>${basedir}/../src/main/config/wro/wro.properties</extraConfigFile> <wroManagerFactory>ro.isdc.wro.maven.plugin.manager.factory.ConfigurableWroManagerFactory</wroManagerFactory> <contextPath>/minto</contextPath> <ignoreMissingResources>false</ignoreMissingResources> </configuration> </plugin>--> <!--<plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <excludes> <exclude> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> </exclude> </excludes> </configuration> <executions> <execution> <goals> <goal>repackage</goal> </goals> </execution> </executions> </plugin>--> </plugins> </build> </project>