grib
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>edu.ucar</groupId> <artifactId>grib</artifactId> <version>4.5.5</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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>thredds-parent</artifactId> <version>4.5.5</version> </parent> <!-- =========================================================== Module Description =========================================================== --> <!-- groupId>edu.ucar</groupId--> <artifactId>grib</artifactId> <packaging>jar</packaging> <name>GRIB IOSP and Feature Collection</name> <description> Decoder for the GRIB format. </description> <url>http://www.unidata.ucar.edu/software/netcdf-java/</url> <!-- =========================================================== Developers and Contributors =========================================================== --> <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> <name>Robb Kambic</name> <organization>UCAR/UNIDATA</organization> <organizationUrl>http://www.unidata.ucar.edu/</organizationUrl> <roles> <role>Java Developer</role> </roles> </developer> </developers> <!-- =========================================================== Dependencies =========================================================== --> <dependencies> <dependency> <groupId>edu.ucar</groupId> <artifactId>cdm</artifactId> </dependency> <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java</artifactId> </dependency> <dependency> <groupId>org.jdom</groupId> <artifactId>jdom2</artifactId> </dependency> <dependency> <groupId>org.jsoup</groupId> <artifactId>jsoup</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>net.jcip</groupId> <artifactId>jcip-annotations</artifactId> </dependency> <dependency> <groupId>edu.ucar</groupId> <artifactId>jj2000</artifactId> </dependency> <dependency> <groupId>edu.ucar</groupId> <artifactId>cdm</artifactId> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-jdk14</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.itadaki</groupId> <artifactId>bzip2</artifactId> <version>0.9.1</version> </dependency> </dependencies> <build> <testSourceDirectory>src/test/java</testSourceDirectory> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skip>${skipTests}</skip> </configuration> </plugin> </plugins> </build> </project>