pom.xml 6.2 KB

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