pom.xml 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. <?xml version="1.0"?>
  2. <project
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
  4. xmlns="http://maven.apache.org/POM/4.0.0"
  5. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  6. <modelVersion>4.0.0</modelVersion>
  7. <parent>
  8. <groupId>o2oa</groupId>
  9. <artifactId>o2server</artifactId>
  10. <version>6.0</version>
  11. </parent>
  12. <artifactId>x_processplatform_assemble_surface</artifactId>
  13. <packaging>war</packaging>
  14. <dependencies>
  15. <dependency>
  16. <groupId>o2oa</groupId>
  17. <artifactId>x_base_core_project</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>o2oa</groupId>
  21. <artifactId>x_organization_core_entity</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>o2oa</groupId>
  25. <artifactId>x_organization_core_express</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>o2oa</groupId>
  29. <artifactId>x_query_core_entity</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>o2oa</groupId>
  33. <artifactId>x_processplatform_core_entity</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>o2oa</groupId>
  37. <artifactId>x_processplatform_core_express</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>o2oa</groupId>
  41. <artifactId>x_cms_core_entity</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>o2oa</groupId>
  45. <artifactId>x_portal_core_entity</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>o2oa</groupId>
  49. <artifactId>x_general_core_entity</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.github.kevinsawicki</groupId>
  53. <artifactId>http-request</artifactId>
  54. <version>6.0</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.apache.pdfbox</groupId>
  58. <artifactId>pdfbox</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.apache.pdfbox</groupId>
  62. <artifactId>pdfbox-tools</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.apache.pdfbox</groupId>
  66. <artifactId>xmpbox</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.apache.pdfbox</groupId>
  70. <artifactId>preflight</artifactId>
  71. <scope>test</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.apache.lucene</groupId>
  75. <artifactId>lucene-core</artifactId>
  76. <version>7.7.2</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.apache.lucene</groupId>
  80. <artifactId>lucene-analyzers-common</artifactId>
  81. <version>7.7.2</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.bouncycastle</groupId>
  85. <artifactId>bcmail-jdk15on</artifactId>
  86. <version>1.68</version>
  87. <optional>true</optional>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.bouncycastle</groupId>
  91. <artifactId>bcprov-jdk15on</artifactId>
  92. <version>1.68</version>
  93. <optional>true</optional>
  94. </dependency>
  95. </dependencies>
  96. <build>
  97. <plugins>
  98. <plugin>
  99. <groupId>org.codehaus.mojo</groupId>
  100. <artifactId>exec-maven-plugin</artifactId>
  101. <executions>
  102. <execution>
  103. <id>DescribeWoBuilder</id>
  104. <phase>prepare-package</phase>
  105. <goals>
  106. <goal>java</goal>
  107. </goals>
  108. <configuration>
  109. <addOutputToClasspath>true</addOutputToClasspath>
  110. <includePluginDependencies>true</includePluginDependencies>
  111. <includeProjectDependencies>true</includeProjectDependencies>
  112. <mainClass>com.x.base.core.project.annotation.DescribeWoBuilder</mainClass>
  113. <arguments>
  114. <argument>${basedir}</argument>
  115. <argument>${project.build.sourceDirectory}</argument>
  116. </arguments>
  117. </configuration>
  118. </execution>
  119. <execution>
  120. <id>describeBuilder</id>
  121. <phase>prepare-package</phase>
  122. <goals>
  123. <goal>java</goal>
  124. </goals>
  125. <configuration>
  126. <addOutputToClasspath>true</addOutputToClasspath>
  127. <includePluginDependencies>true</includePluginDependencies>
  128. <includeProjectDependencies>true</includeProjectDependencies>
  129. <mainClass>com.x.base.core.project.annotation.DescribeBuilder
  130. </mainClass>
  131. <arguments>
  132. <argument>${basedir}</argument>
  133. <argument>${project.build.sourceDirectory}</argument>
  134. </arguments>
  135. </configuration>
  136. </execution>
  137. <execution>
  138. <id>apiBuilder</id>
  139. <phase>prepare-package</phase>
  140. <goals>
  141. <goal>java</goal>
  142. </goals>
  143. <configuration>
  144. <addOutputToClasspath>true</addOutputToClasspath>
  145. <includePluginDependencies>true</includePluginDependencies>
  146. <includeProjectDependencies>true</includeProjectDependencies>
  147. <mainClass>com.x.base.core.project.annotation.ApiBuilder
  148. </mainClass>
  149. <arguments>
  150. <argument>${basedir}</argument>
  151. <argument>${project.build.sourceDirectory}</argument>
  152. </arguments>
  153. </configuration>
  154. </execution>
  155. <execution>
  156. <id>checkAssemble</id>
  157. <phase>prepare-package</phase>
  158. <goals>
  159. <goal>java</goal>
  160. </goals>
  161. <configuration>
  162. <addOutputToClasspath>true</addOutputToClasspath>
  163. <includePluginDependencies>true</includePluginDependencies>
  164. <includeProjectDependencies>true</includeProjectDependencies>
  165. <mainClass>com.x.base.core.project.build.CheckAssemble
  166. </mainClass>
  167. </configuration>
  168. </execution>
  169. <execution>
  170. <id>createWebXml</id>
  171. <phase>prepare-package</phase>
  172. <goals>
  173. <goal>java</goal>
  174. </goals>
  175. <configuration>
  176. <addOutputToClasspath>true</addOutputToClasspath>
  177. <includePluginDependencies>true</includePluginDependencies>
  178. <includeProjectDependencies>true</includeProjectDependencies>
  179. <mainClass>com.x.base.core.project.build.CreateWebXml</mainClass>
  180. <arguments>
  181. <argument>${basedir}</argument>
  182. <argument>${project.artifactId}</argument>
  183. </arguments>
  184. </configuration>
  185. </execution>
  186. </executions>
  187. </plugin>
  188. <plugin>
  189. <artifactId>maven-resources-plugin</artifactId>
  190. <executions>
  191. <execution>
  192. <id>copy-war</id>
  193. <phase>verify</phase>
  194. <goals>
  195. <goal>copy-resources</goal>
  196. </goals>
  197. <configuration>
  198. <outputDirectory>../store</outputDirectory>
  199. <resources>
  200. <resource>
  201. <directory>target</directory>
  202. <includes>
  203. <include>${project.artifactId}.war</include>
  204. </includes>
  205. </resource>
  206. </resources>
  207. </configuration>
  208. </execution>
  209. </executions>
  210. </plugin>
  211. <plugin>
  212. <artifactId>maven-deploy-plugin</artifactId>
  213. <configuration>
  214. <skip>true</skip>
  215. </configuration>
  216. </plugin>
  217. </plugins>
  218. </build>
  219. </project>