tensorflow-java-ndarray
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.tensorflow</groupId> <artifactId>tensorflow-java-ndarray</artifactId> <version>1.0.0</version> </dependency>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://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> <groupId>org.tensorflow</groupId> <artifactId>tensorflow-java-ndarray</artifactId> <version>1.0.0</version> <packaging>pom</packaging> <name>NdArray Parent</name> <description>Parent POM of NdArray artifacts</description> <url>https://www.tensorflow.org</url> <inceptionYear>2020</inceptionYear> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://github.com/karllessard/tensorflow-java-ndarray.git</url> <connection>git@github.com:karllessard/tensorflow-java-ndarray.git</connection> <developerConnection>scm:git:https://github.com/karllessard/tensorflow-java-ndarray.git</developerConnection> </scm> <modules> <module>ndarray</module> </modules> <properties> <project.build.sourceEncoding>ASCII</project.build.sourceEncoding> <maven.compiler.source>11</maven.compiler.source> <maven.compiler.target>11</maven.compiler.target> <junit.version>5.6.2</junit.version> <jmh.version>1.21</jmh.version> <versions-plugin.version>2.7</versions-plugin.version> <errorprone.version>2.10.0</errorprone.version> <gpg.skip>true</gpg.skip> </properties> <repositories> <repository> <id>ossrh-snapshots</id> <name>OSSRH Sonatype Snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>ossrh-snapshots</id> <name>OSSRH Sonatype Snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </pluginRepository> </pluginRepositories> <!-- Deploys to OSSRH/Maven central We don't need to deploy to Bintray, as JCenter will eventually proxy artifacts upload in Maven central. See Sonatype requirements at http://central.sonatype.org/pages/apache-maven.html --> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <dependencyManagement> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.openjdk.jmh</groupId> <artifactId>jmh-core</artifactId> <version>${jmh.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.openjdk.jmh</groupId> <artifactId>jmh-generator-annprocess</artifactId> <version>${jmh.version}</version> <scope>test</scope> </dependency> </dependencies> </dependencyManagement> <profiles> <!-- Releasing profile Activate GPG signing on all built artifacts and fetch native artifacts from staging repository --> <profile> <id>releasing</id> <properties> <gpg.skip>false</gpg.skip> </properties> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>jdk17</id> <properties> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> <maven.compiler.release>17</maven.compiler.release> </properties> </profile> <!-- Profile that enables lint checks on compilation Uses Google Error Prone for more coverage --> <profile> <id>lint</id> <activation> <!-- custom property to disable link checks on command line (enabled by default) --> <property> <name>!lint.skip</name> <value>!true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.9.0</version> <configuration> <showWarnings>true</showWarnings> <fork>true</fork> <!-- Required for JDK16+ --> <compilerArgs combine.children="append"> <!--arg>-Werror</arg--> <!-- Disabled (temporarily?) --> <arg>-Xlint:all</arg> <arg>-XDcompilePolicy=simple</arg> <arg>-Xplugin:ErrorProne</arg> <!-- Following are required on JDK16+ --> <arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED</arg> <arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED</arg> <arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED</arg> <arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED</arg> <arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED</arg> <arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED</arg> <arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED</arg> <arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED</arg> <arg>-J--add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED</arg> <arg>-J--add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED</arg> </compilerArgs> <annotationProcessorPaths combine.children="append"> <path> <groupId>com.google.errorprone</groupId> <artifactId>error_prone_core</artifactId> <version>${errorprone.version}</version> </path> </annotationProcessorPaths> </configuration> </plugin> </plugins> </build> </profile> </profiles> <!-- http://central.sonatype.org/pages/requirements.html#developer-information --> <developers> <developer> <name>SIG JVM</name> <organization>TensorFlow</organization> <organizationUrl>http://www.tensorflow.org</organizationUrl> </developer> </developers> <build> <plugins> <!-- GPG signed components: http://central.sonatype.org/pages/apache-maven.html#gpg-signed-components --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <quiet>true</quiet> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>${versions-plugin.version}</version> <configuration> <generateBackupPoms>false</generateBackupPoms> <processAllModules>true</processAllModules> <updateMatchingVersions>true</updateMatchingVersions> </configuration> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>3.0.0-M5</version> <configuration> <projectVersionPolicyId>SemVerVersionPolicy</projectVersionPolicyId> </configuration> </plugin> </plugins> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.2.0</version> </plugin> </plugins> </pluginManagement> </build> </project>