Skip to content

Commit fb57fd2

Browse files
committed
Updated fluentforms library version to 0.0.3-SNAPSHOT.
This is in preparation for (maybe) creating a 0.0.2 release that utilizes jersey 2.x instead of jersey 3.x. We have a client that may need to stay on Spring Boot 2.x which implies using Jersey 2.x. We were perhaps a bit hasty in upgrading this library to Jersey 3.x without updating the version number. I am looking at retroactively doing that.
1 parent 807a043 commit fb57fd2

10 files changed

Lines changed: 14 additions & 14 deletions

File tree

fluentforms/core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<groupId>com._4point.aem</groupId>
2222
<artifactId>fluentforms</artifactId>
23-
<version>0.0.2-SNAPSHOT</version>
23+
<version>0.0.3-SNAPSHOT</version>
2424
<relativePath>../pom.xml</relativePath>
2525
</parent>
2626
<artifactId>fluentforms.core</artifactId>

fluentforms/examples/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com._4point.aem</groupId>
77
<artifactId>fluentforms</artifactId>
8-
<version>0.0.2-SNAPSHOT</version>
8+
<version>0.0.3-SNAPSHOT</version>
99
</parent>
1010
<artifactId>fluentforms.examples</artifactId>
1111
<name>FluentForms Examples</name>
@@ -24,7 +24,7 @@
2424
<dependency>
2525
<groupId>com._4point.aem</groupId>
2626
<artifactId>fluentforms.core</artifactId>
27-
<version>0.0.2-SNAPSHOT</version>
27+
<version>0.0.3-SNAPSHOT</version>
2828
</dependency>
2929
<dependency>
3030
<groupId>org.junit.jupiter</groupId>

fluentforms/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<groupId>com._4point.aem</groupId>
2222
<artifactId>fluentforms</artifactId>
2323
<packaging>pom</packaging>
24-
<version>0.0.2-SNAPSHOT</version>
24+
<version>0.0.3-SNAPSHOT</version>
2525
<description>fluent-forms-api</description>
2626

2727
<!--

jbang_scripts/GrabBundles.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,13 @@ public Integer call() throws Exception {
5656
packages.repo("4PointSolutions", "FluentFormsAPI")
5757
.group("com._4point.aem.docservices")
5858
.artifact("rest-services.server")
59-
.version("0.0.2-SNAPSHOT")
59+
.version("0.0.3-SNAPSHOT")
6060
.copyTo(dest, StandardCopyOption.REPLACE_EXISTING);
6161

6262
packages.repo("4PointSolutions", "FluentFormsAPI")
6363
.group("com._4point.aem")
6464
.artifact("fluentforms.core")
65-
.version("0.0.2-SNAPSHOT")
65+
.version("0.0.3-SNAPSHOT")
6666
.copyTo(dest, StandardCopyOption.REPLACE_EXISTING);
6767

6868
return 0;

jbang_scripts/invoke_forms.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
///usr/bin/env jbang "$0" "$@" ; exit $?
22
//REPOS mavencentral,github=https://maven.pkg.github.com/4PointSolutions/*
33
//DEPS info.picocli:picocli:4.6.3
4-
//DEPS com._4point.aem:fluentforms.core:0.0.2-SNAPSHOT com._4point.aem.docservices:rest-services.client:0.0.2-SNAPSHOT
4+
//DEPS com._4point.aem:fluentforms.core:0.0.3-SNAPSHOT com._4point.aem.docservices:rest-services.client:0.0.3-SNAPSHOT
55
//JAVA 11+
66

77
/*

jbang_scripts/invoke_output.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
///usr/bin/env jbang "$0" "$@" ; exit $?
22
//REPOS mavencentral,github=https://maven.pkg.github.com/4PointSolutions/*
33
//DEPS info.picocli:picocli:4.6.3
4-
//DEPS com._4point.aem:fluentforms.core:0.0.2-SNAPSHOT com._4point.aem.docservices:rest-services.client:0.0.2-SNAPSHOT
4+
//DEPS com._4point.aem:fluentforms.core:0.0.3-SNAPSHOT com._4point.aem.docservices:rest-services.client:0.0.3-SNAPSHOT
55
//JAVA 11+
66

77
/*

rest-services/client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<groupId>com._4point.aem.docservices</groupId>
2222
<artifactId>rest-services</artifactId>
23-
<version>0.0.2-SNAPSHOT</version>
23+
<version>0.0.3-SNAPSHOT</version>
2424
<relativePath>../pom.xml</relativePath>
2525
</parent>
2626
<artifactId>rest-services.client</artifactId>

rest-services/it.tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com._4point.aem.docservices</groupId>
77
<artifactId>rest-services</artifactId>
8-
<version>0.0.2-SNAPSHOT</version>
8+
<version>0.0.3-SNAPSHOT</version>
99
</parent>
1010
<artifactId>rest-services.it.tests</artifactId>
1111
<name>Integration Tests</name>

rest-services/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<groupId>com._4point.aem.docservices</groupId>
1515
<artifactId>rest-services</artifactId>
1616
<packaging>pom</packaging>
17-
<version>0.0.2-SNAPSHOT</version>
17+
<version>0.0.3-SNAPSHOT</version>
1818
<description>AEM Document Services REST Services</description>
1919

2020
<!--
@@ -79,8 +79,8 @@
7979
<jaxb.version>4.0.0</jaxb.version>
8080
<commons-io.version>2.7</commons-io.version>
8181
<sling.servlet-helpers.version>1.2.0</sling.servlet-helpers.version>
82-
<fluentforms.version>0.0.2-SNAPSHOT</fluentforms.version>
83-
<rest-services.version>0.0.2-SNAPSHOT</rest-services.version>
82+
<fluentforms.version>0.0.3-SNAPSHOT</fluentforms.version>
83+
<rest-services.version>0.0.3-SNAPSHOT</rest-services.version>
8484

8585
<!-- Testing dependencies -->
8686
<mockito.version>5.3.1</mockito.version>

rest-services/server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<groupId>com._4point.aem.docservices</groupId>
2222
<artifactId>rest-services</artifactId>
23-
<version>0.0.2-SNAPSHOT</version>
23+
<version>0.0.3-SNAPSHOT</version>
2424
<relativePath>../pom.xml</relativePath>
2525
</parent>
2626
<artifactId>rest-services.server</artifactId>

0 commit comments

Comments
 (0)