From c02076daaf0552b1e23d4d5260a3c0e77f781afc Mon Sep 17 00:00:00 2001 From: Villu Ruusmann Date: Sun, 8 Dec 2024 13:02:38 +0200 Subject: [PATCH 01/16] Updated documentation --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 12243426..c0dbae42 100644 --- a/README.md +++ b/README.md @@ -36,13 +36,13 @@ Java Class Model API for Predictive Model Markup Language (PMML). JPMML-Model library JAR files (together with accompanying Java source and Javadocs JAR files) are released via [Maven Central Repository](https://repo1.maven.org/maven2/org/jpmml/). -The current version is **1.6.7** (20 November, 2024). +The current version is **1.6.8** (8 December, 2024). ```xml org.jpmml pmml-model - 1.6.7 + 1.6.8 ``` From 1395007f89c50a8895cc05d676d27b6dfa908288 Mon Sep 17 00:00:00 2001 From: Villu Ruusmann Date: Wed, 25 Dec 2024 12:36:51 +0200 Subject: [PATCH 02/16] Renamed TimeSeriesAlgorithm class to Algorithm --- .../{TimeSeriesAlgorithm.java => Algorithm.java} | 2 +- pmml-model/src/main/schema/pmml.xjb | 14 +++++++------- .../src/test/java/org/dmg/pmml/PMMLObjectTest.java | 2 +- .../src/main/java/org/jpmml/xjc/VisitorPlugin.java | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) rename pmml-model/src/main/java/org/dmg/pmml/time_series/{TimeSeriesAlgorithm.java => Algorithm.java} (77%) diff --git a/pmml-model/src/main/java/org/dmg/pmml/time_series/TimeSeriesAlgorithm.java b/pmml-model/src/main/java/org/dmg/pmml/time_series/Algorithm.java similarity index 77% rename from pmml-model/src/main/java/org/dmg/pmml/time_series/TimeSeriesAlgorithm.java rename to pmml-model/src/main/java/org/dmg/pmml/time_series/Algorithm.java index 73afe525..06277ea3 100644 --- a/pmml-model/src/main/java/org/dmg/pmml/time_series/TimeSeriesAlgorithm.java +++ b/pmml-model/src/main/java/org/dmg/pmml/time_series/Algorithm.java @@ -8,5 +8,5 @@ @XmlTransient abstract -public class TimeSeriesAlgorithm extends PMMLObject { +public class Algorithm extends PMMLObject { } \ No newline at end of file diff --git a/pmml-model/src/main/schema/pmml.xjb b/pmml-model/src/main/schema/pmml.xjb index ad33273e..008df83d 100644 --- a/pmml-model/src/main/schema/pmml.xjb +++ b/pmml-model/src/main/schema/pmml.xjb @@ -9,7 +9,7 @@ Copyright (c) 2014 Villu Ruusmann @@ -167,7 +167,7 @@ Copyright (c) 2014 Villu Ruusmann org.jpmml.model.annotations.Added(org.dmg.pmml.Version.PMML_4_0) - org.dmg.pmml.time_series.TimeSeriesAlgorithm + org.dmg.pmml.time_series.Algorithm @@ -1004,7 +1004,7 @@ Copyright (c) 2014 Villu Ruusmann org.jpmml.model.annotations.Added(org.dmg.pmml.Version.PMML_4_0) - org.dmg.pmml.time_series.TimeSeriesAlgorithm + org.dmg.pmml.time_series.Algorithm @@ -1107,7 +1107,7 @@ Copyright (c) 2014 Villu Ruusmann org.jpmml.model.annotations.Added(org.dmg.pmml.Version.PMML_4_4) - org.dmg.pmml.time_series.TimeSeriesAlgorithm + org.dmg.pmml.time_series.Algorithm @@ -2810,7 +2810,7 @@ Copyright (c) 2014 Villu Ruusmann org.jpmml.model.annotations.Added(org.dmg.pmml.Version.PMML_4_0) - org.dmg.pmml.time_series.TimeSeriesAlgorithm + org.dmg.pmml.time_series.Algorithm @@ -3080,7 +3080,7 @@ Copyright (c) 2014 Villu Ruusmann org.jpmml.model.annotations.Added(org.dmg.pmml.Version.PMML_4_0) - org.dmg.pmml.time_series.TimeSeriesAlgorithm + org.dmg.pmml.time_series.Algorithm @@ -3088,7 +3088,7 @@ Copyright (c) 2014 Villu Ruusmann org.jpmml.model.annotations.Added(org.dmg.pmml.Version.PMML_4_4) - org.dmg.pmml.time_series.TimeSeriesAlgorithm + org.dmg.pmml.time_series.Algorithm diff --git a/pmml-model/src/test/java/org/dmg/pmml/PMMLObjectTest.java b/pmml-model/src/test/java/org/dmg/pmml/PMMLObjectTest.java index 2610e9bc..e3c03f01 100644 --- a/pmml-model/src/test/java/org/dmg/pmml/PMMLObjectTest.java +++ b/pmml-model/src/test/java/org/dmg/pmml/PMMLObjectTest.java @@ -11,6 +11,6 @@ public class PMMLObjectTest { @Test public void getSchemaVersion(){ - assertArrayEquals(new int[]{4, 4, 1, 6}, PMMLObject.getSchemaVersion()); + assertArrayEquals(new int[]{4, 4, 1, 7}, PMMLObject.getSchemaVersion()); } } \ No newline at end of file diff --git a/pmml-xjc/src/main/java/org/jpmml/xjc/VisitorPlugin.java b/pmml-xjc/src/main/java/org/jpmml/xjc/VisitorPlugin.java index 9f342326..854f44d0 100644 --- a/pmml-xjc/src/main/java/org/jpmml/xjc/VisitorPlugin.java +++ b/pmml-xjc/src/main/java/org/jpmml/xjc/VisitorPlugin.java @@ -164,7 +164,7 @@ public int compare(ClassOutline left, ClassOutline right){ {"Similarity", "Measure"}, {"SparseArray"}, {"regression.Term"}, - {"time_series.TimeSeriesAlgorithm"} + {"time_series.Algorithm"} }; for(String[] abstractClass : abstractClasses){ From dfc03a4e9b7c156e312c74f574edd231891e9cd6 Mon Sep 17 00:00:00 2001 From: Villu Ruusmann Date: Wed, 25 Dec 2024 12:54:05 +0200 Subject: [PATCH 03/16] Added ARIMA$Transformation enum --- pmml-model/src/main/schema/pmml.xjb | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pmml-model/src/main/schema/pmml.xjb b/pmml-model/src/main/schema/pmml.xjb index 008df83d..43628769 100644 --- a/pmml-model/src/main/schema/pmml.xjb +++ b/pmml-model/src/main/schema/pmml.xjb @@ -189,6 +189,12 @@ Copyright (c) 2014 Villu Ruusmann org.jpmml.model.annotations.Added(org.dmg.pmml.Version.PMML_4_4) + + + + org.jpmml.model.annotations.Added(org.dmg.pmml.Version.PMML_4_4) From 8df68d2256cf6bda54afc74d760c2f7de1ba79ea Mon Sep 17 00:00:00 2001 From: Villu Ruusmann Date: Wed, 25 Dec 2024 13:00:05 +0200 Subject: [PATCH 04/16] Added ARIMA$PredictionMethod enum --- pmml-model/src/main/schema/pmml.xjb | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pmml-model/src/main/schema/pmml.xjb b/pmml-model/src/main/schema/pmml.xjb index 43628769..fda30a5d 100644 --- a/pmml-model/src/main/schema/pmml.xjb +++ b/pmml-model/src/main/schema/pmml.xjb @@ -195,6 +195,12 @@ Copyright (c) 2014 Villu Ruusmann /> + + + + org.jpmml.model.annotations.Added(org.dmg.pmml.Version.PMML_4_4) From f7be6640928f9d5220bf4566a25ca516abfd13ce Mon Sep 17 00:00:00 2001 From: Villu Ruusmann Date: Wed, 25 Dec 2024 13:05:06 +0200 Subject: [PATCH 05/16] Added DynamicRegressor$Transformation enum --- pmml-model/src/main/schema/pmml.xjb | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pmml-model/src/main/schema/pmml.xjb b/pmml-model/src/main/schema/pmml.xjb index fda30a5d..813f02ff 100644 --- a/pmml-model/src/main/schema/pmml.xjb +++ b/pmml-model/src/main/schema/pmml.xjb @@ -1003,6 +1003,12 @@ Copyright (c) 2014 Villu Ruusmann /> + + + + org.dmg.pmml.Distance From 909901080575a12b95d055d7ccdd3dc1ba46a0fa Mon Sep 17 00:00:00 2001 From: Villu Ruusmann Date: Wed, 25 Dec 2024 13:07:23 +0200 Subject: [PATCH 06/16] Added DynamicRegressor$FutureValuesMethod enum --- pmml-model/src/main/schema/pmml.xjb | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pmml-model/src/main/schema/pmml.xjb b/pmml-model/src/main/schema/pmml.xjb index 813f02ff..9d927774 100644 --- a/pmml-model/src/main/schema/pmml.xjb +++ b/pmml-model/src/main/schema/pmml.xjb @@ -1009,6 +1009,12 @@ Copyright (c) 2014 Villu Ruusmann /> + + + + org.dmg.pmml.Distance From cc99e30e38553a95158f3216b249007dde65e77e Mon Sep 17 00:00:00 2001 From: Villu Ruusmann Date: Wed, 25 Dec 2024 13:10:35 +0200 Subject: [PATCH 07/16] Added MaximumLikelihoodStat$Method enum --- pmml-model/src/main/schema/pmml.xjb | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pmml-model/src/main/schema/pmml.xjb b/pmml-model/src/main/schema/pmml.xjb index 9d927774..b717a7e3 100644 --- a/pmml-model/src/main/schema/pmml.xjb +++ b/pmml-model/src/main/schema/pmml.xjb @@ -1584,6 +1584,12 @@ Copyright (c) 2014 Villu Ruusmann /> + + + + org.jpmml.model.annotations.Added(org.dmg.pmml.Version.PMML_4_3) Date: Wed, 25 Dec 2024 13:13:58 +0200 Subject: [PATCH 08/16] Added OutlierEffect$Type enum --- pmml-model/src/main/schema/pmml.xjb | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pmml-model/src/main/schema/pmml.xjb b/pmml-model/src/main/schema/pmml.xjb index b717a7e3..121d06e9 100644 --- a/pmml-model/src/main/schema/pmml.xjb +++ b/pmml-model/src/main/schema/pmml.xjb @@ -2061,6 +2061,12 @@ Copyright (c) 2014 Villu Ruusmann /> + + + + org.dmg.pmml.Field<OutputField> org.dmg.pmml.HasDiscreteDomain<OutputField> From 429c24b4bf2fe640f2101de4a2732e2dbc200db7 Mon Sep 17 00:00:00 2001 From: Villu Ruusmann Date: Wed, 25 Dec 2024 13:16:32 +0200 Subject: [PATCH 09/16] Added InterceptVector$Type enum --- pmml-model/src/main/schema/pmml.xjb | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pmml-model/src/main/schema/pmml.xjb b/pmml-model/src/main/schema/pmml.xjb index 121d06e9..f1b89b1c 100644 --- a/pmml-model/src/main/schema/pmml.xjb +++ b/pmml-model/src/main/schema/pmml.xjb @@ -1393,6 +1393,12 @@ Copyright (c) 2014 Villu Ruusmann /> + + + + Date: Thu, 26 Dec 2024 18:38:32 +0200 Subject: [PATCH 10/16] Added TimeSeries to HasFieldReference class hierarchy --- pmml-model/src/main/schema/pmml.xjb | 1 + 1 file changed, 1 insertion(+) diff --git a/pmml-model/src/main/schema/pmml.xjb b/pmml-model/src/main/schema/pmml.xjb index f1b89b1c..b7e13587 100644 --- a/pmml-model/src/main/schema/pmml.xjb +++ b/pmml-model/src/main/schema/pmml.xjb @@ -3580,6 +3580,7 @@ Copyright (c) 2014 Villu Ruusmann org.jpmml.model.annotations.Added(org.dmg.pmml.Version.PMML_4_0) + org.dmg.pmml.HasFieldReference<TimeSeries> From ddfc9222c2634fc5b39a12e72abf925d68be3cac Mon Sep 17 00:00:00 2001 From: Villu Ruusmann Date: Thu, 26 Dec 2024 18:42:14 +0200 Subject: [PATCH 11/16] Added DynamicRegressor to HasFieldReference and HasTargetFieldReference class hierarchies --- pmml-model/src/main/schema/pmml.xjb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pmml-model/src/main/schema/pmml.xjb b/pmml-model/src/main/schema/pmml.xjb index b7e13587..b3b9a09a 100644 --- a/pmml-model/src/main/schema/pmml.xjb +++ b/pmml-model/src/main/schema/pmml.xjb @@ -998,6 +998,8 @@ Copyright (c) 2014 Villu Ruusmann org.jpmml.model.annotations.Added(org.dmg.pmml.Version.PMML_4_4) + org.dmg.pmml.HasFieldReference<DynamicRegressor> + org.dmg.pmml.HasTargetFieldReference<DynamicRegressor> From 005cb100f580ad12a276f70b603dfb18a5ef75bd Mon Sep 17 00:00:00 2001 From: Villu Ruusmann Date: Thu, 26 Dec 2024 18:58:04 +0200 Subject: [PATCH 12/16] Added StateSpaceModel#requireStateVector() method --- pmml-model/src/main/schema/pmml.xjb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pmml-model/src/main/schema/pmml.xjb b/pmml-model/src/main/schema/pmml.xjb index b3b9a09a..1c9e51fd 100644 --- a/pmml-model/src/main/schema/pmml.xjb +++ b/pmml-model/src/main/schema/pmml.xjb @@ -3138,6 +3138,10 @@ Copyright (c) 2014 Villu Ruusmann /> + + org.jpmml.model.annotations.NullSafeGetter + + org.jpmml.model.annotations.Added(org.dmg.pmml.Version.PMML_4_4) Date: Thu, 26 Dec 2024 18:59:04 +0200 Subject: [PATCH 13/16] Added StateSpaceModel#requireMeasurementMatrix() method --- pmml-model/src/main/schema/pmml.xjb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pmml-model/src/main/schema/pmml.xjb b/pmml-model/src/main/schema/pmml.xjb index 1c9e51fd..ff44f94a 100644 --- a/pmml-model/src/main/schema/pmml.xjb +++ b/pmml-model/src/main/schema/pmml.xjb @@ -3138,6 +3138,10 @@ Copyright (c) 2014 Villu Ruusmann /> + + org.jpmml.model.annotations.NullSafeGetter + + org.jpmml.model.annotations.NullSafeGetter From 67e18d7772c030e27d00c4a0d2a9af8fd88161f8 Mon Sep 17 00:00:00 2001 From: Villu Ruusmann Date: Thu, 26 Dec 2024 18:59:33 +0200 Subject: [PATCH 14/16] Added StateSpaceModel#requireTransitionMatrix() method --- pmml-model/src/main/schema/pmml.xjb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pmml-model/src/main/schema/pmml.xjb b/pmml-model/src/main/schema/pmml.xjb index ff44f94a..aafa0e36 100644 --- a/pmml-model/src/main/schema/pmml.xjb +++ b/pmml-model/src/main/schema/pmml.xjb @@ -3146,6 +3146,10 @@ Copyright (c) 2014 Villu Ruusmann org.jpmml.model.annotations.NullSafeGetter + + org.jpmml.model.annotations.NullSafeGetter + + org.jpmml.model.annotations.Added(org.dmg.pmml.Version.PMML_4_4) Date: Thu, 26 Dec 2024 21:36:39 +0200 Subject: [PATCH 15/16] [maven-release-plugin] prepare release 1.6.9 --- pmml-agent/pom.xml | 2 +- pmml-model-example/pom.xml | 2 +- pmml-model-gwt/pom.xml | 2 +- pmml-model-jackson/pom.xml | 2 +- pmml-model-kryo/pom.xml | 2 +- pmml-model-metro/pom.xml | 2 +- pmml-model-moxy/pom.xml | 2 +- pmml-model/pom.xml | 2 +- pmml-xjc/pom.xml | 2 +- pom.xml | 26 +++++++++++++------------- 10 files changed, 22 insertions(+), 22 deletions(-) diff --git a/pmml-agent/pom.xml b/pmml-agent/pom.xml index 47a26b9a..16e82729 100644 --- a/pmml-agent/pom.xml +++ b/pmml-agent/pom.xml @@ -5,7 +5,7 @@ org.jpmml jpmml-model - 1.6-SNAPSHOT + 1.6.9 org.jpmml diff --git a/pmml-model-example/pom.xml b/pmml-model-example/pom.xml index a5f0a20d..508dfb08 100644 --- a/pmml-model-example/pom.xml +++ b/pmml-model-example/pom.xml @@ -5,7 +5,7 @@ org.jpmml jpmml-model - 1.6-SNAPSHOT + 1.6.9 org.jpmml diff --git a/pmml-model-gwt/pom.xml b/pmml-model-gwt/pom.xml index 44a6ed71..6117ce8d 100644 --- a/pmml-model-gwt/pom.xml +++ b/pmml-model-gwt/pom.xml @@ -5,7 +5,7 @@ org.jpmml jpmml-model - 1.6-SNAPSHOT + 1.6.9 org.jpmml diff --git a/pmml-model-jackson/pom.xml b/pmml-model-jackson/pom.xml index d6288c51..3d6b00fd 100644 --- a/pmml-model-jackson/pom.xml +++ b/pmml-model-jackson/pom.xml @@ -5,7 +5,7 @@ org.jpmml jpmml-model - 1.6-SNAPSHOT + 1.6.9 org.jpmml diff --git a/pmml-model-kryo/pom.xml b/pmml-model-kryo/pom.xml index e1594b55..e9bff3d8 100644 --- a/pmml-model-kryo/pom.xml +++ b/pmml-model-kryo/pom.xml @@ -5,7 +5,7 @@ org.jpmml jpmml-model - 1.6-SNAPSHOT + 1.6.9 org.jpmml diff --git a/pmml-model-metro/pom.xml b/pmml-model-metro/pom.xml index 60056beb..5a45a840 100644 --- a/pmml-model-metro/pom.xml +++ b/pmml-model-metro/pom.xml @@ -5,7 +5,7 @@ org.jpmml jpmml-model - 1.6-SNAPSHOT + 1.6.9 org.jpmml diff --git a/pmml-model-moxy/pom.xml b/pmml-model-moxy/pom.xml index 7ab39d9a..ee304cf7 100644 --- a/pmml-model-moxy/pom.xml +++ b/pmml-model-moxy/pom.xml @@ -5,7 +5,7 @@ org.jpmml jpmml-model - 1.6-SNAPSHOT + 1.6.9 org.jpmml diff --git a/pmml-model/pom.xml b/pmml-model/pom.xml index dc34c9c7..e563984e 100644 --- a/pmml-model/pom.xml +++ b/pmml-model/pom.xml @@ -5,7 +5,7 @@ org.jpmml jpmml-model - 1.6-SNAPSHOT + 1.6.9 org.jpmml diff --git a/pmml-xjc/pom.xml b/pmml-xjc/pom.xml index ddbaad8f..ba62ca13 100644 --- a/pmml-xjc/pom.xml +++ b/pmml-xjc/pom.xml @@ -5,7 +5,7 @@ org.jpmml jpmml-model - 1.6-SNAPSHOT + 1.6.9 org.jpmml diff --git a/pom.xml b/pom.xml index 97d8b3c6..ba71485e 100644 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ org.jpmml jpmml-model - 1.6-SNAPSHOT + 1.6.9 pom JPMML-Model @@ -48,7 +48,7 @@ scm:git:git@github.com:jpmml/jpmml-model.git scm:git:git@github.com:jpmml/jpmml-model.git git://github.com/jpmml/jpmml-model.git - HEAD + 1.6.9 GitHub @@ -56,7 +56,7 @@ - 2024-12-08T10:58:17Z + 2024-12-26T19:33:44Z @@ -64,53 +64,53 @@ org.jpmml pmml-agent - 1.6-SNAPSHOT + 1.6.9 org.jpmml pmml-model - 1.6-SNAPSHOT + 1.6.9 org.jpmml pmml-model tests - 1.6-SNAPSHOT + 1.6.9 org.jpmml pmml-model-example - 1.6-SNAPSHOT + 1.6.9 org.jpmml pmml-model-gwt - 1.6-SNAPSHOT + 1.6.9 org.jpmml pmml-model-jackson - 1.6-SNAPSHOT + 1.6.9 org.jpmml pmml-model-kryo - 1.6-SNAPSHOT + 1.6.9 org.jpmml pmml-model-metro - 1.6-SNAPSHOT + 1.6.9 org.jpmml pmml-model-moxy - 1.6-SNAPSHOT + 1.6.9 org.jpmml pmml-xjc - 1.6-SNAPSHOT + 1.6.9 From 16374aafa83766ed79473305d52959cede9650e4 Mon Sep 17 00:00:00 2001 From: Villu Ruusmann Date: Thu, 26 Dec 2024 21:36:39 +0200 Subject: [PATCH 16/16] [maven-release-plugin] prepare for next development iteration --- pmml-agent/pom.xml | 2 +- pmml-model-example/pom.xml | 2 +- pmml-model-gwt/pom.xml | 2 +- pmml-model-jackson/pom.xml | 2 +- pmml-model-kryo/pom.xml | 2 +- pmml-model-metro/pom.xml | 2 +- pmml-model-moxy/pom.xml | 2 +- pmml-model/pom.xml | 2 +- pmml-xjc/pom.xml | 2 +- pom.xml | 26 +++++++++++++------------- 10 files changed, 22 insertions(+), 22 deletions(-) diff --git a/pmml-agent/pom.xml b/pmml-agent/pom.xml index 16e82729..47a26b9a 100644 --- a/pmml-agent/pom.xml +++ b/pmml-agent/pom.xml @@ -5,7 +5,7 @@ org.jpmml jpmml-model - 1.6.9 + 1.6-SNAPSHOT org.jpmml diff --git a/pmml-model-example/pom.xml b/pmml-model-example/pom.xml index 508dfb08..a5f0a20d 100644 --- a/pmml-model-example/pom.xml +++ b/pmml-model-example/pom.xml @@ -5,7 +5,7 @@ org.jpmml jpmml-model - 1.6.9 + 1.6-SNAPSHOT org.jpmml diff --git a/pmml-model-gwt/pom.xml b/pmml-model-gwt/pom.xml index 6117ce8d..44a6ed71 100644 --- a/pmml-model-gwt/pom.xml +++ b/pmml-model-gwt/pom.xml @@ -5,7 +5,7 @@ org.jpmml jpmml-model - 1.6.9 + 1.6-SNAPSHOT org.jpmml diff --git a/pmml-model-jackson/pom.xml b/pmml-model-jackson/pom.xml index 3d6b00fd..d6288c51 100644 --- a/pmml-model-jackson/pom.xml +++ b/pmml-model-jackson/pom.xml @@ -5,7 +5,7 @@ org.jpmml jpmml-model - 1.6.9 + 1.6-SNAPSHOT org.jpmml diff --git a/pmml-model-kryo/pom.xml b/pmml-model-kryo/pom.xml index e9bff3d8..e1594b55 100644 --- a/pmml-model-kryo/pom.xml +++ b/pmml-model-kryo/pom.xml @@ -5,7 +5,7 @@ org.jpmml jpmml-model - 1.6.9 + 1.6-SNAPSHOT org.jpmml diff --git a/pmml-model-metro/pom.xml b/pmml-model-metro/pom.xml index 5a45a840..60056beb 100644 --- a/pmml-model-metro/pom.xml +++ b/pmml-model-metro/pom.xml @@ -5,7 +5,7 @@ org.jpmml jpmml-model - 1.6.9 + 1.6-SNAPSHOT org.jpmml diff --git a/pmml-model-moxy/pom.xml b/pmml-model-moxy/pom.xml index ee304cf7..7ab39d9a 100644 --- a/pmml-model-moxy/pom.xml +++ b/pmml-model-moxy/pom.xml @@ -5,7 +5,7 @@ org.jpmml jpmml-model - 1.6.9 + 1.6-SNAPSHOT org.jpmml diff --git a/pmml-model/pom.xml b/pmml-model/pom.xml index e563984e..dc34c9c7 100644 --- a/pmml-model/pom.xml +++ b/pmml-model/pom.xml @@ -5,7 +5,7 @@ org.jpmml jpmml-model - 1.6.9 + 1.6-SNAPSHOT org.jpmml diff --git a/pmml-xjc/pom.xml b/pmml-xjc/pom.xml index ba62ca13..ddbaad8f 100644 --- a/pmml-xjc/pom.xml +++ b/pmml-xjc/pom.xml @@ -5,7 +5,7 @@ org.jpmml jpmml-model - 1.6.9 + 1.6-SNAPSHOT org.jpmml diff --git a/pom.xml b/pom.xml index ba71485e..aa871a7c 100644 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ org.jpmml jpmml-model - 1.6.9 + 1.6-SNAPSHOT pom JPMML-Model @@ -48,7 +48,7 @@ scm:git:git@github.com:jpmml/jpmml-model.git scm:git:git@github.com:jpmml/jpmml-model.git git://github.com/jpmml/jpmml-model.git - 1.6.9 + HEAD GitHub @@ -56,7 +56,7 @@ - 2024-12-26T19:33:44Z + 2024-12-26T19:36:39Z @@ -64,53 +64,53 @@ org.jpmml pmml-agent - 1.6.9 + 1.6-SNAPSHOT org.jpmml pmml-model - 1.6.9 + 1.6-SNAPSHOT org.jpmml pmml-model tests - 1.6.9 + 1.6-SNAPSHOT org.jpmml pmml-model-example - 1.6.9 + 1.6-SNAPSHOT org.jpmml pmml-model-gwt - 1.6.9 + 1.6-SNAPSHOT org.jpmml pmml-model-jackson - 1.6.9 + 1.6-SNAPSHOT org.jpmml pmml-model-kryo - 1.6.9 + 1.6-SNAPSHOT org.jpmml pmml-model-metro - 1.6.9 + 1.6-SNAPSHOT org.jpmml pmml-model-moxy - 1.6.9 + 1.6-SNAPSHOT org.jpmml pmml-xjc - 1.6.9 + 1.6-SNAPSHOT