meteoinfo-data
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.meteothink</groupId> <artifactId>meteoinfo-data</artifactId> <version>4.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.meteothink</groupId> <artifactId>MeteoInfo</artifactId> <version>4.0</version> </parent> <groupId>org.meteothink</groupId> <artifactId>meteoinfo-data</artifactId> <version>4.0</version> <licenses> <license> <name>GNU Lesser General Public License v3.0</name> <url>http://www.gnu.org/licenses/lgpl.html</url> <distribution>repo</distribution> </license> </licenses> <properties> <maven.compiler.target>8</maven.compiler.target> <maven.compiler.source>8</maven.compiler.source> <netcdf.version>5.8.0-SNAPSHOT</netcdf.version> </properties> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>meteoinfo-table</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>meteoinfo-projection</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>meteoinfo-dataframe</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>edu.ucar</groupId> <artifactId>cdm-core</artifactId> <version>${netcdf.version}</version> </dependency> <dependency> <groupId>edu.ucar</groupId> <artifactId>bufr</artifactId> <version>${netcdf.version}</version> </dependency> <dependency> <groupId>edu.ucar</groupId> <artifactId>cdm-image</artifactId> <version>${netcdf.version}</version> </dependency> <dependency> <groupId>edu.ucar</groupId> <artifactId>cdm-misc</artifactId> <version>${netcdf.version}</version> </dependency> <dependency> <groupId>edu.ucar</groupId> <artifactId>cdm-radial</artifactId> <version>${netcdf.version}</version> </dependency> <dependency> <groupId>edu.ucar</groupId> <artifactId>grib</artifactId> <version>5.8.0-SNAPSHOT</version> </dependency> <dependency> <groupId>edu.ucar</groupId> <artifactId>libaec-native</artifactId> <version>5.8.0-SNAPSHOT</version> </dependency> <dependency> <groupId>edu.ucar</groupId> <artifactId>netcdf4</artifactId> <version>${netcdf.version}</version> </dependency> <dependency> <groupId>edu.ucar</groupId> <artifactId>opendap</artifactId> <version>${netcdf.version}</version> </dependency> <dependency> <groupId>edu.ucar</groupId> <artifactId>cdm-mcidas</artifactId> <version>${netcdf.version}</version> </dependency> <dependency> <groupId>com.github.albfernandez</groupId> <artifactId>juniversalchardet</artifactId> <version>2.4.0</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.14.0</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> <version>1.26.0</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.12.0</version> </dependency> </dependencies> <repositories> <repository> <id>unidata-all</id> <name>Unidata All</name> <url>https://artifacts.unidata.ucar.edu/repository/unidata-all/</url> </repository> </repositories> <build> <plugins> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <failOnError>false</failOnError> <failOnWarnings>false</failOnWarnings> </configuration> </execution> </executions> <inherited>true</inherited> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> <configuration> <source>1.8</source> <target>1.8</target> <encoding>UTF-8</encoding> <optimize>true</optimize> </configuration> </plugin> </plugins> </build> </project>