Skip to content

Commit 4e9f8ba

Browse files
committed
Merge branch 'master' into refactor_add_support_for_other_rest_clients
2 parents c4f4106 + ca3f1ec commit 4e9f8ba

File tree

12 files changed

+55
-19
lines changed

12 files changed

+55
-19
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Just builds the starter
2+
name: Spring Boot Starter Only CI
3+
4+
on:
5+
workflow_dispatch:
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v4
13+
- name: Set up JDK 21 for Shared Runner
14+
uses: actions/setup-java@v4
15+
with:
16+
distribution: 'zulu'
17+
java-version: '21'
18+
cache: 'maven'
19+
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
20+
settings-path: ${{ github.workspace }} # location for the settings.xml file
21+
22+
- name: Publish Starter to GitHub Packages Apache Maven
23+
run: mvn -B deploy -s $GITHUB_WORKSPACE/settings.xml --file spring/fluentforms-spring-boot-starter
24+
env:
25+
GITHUB_TOKEN: ${{ github.token }}
26+

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.3-SNAPSHOT</version>
23+
<version>0.0.4-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.3-SNAPSHOT</version>
8+
<version>0.0.4-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.3-SNAPSHOT</version>
27+
<version>0.0.4-SNAPSHOT</version>
2828
</dependency>
2929
</dependencies>
3030
</project>

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.3-SNAPSHOT</version>
24+
<version>0.0.4-SNAPSHOT</version>
2525
<description>fluent-forms-api</description>
2626

2727
<!--

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.3-SNAPSHOT</version>
23+
<version>0.0.4-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.3-SNAPSHOT</version>
8+
<version>0.0.4-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.3-SNAPSHOT</version>
17+
<version>0.0.4-SNAPSHOT</version>
1818
<description>AEM Document Services REST Services</description>
1919

2020
<!--
@@ -84,8 +84,8 @@
8484
<jaxb.version>4.0.0</jaxb.version>
8585
<commons-io.version>2.7</commons-io.version>
8686
<sling.servlet-helpers.version>1.2.0</sling.servlet-helpers.version>
87-
<fluentforms.version>0.0.3-SNAPSHOT</fluentforms.version>
88-
<rest-services.version>0.0.3-SNAPSHOT</rest-services.version>
87+
<fluentforms.version>0.0.4-SNAPSHOT</fluentforms.version>
88+
<rest-services.version>0.0.4-SNAPSHOT</rest-services.version>
8989

9090
<!-- Testing dependencies -->
9191
<mockito.version>5.15.2</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.3-SNAPSHOT</version>
23+
<version>0.0.4-SNAPSHOT</version>
2424
<relativePath>../pom.xml</relativePath>
2525
</parent>
2626
<artifactId>rest-services.server</artifactId>

spring/fluentforms-sample-cli-app/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</parent>
1111
<groupId>com._4point.aem.fluentforms</groupId>
1212
<artifactId>fluentforms-sample-cli-app</artifactId>
13-
<version>0.0.3-SNAPSHOT</version>
13+
<version>0.0.4-SNAPSHOT</version>
1414
<name>Simple Sample App</name>
1515

1616
<distributionManagement>
@@ -35,7 +35,7 @@
3535
<dependency>
3636
<groupId>com._4point.aem.fluentforms</groupId>
3737
<artifactId>fluentforms-spring-boot-starter</artifactId>
38-
<version>0.0.3-SNAPSHOT</version>
38+
<version>0.0.4-SNAPSHOT</version>
3939
</dependency>
4040
<dependency>
4141
<groupId>org.springframework.boot</groupId>

spring/fluentforms-sample-web-app/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</parent>
1010
<groupId>com._4point.aem.fluentforms</groupId>
1111
<artifactId>fluentforms-sample-web-app</artifactId>
12-
<version>0.0.3-SNAPSHOT</version>
12+
<version>0.0.4-SNAPSHOT</version>
1313
<name>Fluent Forms Spring Boot Sample Web Application</name>
1414
<description>Sample Spring Boot Web Application that utilizes the Fluent Forms Spring Boot Starters</description>
1515

@@ -64,7 +64,7 @@
6464
<dependency>
6565
<groupId>com._4point.aem.fluentforms</groupId>
6666
<artifactId>fluentforms-spring-boot-starter</artifactId>
67-
<version>0.0.3-SNAPSHOT</version>
67+
<version>0.0.4-SNAPSHOT</version>
6868
</dependency>
6969

7070
<!-- Testing Dependencies -->

0 commit comments

Comments
 (0)