blob: 38e87b16399e7b9344f654b553fa1623b6b2d9cd [file] [log] [blame]
Asim Shankar12dc4a92017-03-23 22:02:13 -08001<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 <modelVersion>4.0.0</modelVersion>
5 <description>Pure-Java code for the TensorFlow machine intelligence library.</description>
6 <parent>
7 <groupId>org.tensorflow</groupId>
8 <artifactId>parentpom</artifactId>
Asim Shankar7b9c7232018-06-07 18:19:32 -07009 <version>1.9.0-rc0</version>
Asim Shankar12dc4a92017-03-23 22:02:13 -080010 <relativePath>../</relativePath>
11 </parent>
12 <artifactId>libtensorflow</artifactId>
13 <packaging>jar</packaging>
14
15 <build>
16 <plugins>
17 <plugin>
18 <groupId>org.apache.maven.plugins</groupId>
19 <artifactId>maven-compiler-plugin</artifactId>
20 <version>3.6.1</version>
21 <configuration>
A. Unique TensorFlower50b999a2017-06-27 16:33:00 -070022 <source>1.7</source>
23 <target>1.7</target>
Asim Shankar12dc4a92017-03-23 22:02:13 -080024 </configuration>
25 </plugin>
26 <plugin>
27 <groupId>org.apache.maven.plugins</groupId>
28 <artifactId>maven-source-plugin</artifactId>
29 <version>2.2.1</version>
30 <executions>
31 <execution>
32 <id>attach-sources</id>
33 <goals>
34 <goal>jar-no-fork</goal>
35 </goals>
36 </execution>
37 </executions>
38 </plugin>
39 <plugin>
40 <groupId>org.apache.maven.plugins</groupId>
41 <artifactId>maven-javadoc-plugin</artifactId>
42 <version>2.9.1</version>
43 <executions>
44 <execution>
45 <id>attach-javadocs</id>
46 <goals>
47 <goal>jar</goal>
48 </goals>
49 </execution>
50 </executions>
51 </plugin>
52 </plugins>
53 </build>
54</project>