pom.xml 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  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. </dependency>
  88. <dependency>
  89. <groupId>org.bouncycastle</groupId>
  90. <artifactId>bcprov-jdk15on</artifactId>
  91. <version>1.68</version>
  92. </dependency>
  93. </dependencies>
  94. <build>
  95. <plugins>
  96. <plugin>
  97. <groupId>org.codehaus.mojo</groupId>
  98. <artifactId>exec-maven-plugin</artifactId>
  99. <executions>
  100. <execution>
  101. <id>DescribeWoBuilder</id>
  102. <phase>prepare-package</phase>
  103. <goals>
  104. <goal>java</goal>
  105. </goals>
  106. <configuration>
  107. <addOutputToClasspath>true</addOutputToClasspath>
  108. <includePluginDependencies>true</includePluginDependencies>
  109. <includeProjectDependencies>true</includeProjectDependencies>
  110. <mainClass>com.x.base.core.project.annotation.DescribeWoBuilder</mainClass>
  111. <arguments>
  112. <argument>${basedir}</argument>
  113. <argument>${project.build.sourceDirectory}</argument>
  114. </arguments>
  115. </configuration>
  116. </execution>
  117. <execution>
  118. <id>describeBuilder</id>
  119. <phase>prepare-package</phase>
  120. <goals>
  121. <goal>java</goal>
  122. </goals>
  123. <configuration>
  124. <addOutputToClasspath>true</addOutputToClasspath>
  125. <includePluginDependencies>true</includePluginDependencies>
  126. <includeProjectDependencies>true</includeProjectDependencies>
  127. <mainClass>com.x.base.core.project.annotation.DescribeBuilder
  128. </mainClass>
  129. <arguments>
  130. <argument>${basedir}</argument>
  131. <argument>${project.build.sourceDirectory}</argument>
  132. </arguments>
  133. </configuration>
  134. </execution>
  135. <execution>
  136. <id>apiBuilder</id>
  137. <phase>prepare-package</phase>
  138. <goals>
  139. <goal>java</goal>
  140. </goals>
  141. <configuration>
  142. <addOutputToClasspath>true</addOutputToClasspath>
  143. <includePluginDependencies>true</includePluginDependencies>
  144. <includeProjectDependencies>true</includeProjectDependencies>
  145. <mainClass>com.x.base.core.project.annotation.ApiBuilder
  146. </mainClass>
  147. <arguments>
  148. <argument>${basedir}</argument>
  149. <argument>${project.build.sourceDirectory}</argument>
  150. </arguments>
  151. </configuration>
  152. </execution>
  153. <execution>
  154. <id>checkAssemble</id>
  155. <phase>prepare-package</phase>
  156. <goals>
  157. <goal>java</goal>
  158. </goals>
  159. <configuration>
  160. <addOutputToClasspath>true</addOutputToClasspath>
  161. <includePluginDependencies>true</includePluginDependencies>
  162. <includeProjectDependencies>true</includeProjectDependencies>
  163. <mainClass>com.x.base.core.project.build.CheckAssemble
  164. </mainClass>
  165. </configuration>
  166. </execution>
  167. <execution>
  168. <id>createWebXml</id>
  169. <phase>prepare-package</phase>
  170. <goals>
  171. <goal>java</goal>
  172. </goals>
  173. <configuration>
  174. <addOutputToClasspath>true</addOutputToClasspath>
  175. <includePluginDependencies>true</includePluginDependencies>
  176. <includeProjectDependencies>true</includeProjectDependencies>
  177. <mainClass>com.x.base.core.project.build.CreateWebXml</mainClass>
  178. <arguments>
  179. <argument>${basedir}</argument>
  180. <argument>${project.artifactId}</argument>
  181. </arguments>
  182. </configuration>
  183. </execution>
  184. </executions>
  185. </plugin>
  186. <plugin>
  187. <artifactId>maven-resources-plugin</artifactId>
  188. <executions>
  189. <execution>
  190. <id>copy-war</id>
  191. <phase>verify</phase>
  192. <goals>
  193. <goal>copy-resources</goal>
  194. </goals>
  195. <configuration>
  196. <outputDirectory>../store</outputDirectory>
  197. <resources>
  198. <resource>
  199. <directory>target</directory>
  200. <includes>
  201. <include>${project.artifactId}.war</include>
  202. </includes>
  203. </resource>
  204. </resources>
  205. </configuration>
  206. </execution>
  207. </executions>
  208. </plugin>
  209. <plugin>
  210. <artifactId>maven-deploy-plugin</artifactId>
  211. <configuration>
  212. <skip>true</skip>
  213. </configuration>
  214. </plugin>
  215. </plugins>
  216. </build>
  217. </project>