Skip to content

Commit 9bd442b

Browse files
committed
Update groupId from connector to dumont in pom files
Replaces all occurrences of 'com.viglet.dumont.connector' with 'com.viglet.dumont' in Maven pom.xml files across all modules. Also removes explicit version tags for some dependencies and updates dependency references accordingly. This change standardizes the groupId for all modules under the 'com.viglet.dumont' namespace.
1 parent 55d763d commit 9bd442b

File tree

13 files changed

+26
-33
lines changed

13 files changed

+26
-33
lines changed

aem-commons/pom.xml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<version>2026.1.11</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
11-
<groupId>com.viglet.dumont.connector</groupId>
11+
<groupId>com.viglet.dumont</groupId>
1212
<artifactId>aem-commons</artifactId>
1313
<packaging>jar</packaging>
1414
<name>Dumont AEM - Commons</name>
@@ -56,12 +56,10 @@
5656
<dependency>
5757
<groupId>com.viglet.turing</groupId>
5858
<artifactId>turing-java-sdk</artifactId>
59-
<version>${project.version}</version>
6059
</dependency>
6160
<dependency>
6261
<groupId>com.viglet.dumont</groupId>
6362
<artifactId>dumont-commons</artifactId>
64-
<version>${project.version}</version>
6563
</dependency>
6664
<dependency>
6765
<groupId>org.apache.commons</groupId>

aem/aem-plugin-sample/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
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">
44
<modelVersion>4.0.0</modelVersion>
55
<parent>
6-
<groupId>com.viglet.dumont.connector</groupId>
6+
<groupId>com.viglet.dumont</groupId>
77
<artifactId>dumont-aem</artifactId>
88
<version>2026.1.11</version>
99
<relativePath>../pom.xml</relativePath>
@@ -19,7 +19,7 @@
1919
</properties>
2020
<dependencies>
2121
<dependency>
22-
<groupId>com.viglet.dumont.connector</groupId>
22+
<groupId>com.viglet.dumont</groupId>
2323
<artifactId>aem-commons</artifactId>
2424
</dependency>
2525
<dependency>

aem/aem-plugin/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
55
<parent>
6-
<groupId>com.viglet.dumont.connector</groupId>
6+
<groupId>com.viglet.dumont</groupId>
77
<artifactId>dumont-aem</artifactId>
88
<version>2026.1.11</version>
99
<relativePath>../pom.xml</relativePath>
@@ -84,15 +84,15 @@
8484
</exclusions>
8585
</dependency>
8686
<dependency>
87-
<groupId>com.viglet.dumont.connector</groupId>
87+
<groupId>com.viglet.dumont</groupId>
8888
<artifactId>aem-commons</artifactId>
8989
</dependency>
9090
<dependency>
9191
<groupId>com.viglet.dumont</groupId>
9292
<artifactId>dumont-spring</artifactId>
9393
</dependency>
9494
<dependency>
95-
<groupId>com.viglet.dumont.connector</groupId>
95+
<groupId>com.viglet.dumont</groupId>
9696
<artifactId>connector-commons</artifactId>
9797
</dependency>
9898
</dependencies>
@@ -135,7 +135,7 @@
135135
<shadedArtifactAttached>true</shadedArtifactAttached>
136136
<artifactSet>
137137
<includes>
138-
<include>com.viglet.dumont.connector:aem-commons:*</include>
138+
<include>com.viglet.dumont:aem-commons:*</include>
139139
</includes>
140140
</artifactSet>
141141
<transformers>

aem/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<version>2026.1.11</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
11-
<groupId>com.viglet.dumont.connector</groupId>
11+
<groupId>com.viglet.dumont</groupId>
1212
<artifactId>dumont-aem</artifactId>
1313
<packaging>pom</packaging>
1414
<name>Dumont AEM</name>

connector/connector-app/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<parent>
66
<artifactId>dumont-connector</artifactId>
7-
<groupId>com.viglet.dumont.connector</groupId>
7+
<groupId>com.viglet.dumont</groupId>
88
<version>2026.1.11</version>
99
</parent>
1010

