-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
52 lines (44 loc) · 1.43 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<artifactId>kotnn</artifactId>
<build>
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<groupId>org.apache.maven.plugins</groupId>
<version>3.1.2</version>
</plugin>
</plugins>
</build>
<dependencies>
<!-- Example of dependency, see section above for more options -->
<dependency>
<artifactId>tensorflow-core-platform</artifactId>
<groupId>org.tensorflow</groupId>
<version>${tensorflow_version}</version>
</dependency>
<dependency>
<artifactId>tensorflow-framework</artifactId>
<groupId>org.tensorflow</groupId>
<version>${tensorflow_version}</version>
</dependency>
</dependencies>
<groupId>com.rnett.kotnn</groupId>
<modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging>
<properties>
<tensorflow_version>0.3.0-SNAPSHOT</tensorflow_version>
</properties>
<repositories>
<repository>
<id>tensorflow-snapshots</id>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
</repositories>
<version>1.0-SNAPSHOT</version>
</project>