pom.xml 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  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. </dependency>
  55. <dependency>
  56. <groupId>org.apache.pdfbox</groupId>
  57. <artifactId>pdfbox</artifactId>
  58. <version>3.0.0-RC1</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.apache.pdfbox</groupId>
  62. <artifactId>pdfbox-tools</artifactId>
  63. <version>3.0.0-RC1</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.pdfbox</groupId>
  67. <artifactId>xmpbox</artifactId>
  68. <version>3.0.0-RC1</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.apache.pdfbox</groupId>
  72. <artifactId>preflight</artifactId>
  73. <version>3.0.0-RC1</version>
  74. <scope>test</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.apache.lucene</groupId>
  78. <artifactId>lucene-core</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.apache.lucene</groupId>
  82. <artifactId>lucene-analyzers-common</artifactId>
  83. </dependency>
  84. </dependencies>
  85. <build>
  86. <plugins>
  87. <plugin>
  88. <groupId>org.codehaus.mojo</groupId>
  89. <artifactId>exec-maven-plugin</artifactId>
  90. <executions>
  91. <execution>
  92. <id>DescribeWoBuilder</id>
  93. <phase>prepare-package</phase>
  94. <goals>
  95. <goal>java</goal>
  96. </goals>
  97. <configuration>
  98. <addOutputToClasspath>true</addOutputToClasspath>
  99. <includePluginDependencies>true</includePluginDependencies>
  100. <includeProjectDependencies>true</includeProjectDependencies>
  101. <mainClass>com.x.base.core.project.annotation.DescribeWoBuilder</mainClass>
  102. <arguments>
  103. <argument>${basedir}</argument>
  104. <argument>${project.build.sourceDirectory}</argument>
  105. </arguments>
  106. </configuration>
  107. </execution>
  108. <execution>
  109. <id>describeBuilder</id>
  110. <phase>prepare-package</phase>
  111. <goals>
  112. <goal>java</goal>
  113. </goals>
  114. <configuration>
  115. <addOutputToClasspath>true</addOutputToClasspath>
  116. <includePluginDependencies>true</includePluginDependencies>
  117. <includeProjectDependencies>true</includeProjectDependencies>
  118. <mainClass>com.x.base.core.project.annotation.DescribeBuilder
  119. </mainClass>
  120. <arguments>
  121. <argument>${basedir}</argument>
  122. <argument>${project.build.sourceDirectory}</argument>
  123. </arguments>
  124. </configuration>
  125. </execution>
  126. <execution>
  127. <id>apiBuilder</id>
  128. <phase>prepare-package</phase>
  129. <goals>
  130. <goal>java</goal>
  131. </goals>
  132. <configuration>
  133. <addOutputToClasspath>true</addOutputToClasspath>
  134. <includePluginDependencies>true</includePluginDependencies>
  135. <includeProjectDependencies>true</includeProjectDependencies>
  136. <mainClass>com.x.base.core.project.annotation.ApiBuilder
  137. </mainClass>
  138. <arguments>
  139. <argument>${basedir}</argument>
  140. <argument>${project.build.sourceDirectory}</argument>
  141. </arguments>
  142. </configuration>
  143. </execution>
  144. <execution>
  145. <id>checkAssemble</id>
  146. <phase>prepare-package</phase>
  147. <goals>
  148. <goal>java</goal>
  149. </goals>
  150. <configuration>
  151. <addOutputToClasspath>true</addOutputToClasspath>
  152. <includePluginDependencies>true</includePluginDependencies>
  153. <includeProjectDependencies>true</includeProjectDependencies>
  154. <mainClass>com.x.base.core.project.build.CheckAssemble
  155. </mainClass>
  156. </configuration>
  157. </execution>
  158. <execution>
  159. <id>createWebXml</id>
  160. <phase>prepare-package</phase>
  161. <goals>
  162. <goal>java</goal>
  163. </goals>
  164. <configuration>
  165. <addOutputToClasspath>true</addOutputToClasspath>
  166. <includePluginDependencies>true</includePluginDependencies>
  167. <includeProjectDependencies>true</includeProjectDependencies>
  168. <mainClass>com.x.base.core.project.build.CreateWebXml</mainClass>
  169. <arguments>
  170. <argument>${basedir}</argument>
  171. <argument>${project.artifactId}</argument>
  172. </arguments>
  173. </configuration>
  174. </execution>
  175. </executions>
  176. </plugin>
  177. <plugin>
  178. <artifactId>maven-resources-plugin</artifactId>
  179. <executions>
  180. <execution>
  181. <id>copy-war</id>
  182. <phase>verify</phase>
  183. <goals>
  184. <goal>copy-resources</goal>
  185. </goals>
  186. <configuration>
  187. <outputDirectory>../store</outputDirectory>
  188. <resources>
  189. <resource>
  190. <directory>target</directory>
  191. <includes>
  192. <include>${project.artifactId}.war</include>
  193. </includes>
  194. </resource>
  195. </resources>
  196. </configuration>
  197. </execution>
  198. </executions>
  199. </plugin>
  200. <plugin>
  201. <artifactId>maven-deploy-plugin</artifactId>
  202. <configuration>
  203. <skip>true</skip>
  204. </configuration>
  205. </plugin>
  206. </plugins>
  207. </build>
  208. </project>