@@ -106,7 +106,7 @@
106106
<scope>test</scope>
107107
</dependency>
108108
<dependency>
109-
<groupId>com.viglet.dumont.connector</groupId>
109+
<groupId>com.viglet.dumont</groupId>
110110
<artifactId>connector-commons</artifactId>
111111
</dependency>
112112
<dependency>

connector/connector-commons/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<parent>
66
<artifactId>dumont-connector</artifactId>
7-
<groupId>com.viglet.dumont.connector</groupId>
7+
<groupId>com.viglet.dumont</groupId>
88
<version>2026.1.11</version>
99
</parent>
1010

connector/connector-sample/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<parent>
66
<artifactId>dumont-connector</artifactId>
7-
<groupId>com.viglet.dumont.connector</groupId>
7+
<groupId>com.viglet.dumont</groupId>
88
<version>2026.1.9</version>
99
</parent>
1010

@@ -18,7 +18,7 @@
1818
</properties>
1919
<dependencies>
2020
<dependency>
21-
<groupId>com.viglet.dumont.connector</groupId>
21+
<groupId>com.viglet.dumont</groupId>
2222
<artifactId>wc-plugin</artifactId>
2323
</dependency>
2424
</dependencies>
@@ -48,7 +48,7 @@
4848
<shadedArtifactAttached>true</shadedArtifactAttached>
4949
<artifactSet>
5050
<includes>
51-
<include>com.viglet.dumont.connector:*</include>
51+
<include>com.viglet.dumont:*</include>
5252
</includes>
5353
</artifactSet>
5454
<filters>

connector/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<version>2026.1.11</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
11-
<groupId>com.viglet.dumont.connector</groupId>
11+
<groupId>com.viglet.dumont</groupId>
1212
<artifactId>dumont-connector</artifactId>
1313
<version>2026.1.11</version>
1414
<name>Dumont Connector</name>

pom.xml

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@
243243
<dependency>
244244
<groupId>com.viglet.turing</groupId>
245245
<artifactId>turing-java-sdk</artifactId>
246-
<version>${project.version}</version>
246+
<version>2026.1.9</version>
247247
</dependency>
248248
<dependency>
249249
<groupId>com.viglet.dumont</groupId>
@@ -256,7 +256,7 @@
256256
<version>${project.version}</version>
257257
</dependency>
258258
<dependency>
259-
<groupId>com.viglet.dumont.connector</groupId>
259+
<groupId>com.viglet.dumont</groupId>
260260
<artifactId>connector-commons</artifactId>
261261
<version>${project.version}</version>
262262
</dependency>
@@ -271,25 +271,20 @@
271271
<version>${project.version}</version>
272272
</dependency>
273273
<dependency>
274-
<groupId>com.viglet.dumont.connector</groupId>
274+
<groupId>com.viglet.dumont</groupId>
275275
<artifactId>wc-plugin</artifactId>
276276
<version>${project.version}</version>
277277
</dependency>
278278
<dependency>
279-
<groupId>com.viglet.dumont.connector</groupId>
279+
<groupId>com.viglet.dumont</groupId>
280280
<artifactId>wc-commons</artifactId>
281281
<version>${project.version}</version>
282282
</dependency>
283283
<dependency>
284-
<groupId>com.viglet.dumont.connector</groupId>
284+
<groupId>com.viglet.dumont</groupId>
285285
<artifactId>aem-commons</artifactId>
286286
<version>${project.version}</version>
287287
</dependency>
288-
<dependency>
289-
<groupId>com.viglet.dumont.connector</groupId>
290-
<artifactId>sprinklr-commons</artifactId>
291-
<version>${project.version}</version>
292-
</dependency>
293288
<dependency>
294289
<groupId>ch.qos.logback</groupId>
295290
<artifactId>logback-classic</artifactId>

web-crawler/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

12-
<groupId>com.viglet.dumont.connector</groupId>
12+
<groupId>com.viglet.dumont</groupId>
1313
<artifactId>dumont-web-crawler</artifactId>
1414
<name>Dumont Web Crawler</name>
1515
<description>Dumont Web Crawler Connector</description>

0 commit comments

Comments
 (0)