| <?xml version="1.0" encoding="UTF-8"?><project> |
| <parent> |
| <artifactId>xbean</artifactId> |
| <groupId>org.apache.xbean</groupId> |
| <version>2.6-SNAPSHOT</version> |
| </parent> |
| <modelVersion>4.0.0</modelVersion> |
| <artifactId>xbean-spring</artifactId> |
| <name>XBean :: Spring</name> |
| <version>2.6-SNAPSHOT</version> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>dependency-maven-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>copy-components</id> |
| <phase>generate-resources</phase> |
| <goals> |
| <goal>unpack</goal> |
| </goals> |
| <configuration> |
| <outputDirectory>target/classes</outputDirectory> |
| <artifactItems> |
| <artifactItem> |
| <groupId>org.apache.xbean</groupId> |
| <artifactId>xbean-spring-common</artifactId> |
| </artifactItem> |
| <artifactItem> |
| <groupId>org.apache.xbean</groupId> |
| <artifactId>xbean-spring-v1</artifactId> |
| </artifactItem> |
| <artifactItem> |
| <groupId>org.apache.xbean</groupId> |
| <artifactId>xbean-spring-v2</artifactId> |
| </artifactItem> |
| </artifactItems> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| <dependencies> |
| <dependency> |
| <groupId>commons-logging</groupId> |
| <artifactId>commons-logging</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.xbean</groupId> |
| <artifactId>xbean-spring-v1</artifactId> |
| <scope>optional</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework</groupId> |
| <artifactId>spring</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.xbean</groupId> |
| <artifactId>xbean-spring-v2</artifactId> |
| <scope>optional</scope> |
| </dependency> |
| </dependencies> |
| </project> |