-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
111 lines (98 loc) · 3.49 KB
/
Copy pathpom.xml
File metadata and controls
111 lines (98 loc) · 3.49 KB
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<?xml version="1.0" ?>
<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/xsd/maven-4.0.0.xsd" child.project.url.inherit.append.path="false">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.jpmml</groupId>
<artifactId>jpmml-parent</artifactId>
<version>1.0.21</version>
</parent>
<artifactId>jpmml-python</artifactId>
<version>1.3-SNAPSHOT</version>
<packaging>pom</packaging>
<name>JPMML-Python</name>
<description>Java library for converting Python models to PMML</description>
<url>https://github.com/jpmml/jpmml-python</url>
<licenses>
<license>
<name>GNU Affero General Public License (AGPL) version 3.0</name>
<url>http://www.gnu.org/licenses/agpl-3.0.html</url>
</license>
</licenses>
<modules>
<module>pmml-python</module>
<module>pmml-python-testing</module>
</modules>
<scm child.scm.connection.inherit.append.path="false" child.scm.developerConnection.inherit.append.path="false" child.scm.url.inherit.append.path="false">
<connection>scm:git:git@github.com:jpmml/jpmml-python.git</connection>
<developerConnection>scm:git:git@github.com:jpmml/jpmml-python.git</developerConnection>
<url>https://github.com/jpmml/jpmml-python</url>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/jpmml/jpmml-python/issues</url>
</issueManagement>
<properties>
<jpmml-converter.version>1.6.10</jpmml-converter.version>
<jpmml-evaluator.version>1.7.7</jpmml-evaluator.version>
<arrow.version>19.0.0</arrow.version>
<pickle.version>1.5</pickle.version>
<serpent.version>1.43</serpent.version>
<project.build.outputTimestamp>2026-06-30T06:02:34Z</project.build.outputTimestamp>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.jpmml</groupId>
<artifactId>pmml-python</artifactId>
<version>1.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.jpmml</groupId>
<artifactId>pmml-python-testing</artifactId>
<version>1.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.jpmml</groupId>
<artifactId>pmml-converter</artifactId>
<version>${jpmml-converter.version}</version>
</dependency>
<dependency>
<groupId>org.jpmml</groupId>
<artifactId>pmml-converter-testing</artifactId>
<version>${jpmml-converter.version}</version>
</dependency>
<dependency>
<groupId>org.jpmml</groupId>
<artifactId>pmml-evaluator</artifactId>
<version>${jpmml-evaluator.version}</version>
</dependency>
<dependency>
<groupId>org.jpmml</groupId>
<artifactId>pmml-evaluator-testing</artifactId>
<version>${jpmml-evaluator.version}</version>
</dependency>
<dependency>
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-format</artifactId>
<version>${arrow.version}</version>
</dependency>
<dependency>
<groupId>net.razorvine</groupId>
<artifactId>pickle</artifactId>
<version>${pickle.version}</version>
</dependency>
<dependency>
<groupId>net.razorvine</groupId>
<artifactId>serpent</artifactId>
<version>${serpent.version}</version>
</dependency>
<!-- Inherited from com.google.guava:guava via org.jpmml:pmml-converter dependency -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>failureaccess</artifactId>
<version>1.0.3</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>