| <?xml version="1.0" encoding="ISO-8859-1"?> |
| <!-- |
| 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> |
| <parent> |
| <groupId>openejb</groupId> |
| <artifactId>openejb</artifactId> |
| <version>2.0-SNAPSHOT</version> |
| </parent> |
| |
| <modelVersion>4.0.0</modelVersion> |
| <name>OpenEJB :: Builder</name> |
| <artifactId>openejb-builder</artifactId> |
| <description>OpenEJB Builder</description> |
| |
| <dependencies> |
| <dependency> |
| <groupId>geronimo</groupId> |
| <artifactId>geronimo-deploy-config</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>openejb</groupId> |
| <artifactId>pkgen-builder</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>geronimo</groupId> |
| <artifactId>geronimo-axis-builder</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>geronimo</groupId> |
| <artifactId>geronimo-security-builder</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>geronimo</groupId> |
| <artifactId>geronimo-service-builder</artifactId> |
| <version>1.0-SNAPSHOT</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>geronimo</groupId> |
| <artifactId>geronimo-naming-builder</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>geronimo-spec</groupId> |
| <artifactId>geronimo-spec-j2ee-deployment</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>geronimo-spec</groupId> |
| <artifactId>geronimo-spec-jms</artifactId> |
| <scope>test</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>geronimo</groupId> |
| <artifactId>geronimo-j2ee-schema</artifactId> |
| <version>1.0-SNAPSHOT</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>axion</groupId> |
| <artifactId>axion</artifactId> |
| <scope>test</scope> |
| </dependency> |
| |
| <!-- TODO: should come from axion transitively --> |
| <dependency> |
| <groupId>commons-primitives</groupId> |
| <artifactId>commons-primitives</artifactId> |
| <version>20041207.202534</version> |
| <scope>test</scope> |
| </dependency> |
| |
| <!-- TODO: should come from axion transitively --> |
| <dependency> |
| <groupId>regexp</groupId> |
| <artifactId>regexp</artifactId> |
| <version>1.3</version> |
| <scope>test</scope> |
| </dependency> |
| |
| <!-- TODO: should come from axis transitively --> |
| <dependency> |
| <groupId>wsdl4j</groupId> |
| <artifactId>wsdl4j</artifactId> |
| <scope>test</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>axis</groupId> |
| <artifactId>axis</artifactId> |
| <scope>runtime</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>ant</groupId> |
| <artifactId>ant</artifactId> |
| </dependency> |
| |
| <!-- TODO: should come from axis transitively --> |
| <dependency> |
| <groupId>axis</groupId> |
| <artifactId>commons-discovery</artifactId> |
| <version>SNAPSHOT</version> |
| <scope>runtime</scope> |
| </dependency> |
| |
| <!-- TODO: should be transitive from tranql --> |
| <dependency> |
| <groupId>antlr</groupId> |
| <artifactId>antlr</artifactId> |
| <version>2.7.2</version> |
| <scope>runtime</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>openejb</groupId> |
| <artifactId>test-ear</artifactId> |
| <type>ear</type> |
| <scope>test</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>openejb</groupId> |
| <artifactId>test-ejb-jar</artifactId> |
| <type>ejb</type> |
| <scope>test</scope> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| |
| <plugins> |
| |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <configuration> |
| <source>1.4</source> |
| <target>1.4</target> |
| </configuration> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-antrun-plugin</artifactId> |
| <executions> |
| <execution> |
| <phase>process-test-resources</phase> |
| <configuration> |
| <tasks> |
| <copy todir="${project.build.directory}" file="../test-ejb-jar/target/test-ejb-jar.jar" /> |
| <copy todir="${project.build.directory}" file="../test-ear/target/test-ear.ear" /> |
| <copy todir="${project.build.directory}" file="../test-ant-ear/target/test-ant.ear" /> |
| </tasks> |
| </configuration> |
| <goals> |
| <goal>run</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>xmlbeans-maven-plugin</artifactId> |
| <executions> |
| <execution> |
| <goals> |
| <goal>xmlbeans</goal> |
| </goals> |
| <configuration> |
| <schemaDirectory>${basedir}/src/main/schema</schemaDirectory> |
| <sourceSchemas>corba-css-config-2.0.xsd,corba-tss-config-2.0.xsd,openejb-jar-2.0.xsd</sourceSchemas> |
| <xmlConfigs> |
| <xmlConfig implementation="java.io.File">${basedir}/src/main/schema/xmlconfig.xml</xmlConfig> |
| </xmlConfigs> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| |
| </plugins> |
| |
| <resources> |
| <resource> |
| <targetPath>META-INF/schema</targetPath> |
| <directory>src/main/schema</directory> |
| <includes> |
| <include>corba-css-config-2.0.xsd</include> |
| <include>corba-tss-config-2.0.xsd</include> |
| <include>openejb-jar-2.0.xsd</include> |
| </includes> |
| </resource> |
| </resources> |
| </build> |
| </project> |