Asim Shankar | 12dc4a9 | 2017-03-23 22:02:13 -0800 | [diff] [blame] | 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 | <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 Shankar | 7b9c723 | 2018-06-07 18:19:32 -0700 | [diff] [blame^] | 9 | <version>1.9.0-rc0</version> |
Asim Shankar | 12dc4a9 | 2017-03-23 22:02:13 -0800 | [diff] [blame] | 10 | <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 TensorFlower | 50b999a | 2017-06-27 16:33:00 -0700 | [diff] [blame] | 22 | <source>1.7</source> |
| 23 | <target>1.7</target> |
Asim Shankar | 12dc4a9 | 2017-03-23 22:02:13 -0800 | [diff] [blame] | 24 | </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> |