| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| Licensed to the Apache Software Foundation (ASF) under one or more |
| contributor license agreements. See the NOTICE file distributed with |
| this work for additional information regarding copyright ownership. |
| The ASF licenses this file to You under the Apache License, Version 2.0 |
| (the "License"); you may not use this file except in compliance with |
| the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| --> |
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| <modelVersion>4.0.0</modelVersion> |
| |
| <parent> |
| <artifactId>batchee</artifactId> |
| <groupId>org.apache.batchee</groupId> |
| <version>0.6-incubating-SNAPSHOT</version> |
| </parent> |
| |
| <artifactId>batchee-extensions</artifactId> |
| <name>BatchEE :: Extensions</name> |
| <packaging>pom</packaging> |
| |
| <modules> |
| <module>extras</module> |
| <module>beanio</module> |
| <module>camel</module> |
| <module>groovy</module> |
| <module>jsefa</module> |
| <module>jackson</module> |
| <module>cdi</module> |
| <module>hazelcast</module> |
| <module>modelmapper</module> |
| <module>commons-csv</module> |
| <module>jsonp</module> |
| <module>extension-doc-helper</module> |
| </modules> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.geronimo.specs</groupId> |
| <artifactId>geronimo-jbatch_1.0_spec</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.geronimo.specs</groupId> |
| <artifactId>geronimo-atinject_1.0_spec</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.batchee</groupId> |
| <artifactId>batchee-doc-api</artifactId> |
| <version>${project.version}</version> |
| <scope>provided</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.testng</groupId> |
| <artifactId>testng</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.batchee</groupId> |
| <artifactId>batchee-jbatch</artifactId> |
| <version>${project.version}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.derby</groupId> |
| <artifactId>derby</artifactId> |
| </dependency> |
| |
| <dependency> <!-- just there for mvn-exec and deps ordering --> |
| <groupId>org.apache.batchee</groupId> |
| <artifactId>batchee-maven-plugin</artifactId> |
| <version>${project.version}</version> |
| <scope>test</scope> |
| <exclusions> |
| <exclusion> |
| <groupId>org.apache.batchee</groupId> |
| <artifactId>*</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <plugins> |
| <plugin> <!-- would be cool to reuse our plugin but doesnt work in the same build --> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>exec-maven-plugin</artifactId> |
| <version>1.4.0</version> |
| <executions> |
| <execution> |
| <phase>pre-site</phase> |
| <goals> |
| <goal>java</goal> |
| </goals> |
| </execution> |
| </executions> |
| <configuration> |
| <mainClass>org.apache.batchee.tools.maven.doc.ComponentDocumentationGenerator</mainClass> |
| <includePluginDependencies>true</includePluginDependencies> |
| <arguments> |
| <argument>${project.build.outputDirectory}</argument> |
| <argument>${project.parent.parent.basedir}/src/site/markdown/batchee-site-generated/${project.artifactId}.md</argument> |
| <argument>md</argument> |
| </arguments> |
| </configuration> |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.batchee</groupId> |
| <artifactId>batchee-maven-plugin</artifactId> |
| <version>${project.version}</version> |
| <exclusions> |
| <exclusion> |
| <groupId>org.apache.batchee</groupId> |
| <artifactId>*</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| </dependencies> |
| </plugin> |
| </plugins> |
| </build> |
| |
| <profiles> |
| <profile> |
| <id>cdi-1.0</id> |
| <activation> |
| <activeByDefault>true</activeByDefault> |
| </activation> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.geronimo.specs</groupId> |
| <artifactId>geronimo-jcdi_1.0_spec</artifactId> |
| </dependency> |
| </dependencies> |
| </profile> |
| |
| <profile> |
| <id>cdi-1.1</id> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.geronimo.specs</groupId> |
| <artifactId>geronimo-jcdi_1.1_spec</artifactId> |
| </dependency> |
| </dependencies> |
| </profile> |
| </profiles> |
| |
| </project> |