Skip to content

Commit 4f9955a

Browse files
authored
v1.4.2: fixed groupId capitalisation and versioning in build.gradle file (#35)
1 parent 9bb277f commit 4f9955a

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
Significant changes since 0.1.0
22

3-
1.4.1 2026-02-19
3+
1.4.2 2026-02-25
44

55
- feature: Add `OtherReferences` field when building Dataset
6+
- change: Fixed groupId to lowercase in `build.gradle`
67

78
1.4.0 2026-02-19
89

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ plugins {
44

55
apply plugin: 'java'
66

7-
group = 'com.github.IQSS'
7+
group = 'com.github.iqss'
88
sourceCompatibility = 1.8
9-
version = 'v1.4.1'
9+
version = 'v1.4.2'
1010
def springVersion='5.3.24'
1111
def jacksonVersion='2.20.0'
1212
def jacksonAnnotationsVersion='2.20'
@@ -96,7 +96,7 @@ task listJars {
9696
publishing {
9797
publications {
9898
maven(MavenPublication) {
99-
groupId = 'com.github.IQSS'
99+
groupId = 'com.github.iqss'
100100
artifactId = 'dataverse-client-java'
101101

102102
from components.java

0 commit comments

Comments
 (0)