opendap
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>edu.ucar</groupId> <artifactId>opendap</artifactId> <version>2.2.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ======================================================================= Maven Project Configuration File ======================================================================= --> <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>edu.ucar</groupId> <artifactId>netcdf-parent</artifactId> <version>4.2.20</version> </parent> <!-- =========================================================== Module Description =========================================================== --> <groupId>edu.ucar</groupId> <artifactId>opendap</artifactId> <packaging>jar</packaging> <version>2.2.2</version> <name>OpenDAP</name> <description> Open-source Project for a Network Data Access Protocol, modified for NetCDF purpose. This artifact is a derivative work from the official OPeNDAP library (http://opendap.org), modified by UCAR. The packages were renamed from "dods.*" to "opendap.*" and the groupID from "org.opendap" to "edu.ucar". </description> <url>http://opendap.org/</url> <organization> <name>OpenDAP</name> <url>http://opendap.org</url> </organization> <licenses> <license> <name>LGPL 2.1</name> <url>http://scm.opendap.org/svn/trunk/Java-OPeNDAP/COPYRIGHT</url> <distribution>repo</distribution> </license> <license> <name>(MIT-style) netCDF C library license</name> <url>http://www.unidata.ucar.edu/software/netcdf/copyright.html</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>caron</id> <name>John Caron</name> <email>caron@unidata.ucar.edu</email> <organization>UCAR/UNIDATA</organization> <organizationUrl>http://www.unidata.ucar.edu/</organizationUrl> <roles> <role>Java Developer</role> </roles> </developer> <developer> <id>dmh</id> <name>Dennis Heimbigner</name> <email>dmh@unidata.ucar.edu</email> <organization>UCAR/UNIDATA</organization> <organizationUrl>http://www.unidata.ucar.edu/</organizationUrl> <roles> <role>Java Developer</role> </roles> </developer> </developers> <!-- =========================================================== Dependencies =========================================================== --> <dependencies> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> </dependency> <dependency> <groupId>org.jdom</groupId> <artifactId>jdom</artifactId> </dependency> <dependency> <groupId>commons-httpclient</groupId> <artifactId>commons-httpclient</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> <!-- =========================================================== Build configuration We declare a non-existant test directory as a dirty trick for skiping completly the tests, including compilation. =========================================================== --> <build> <testSourceDirectory>void</testSourceDirectory> </build> </project>