pom.xml 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?><!--
  2. ~ Copyright (c) 2014, 2023, Chengdu Minto Technology Co.,LTD. All rights reserved.
  3. ~ DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  4. -->
  5. <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">
  6. <parent>
  7. <artifactId>tip-root</artifactId>
  8. <groupId>com.minto</groupId>
  9. <version>standard_V8.0_SP1_feature_M12</version>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>minto-tip-front</artifactId>
  13. <packaging>war</packaging>
  14. <name>tip-front</name>
  15. <description>工作目标管理平台</description>
  16. <properties>
  17. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>com.minto</groupId>
  23. <artifactId>minto-tip-api</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.minto</groupId>
  27. <artifactId>minto-tip-kernel</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.minto</groupId>
  31. <artifactId>minto-tip-bff</artifactId>
  32. <scope>runtime</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.docx4j</groupId>
  36. <artifactId>docx4j-ImportXHTML</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>javax.servlet</groupId>
  40. <artifactId>javax.servlet-api</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>javax.servlet</groupId>
  44. <artifactId>jstl</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>javax.servlet.jsp</groupId>
  48. <artifactId>javax.servlet.jsp-api</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.apache.taglibs</groupId>
  52. <artifactId>taglibs-standard-impl</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.minto</groupId>
  56. <artifactId>tip-test</artifactId>
  57. <scope>test</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.webjars</groupId>
  61. <artifactId>webjars-locator-core</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.webjars</groupId>
  65. <artifactId>sockjs-client</artifactId>
  66. <version>1.1.2</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.webjars</groupId>
  70. <artifactId>stomp-websocket</artifactId>
  71. <version>2.3.3</version>
  72. </dependency>
  73. </dependencies>
  74. <build>
  75. <finalName>minto</finalName>
  76. <plugins>
  77. <plugin>
  78. <groupId>org.apache.maven.plugins</groupId>
  79. <artifactId>maven-deploy-plugin</artifactId>
  80. <configuration>
  81. <skip>true</skip>
  82. </configuration>
  83. </plugin>
  84. <plugin>
  85. <groupId>org.apache.maven.plugins</groupId>
  86. <artifactId>maven-war-plugin</artifactId>
  87. <configuration>
  88. <archiveClasses>true</archiveClasses>
  89. <packagingExcludes>
  90. %regex[WEB-INF/lib/(tomcat-).*.*.jar],
  91. %regex[WEB-INF/lib/(postgresql-).*.*.jar],
  92. %regex[WEB-INF/lib/(spring-boot-starter-tomcat-).*.*.jar]
  93. </packagingExcludes>
  94. </configuration>
  95. </plugin>
  96. <!--<plugin>
  97. <groupId>ro.isdc.wro4j</groupId>
  98. <artifactId>wro4j-maven-plugin</artifactId>
  99. <version>2.1.1</version>
  100. <executions>
  101. <execution>
  102. <phase>compile</phase>
  103. <goals>
  104. <goal>run</goal>
  105. </goals>
  106. </execution>
  107. </executions>
  108. <configuration>
  109. &lt;!&ndash;<targetGroups>lib</targetGroups>&ndash;&gt;
  110. <minimize>true</minimize>
  111. <destinationFolder>${basedir}/src/main/webapp/static/</destinationFolder>
  112. <contextFolder>${basedir}/src/main/webapp/</contextFolder>
  113. <wroFile>${basedir}/../src/main/config/wro/wro.xml</wroFile>
  114. <extraConfigFile>${basedir}/../src/main/config/wro/wro.properties</extraConfigFile>
  115. <wroManagerFactory>ro.isdc.wro.maven.plugin.manager.factory.ConfigurableWroManagerFactory</wroManagerFactory>
  116. <contextPath>/minto</contextPath>
  117. <ignoreMissingResources>false</ignoreMissingResources>
  118. </configuration>
  119. </plugin>-->
  120. <!--<plugin>
  121. <groupId>org.springframework.boot</groupId>
  122. <artifactId>spring-boot-maven-plugin</artifactId>
  123. <configuration>
  124. <excludes>
  125. <exclude>
  126. <groupId>org.projectlombok</groupId>
  127. <artifactId>lombok</artifactId>
  128. </exclude>
  129. </excludes>
  130. </configuration>
  131. <executions>
  132. <execution>
  133. <goals>
  134. <goal>repackage</goal>
  135. </goals>
  136. </execution>
  137. </executions>
  138. </plugin>-->
  139. </plugins>
  140. </build>
  141. </project>