| <?xml version="1.0" encoding="UTF-8"?> |
| |
| <!-- |
| Copyright 2005 The Apache Software Foundation |
| |
| Licensed 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> |
| |
| <pomVersion>3</pomVersion> |
| <extend>../project.xml</extend> |
| <!-- ============== --> |
| <!-- Identification --> |
| <!-- ============== --> |
| <name>JDO1 Technology Compatibility Kit</name> |
| <artifactId>jdo1-tck</artifactId> |
| <currentVersion>1.1</currentVersion> |
| <package>org.apache.jdo.tck</package> |
| <shortDescription>Java Data Object (JDO) TCK</shortDescription> |
| <description> |
| The Java Data Objects (JDO) API is a standard interface-based |
| Java model abstraction of persistence, developed as Java Specification |
| Request 12 JSR 12 under the auspices of the Java Community Process. |
| <br/> |
| The JDO TCK is a test suite designed to test implementations of the Java Data Objects |
| specification. In order to claim compatibility with JDO, an implementation must pass |
| all relevant tests of the JDOTCK. |
| |
| NOTE!! This project has a nonstandard structure. |
| The source files are located in the test directory. |
| However the build treats this directory as the source directory. |
| There are no unit tests in this project. |
| </description> |
| <repository/> |
| <!-- ============ --> |
| <!-- Dependencies --> |
| <!-- ============ --> |
| <dependencies> |
| <dependency> |
| <groupId>antlr</groupId> |
| <artifactId>antlr</artifactId> |
| <version>2.7.5</version> |
| <url>http://www.antlr.org/download.html</url> |
| </dependency> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <version>3.8.1</version> |
| </dependency> |
| <dependency> |
| <groupId>geronimo-spec</groupId> |
| <artifactId>geronimo-spec-jta</artifactId> |
| <version>1.0.1B-rc2</version> |
| </dependency> |
| <dependency> |
| <groupId>apache-jdo</groupId> |
| <artifactId>jdo1-api</artifactId> |
| <version>SNAPSHOT</version> |
| </dependency> |
| <dependency> |
| <groupId>apache-jdo</groupId> |
| <artifactId>jdo-btree</artifactId> |
| <version>SNAPSHOT</version> |
| </dependency> |
| <dependency> |
| <groupId>apache-jdo</groupId> |
| <artifactId>jdo1-ri</artifactId> |
| <version>SNAPSHOT</version> |
| </dependency> |
| <dependency> |
| <id>commons-logging</id> |
| <version>1.0.4</version> |
| </dependency> |
| <dependency> |
| <groupId>springframework</groupId> |
| <artifactId>spring-core</artifactId> |
| <version>1.2.5</version> |
| </dependency> |
| <dependency> |
| <groupId>springframework</groupId> |
| <artifactId>spring-beans</artifactId> |
| <version>1.2.5</version> |
| </dependency> |
| |
| </dependencies> |
| |
| <!-- =================== --> |
| <!-- Build Specification --> |
| <!-- =================== --> |
| |
| <build> |
| <sourceDirectory>test/java</sourceDirectory> |
| <resources> |
| <resource> |
| <directory>${basedir}/test/java</directory> |
| <includes> |
| <include>**/*.xml</include> |
| </includes> |
| </resource> |
| </resources> |
| <resources> |
| <resource> |
| <directory>${basedir}/test/conf</directory> |
| <includes> |
| <include>JDOTCKTestCases.list</include> |
| <include>enhancement-test.properties</include> |
| <include>commons-logging.properties</include> |
| <include>simplelog.properties</include> |
| <include>logging.properties</include> |
| </includes> |
| </resource> |
| </resources> |
| |
| </build> |
| </project> |