atlas-test
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>uk.ac.ebi.gxa</groupId> <artifactId>atlas-test</artifactId> <version>2.0-rc2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright 2008-2010 Microarray Informatics Team, EMBL-European Bioinformatics Institute ~ ~ 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. ~ ~ ~ For further details of the Gene Expression Atlas project, including source code, ~ downloads and documentation, please see: ~ ~ http://gxa.github.com/gxa --> <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>atlas</artifactId> <groupId>uk.ac.ebi.gxa</groupId> <version>2.0-rc2</version> </parent> <groupId>uk.ac.ebi.gxa</groupId> <artifactId>atlas-test</artifactId> <version>2.0-rc2</version> <name>Gene Expression Atlas Test Applications</name> <url>http://maven.apache.org</url> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.2</version> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <!-- command line parser --> <dependency> <groupId>commons-cli</groupId> <artifactId>commons-cli</artifactId> <version>1.2</version> </dependency> <!-- core deps --> <dependency> <groupId>uk.ac.ebi.gxa</groupId> <artifactId>atlas-loader</artifactId> <version>2.0-rc2</version> </dependency> <dependency> <groupId>uk.ac.ebi.gxa</groupId> <artifactId>indexbuilder</artifactId> <version>2.0-rc2</version> </dependency> <dependency> <groupId>uk.ac.ebi.gxa</groupId> <artifactId>netcdf-generator</artifactId> <version>2.0-rc2</version> </dependency> <dependency> <groupId>uk.ac.ebi.gxa</groupId> <artifactId>atlas-analytics</artifactId> <version>2.0-rc2</version> </dependency> <dependency> <groupId>commons-dbcp</groupId> <artifactId>commons-dbcp</artifactId> <version>1.2.2</version> </dependency> <dependency> <groupId>com.oracle</groupId> <artifactId>ojdbc5</artifactId> <version>11.1.0.6.0</version> </dependency> <!-- servlet api req'd for SOLR --> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.4</version> </dependency> <!-- also need dbunit jars, transitive deps don't work on tests? --> <dependency> <groupId>uk.ac.ebi.gxa</groupId> <artifactId>atlas-dao</artifactId> <version>2.0-rc2</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>org.dbunit</groupId> <artifactId>dbunit</artifactId> <version>2.4.4</version> <scope>test</scope> </dependency> <dependency> <groupId>hsqldb</groupId> <artifactId>hsqldb</artifactId> <version>1.8.0.7</version> <scope>test</scope> </dependency> <!-- logging dependencies --> <dependency> <!-- log4j binding: all logging captured via slf4j sinks to log4j --> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>1.5.6</version> <scope>runtime</scope> </dependency> <dependency> <!-- log4j itself (note the runtime scope) --> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.14</version> <scope>runtime</scope> </dependency> </dependencies> </project>