Skip to content

Commit 4723927

Browse files
committed
Bump version to 2026.1.9 and update connector-app config
Updated all module and parent POM files to version 2026.1.9. Added spring-boot-h2console dependency to connector-app. Enhanced additional-spring-configuration-metadata.json with new and improved property descriptions for better configuration clarity. Updated build scripts to reference new release artifacts.
1 parent d7eeaef commit 4723927

File tree

26 files changed

+68
-39
lines changed

26 files changed

+68
-39
lines changed

aem-commons/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.viglet.dumont</groupId>
77
<artifactId>dumont</artifactId>
8-
<version>2026.1.7</version>
8+
<version>2026.1.9</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111
<groupId>com.viglet.dumont.connector</groupId>

aem/aem-plugin-sample/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.viglet.dumont.connector</groupId>
77
<artifactId>dumont-aem</artifactId>
8-
<version>2026.1.7</version>
8+
<version>2026.1.9</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111
<artifactId>aem-plugin-sample</artifactId>

aem/aem-plugin/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.viglet.dumont.connector</groupId>
77
<artifactId>dumont-aem</artifactId>
8-
<version>2026.1.7</version>
8+
<version>2026.1.9</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111
<artifactId>aem-plugin</artifactId>

aem/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.viglet.dumont</groupId>
77
<artifactId>dumont</artifactId>
8-
<version>2026.1.7</version>
8+
<version>2026.1.9</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111
<groupId>com.viglet.dumont.connector</groupId>

commons/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>com.viglet.dumont</groupId>
1313
<artifactId>dumont</artifactId>
14-
<version>2026.1.7</version>
14+
<version>2026.1.9</version>
1515
<relativePath>../pom.xml</relativePath>
1616
</parent>
1717
<artifactId>dumont-commons</artifactId>

connector/connector-app/pom.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>dumont-connector</artifactId>
77
<groupId>com.viglet.dumont.connector</groupId>
8-
<version>2026.1.7</version>
8+
<version>2026.1.9</version>
99
</parent>
1010

1111
<artifactId>connector-app</artifactId>
@@ -64,6 +64,10 @@
6464
<version>2.2.41</version>
6565
<scope>compile</scope>
6666
</dependency>
67+
<dependency>
68+
<groupId>org.springframework.boot</groupId>
69+
<artifactId>spring-boot-h2console</artifactId>
70+
</dependency>
6771
<dependency>
6872
<groupId>org.springframework.boot</groupId>
6973
<artifactId>spring-boot-starter-data-jpa</artifactId>
Lines changed: 37 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,59 @@
11
{
22
"properties": [
33
{
4-
"name": "dumont.scheduler.enabled",
5-
"type": "java.lang.Boolean",
6-
"description": "Description for dumont.scheduler.enabled."
4+
"name": "dumont.allowedOrigins",
5+
"type": "java.lang.String",
6+
"description": "Comma-separated list of allowed origins for CORS configuration."
77
},
88
{
9-
"name": "turing.solr.endpoint",
9+
"name": "dumont.cron",
1010
"type": "java.lang.String",
11-
"description": "A description for 'turing.solr.endpoint'"
11+
"description": "Cron expression to schedule job execution."
1212
},
1313
{
14-
"name": "turing.api-key",
14+
"name": "dumont.cron.zone",
1515
"type": "java.lang.String",
16-
"description": "A description for 'turing.api-key'"
16+
"description": "Timezone used for cron expression evaluation."
1717
},
1818
{
19-
"name": "turing.url",
19+
"name": "dumont.dependencies.enabled",
2020
"type": "java.lang.String",
21-
"description": "A description for 'turing.url'"
21+
"description": "Enable or disable dependency resolution during processing."
22+
},
23+
{
24+
"name": "dumont.indexing.provider",
25+
"type": "java.lang.String",
26+
"description": "The indexing provider to use for content indexing (e.g. turing, solr, turing)."
2227
},
2328
{
2429
"name": "dumont.job.size",
2530
"type": "java.lang.String",
26-
"description": "A description for 'dumont.job.size'"
31+
"description": "Maximum number of items to process per job execution."
2732
},
2833
{
29-
"name": "dumont.allowedOrigins",
34+
"name": "dumont.reactive.indexing",
35+
"type": "java.lang.String",
36+
"description": "Enable or disable reactive indexing mode for asynchronous processing."
37+
},
38+
{
39+
"name": "dumont.scheduler.enabled",
40+
"type": "java.lang.Boolean",
41+
"description": "Enable or disable the scheduled job execution."
42+
},
43+
{
44+
"name": "turing.api-key",
45+
"type": "java.lang.String",
46+
"description": "API key for authenticating with the Turing platform."
47+
},
48+
{
49+
"name": "turing.solr.endpoint",
50+
"type": "java.lang.String",
51+
"description": "Solr endpoint URL used by the Turing integration."
52+
},
53+
{
54+
"name": "turing.url",
3055
"type": "java.lang.String",
31-
"description": "A description for 'dumont.allowedOrigins'"
56+
"description": "Base URL of the Turing platform API."
3257
}
3358
]
3459
}

connector/connector-commons/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>dumont-connector</artifactId>
77
<groupId>com.viglet.dumont.connector</groupId>
8-
<version>2026.1.7</version>
8+
<version>2026.1.9</version>
99
</parent>
1010

1111
<artifactId>connector-commons</artifactId>

connector/connector-sample/build.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
<fileset dir="scripts/prod/"/>
1010
</copy>
1111
<copy file="target/connector-sample.jar" todir="dist/prod/libs/"/>
12-
<get src="https://github.com/opendumont/dumont/releases/download/v2026.1.7/dumont-connector.jar" dest="dist/prod/"/>
12+
<get src="https://github.com/opendumont/dumont/releases/download/v2026.1.9/dumont-connector.jar" dest="dist/prod/"/>
1313
</target>
1414
</project>

connector/connector-sample/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>dumont-connector</artifactId>
77
<groupId>com.viglet.dumont.connector</groupId>
8-
<version>2026.1.7</version>
8+
<version>2026.1.9</version>
99
</parent>
1010

1111
<artifactId>connector-sample</artifactId>

0 commit comments

Comments
 (0)