123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- <?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>
|