meteoinfo-ndarray
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.meteothink</groupId> <artifactId>meteoinfo-ndarray</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-ndarray</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> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>meteoinfo-common</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>jakarta.annotation</groupId> <artifactId>jakarta.annotation-api</artifactId> <version>2.1.0</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.9.0</version> <scope>test</scope> </dependency> <dependency> <groupId>us.hebi.matlab.mat</groupId> <artifactId>mfl-core</artifactId> <version>0.5.15</version> </dependency> </dependencies> <repositories> <repository> <id>apache.snapshots</id> <name>Apache Development Snapshot Repository</name> <url>https://repository.apache.org/content/repositories/snapshots/</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> </plugins> </build> </project>