This repository has been archived by the owner on Jul 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpom.xml
94 lines (86 loc) · 2.78 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<groupId>ai.kognition.pilecv4j</groupId>
<artifactId>tensorflow-packaging</artifactId>
<version>0</version>
<packaging>pom</packaging>
<modelVersion>4.0.0</modelVersion>
<properties>
<tensorflow-version>${project.version}</tensorflow-version>
<!-- This is defaulted to the same value from fromscratch.sh but is overridden by package.sh -->
<!-- It's also relative to the child projects where it's used -->
<fromscratch.working.dir>/tmp/tensorflow</fromscratch.working.dir>
<tensorflow.artifacts.directory>${fromscratch.working.dir}</tensorflow.artifacts.directory>
<tf-packaging.distribution.repo.id>ossrh</tf-packaging.distribution.repo.id>
<tf-packaging.distribution.repo.url>https://oss.sonatype.org/content/repositories/snapshots/</tf-packaging.distribution.repo.url>
</properties>
<distributionManagement>
<repository>
<id>${tf-packaging.distribution.repo.id}</id>
<url>${tf-packaging.distribution.repo.url}</url>
</repository>
</distributionManagement>
<dependencyManagement>
<dependencies>
<dependency> <!-- this is the dependency installed using the install-jar sub-project -->
<groupId>ai.kognition.pilecv4j</groupId>
<artifactId>manually-installed-tensorflow</artifactId>
<version>${tensorflow-version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<modules>
<module>install-jar</module>
<module>package-native</module>
</modules>
<profiles>
<profile>
<id>linux-x86</id>
<activation>
<os>
<family>linux</family>
<arch>i386</arch>
</os>
</activation>
<properties>
<platform>linux-x86_32</platform>
</properties>
</profile>
<profile>
<id>linux-64bit</id>
<activation>
<os>
<family>linux</family>
<arch>amd64</arch>
</os>
</activation>
<properties>
<platform>linux-x86_64</platform>
</properties>
</profile>
<profile>
<id>windows-x86_64</id>
<activation>
<os>
<family>windows</family>
<arch>amd64</arch>
</os>
</activation>
<properties>
<platform>windows-x86_64</platform>
</properties>
</profile>
<profile>
<id>windows-x86</id>
<activation>
<os>
<family>windows</family>
<arch>x86</arch>
</os>
</activation>
<properties>
<platform>windows-x86_32</platform>
</properties>
</profile>
</profiles>
</project>