| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?xml version="1.0"?>
- <project
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
- xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>o2oa</groupId>
- <artifactId>o2server</artifactId>
- <version>4.0.5</version>
- </parent>
- <artifactId>x_cms_assemble_control</artifactId>
- <packaging>war</packaging>
- <dependencies>
- <dependency>
- <groupId>o2oa</groupId>
- <artifactId>x_base_core_project</artifactId>
- </dependency>
- <dependency>
- <groupId>o2oa</groupId>
- <artifactId>x_organization_core_entity</artifactId>
- </dependency>
- <dependency>
- <groupId>o2oa</groupId>
- <artifactId>x_organization_core_express</artifactId>
- </dependency>
- <dependency>
- <groupId>o2oa</groupId>
- <artifactId>x_cms_core_entity</artifactId>
- </dependency>
- <dependency>
- <groupId>o2oa</groupId>
- <artifactId>x_query_core_entity</artifactId>
- </dependency>
- <dependency>
- <groupId>o2oa</groupId>
- <artifactId>x_query_core_express</artifactId>
- </dependency>
- <dependency>
- <groupId>o2oa</groupId>
- <artifactId>x_processplatform_core_entity</artifactId>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-antrun-plugin</artifactId>
- <executions>
- <execution>
- <id>describe</id>
- <phase>prepare-package</phase>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-resources-plugin</artifactId>
- <executions>
- <execution>
- <id>copy-war</id>
- <phase>verify</phase>
- </execution>
- <execution>
- <id>checkAssemble</id>
- <phase>prepare-package</phase>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|