1<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"
2    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
3
4  <name>Parent pom.xml</name>
5  <description>Parent POM for the artifacts for TensorFlow for Java</description>
6  <modelVersion>4.0.0</modelVersion>
7  <groupId>org.tensorflow</groupId>
8  <artifactId>parentpom</artifactId>
9  <version>1.6.0-rc1</version>
10  <packaging>pom</packaging>
11
12  <url>https://www.tensorflow.org</url>
13  <inceptionYear>2015</inceptionYear>
14
15  <licenses>
16    <license>
17      <name>The Apache Software License, Version 2.0</name>
18      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
19      <distribution>repo</distribution>
20    </license>
21  </licenses>
22
23  <scm>
24    <url>https://github.com/tensorflow/tensorflow.git</url>
25    <connection>git@github.com:tensorflow/tensorflow.git</connection>
26    <developerConnection>scm:git:https://github.com/tensorflow/tensorflow.git</developerConnection>
27  </scm>
28
29  <modules>
30    <module>libtensorflow</module>
31    <module>libtensorflow_jni</module>
32    <module>libtensorflow_jni_gpu</module>
33    <module>tensorflow</module>
34    <module>proto</module>
35  </modules>
36
37  <!-- Two profiles are used:
38       ossrh - deploys to ossrh/maven central
39       bintray - deploys to bintray/jcenter. -->
40  <profiles>
41    <profile>
42      <id>ossrh</id>
43      <distributionManagement>
44        <!-- Sonatype requirements from http://central.sonatype.org/pages/apache-maven.html -->
45        <snapshotRepository>
46          <id>ossrh</id>
47          <url>https://oss.sonatype.org/content/repositories/snapshots</url>
48        </snapshotRepository>
49        <repository>
50          <id>ossrh</id>
51          <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
52        </repository>
53      </distributionManagement>
54    </profile>
55    <profile>
56      <id>bintray</id>
57      <distributionManagement>
58        <!-- https://blog.bintray.com/2015/09/17/publishing-your-maven-project-to-bintray/ -->
59        <repository>
60          <id>bintray</id>
61          <url>https://api.bintray.com/maven/google/tensorflow/tensorflow/;publish=0</url>
62        </repository>
63      </distributionManagement>
64    </profile>
65  </profiles>
66  <!-- http://central.sonatype.org/pages/requirements.html#developer-information -->
67  <developers>
68    <developer>
69      <name>TensorFlowers</name>
70      <organization>TensorFlow</organization>
71      <organizationUrl>http://www.tensorflow.org</organizationUrl>
72    </developer>
73  </developers>
74  <build>
75    <plugins>
76      <!-- GPG signed components: http://central.sonatype.org/pages/apache-maven.html#gpg-signed-components -->
77      <plugin>
78        <groupId>org.apache.maven.plugins</groupId>
79        <artifactId>maven-gpg-plugin</artifactId>
80        <version>1.5</version>
81        <executions>
82          <execution>
83            <id>sign-artifacts</id>
84            <phase>verify</phase>
85            <goals>
86              <goal>sign</goal>
87            </goals>
88          </execution>
89        </executions>
90      </plugin>
91    </plugins>
92  </build>
93
94</project>
95
96