Skip to content

Commit 019993b

Browse files
fix: re-add setter for grouId in the MavenPomExtension (#154)
1 parent 0f14879 commit 019993b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

plugins/edc-build/src/main/java/org/eclipse/edc/plugins/edcbuild/extensions/MavenPomExtension.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import org.gradle.api.provider.Property;
1818

1919
public abstract class MavenPomExtension {
20-
private final String groupId = "org.eclipse.edc";
20+
private String groupId = "org.eclipse.edc";
2121

2222
public abstract Property<String> getProjectName();
2323

@@ -43,4 +43,7 @@ public String getGroupId() {
4343
return groupId;
4444
}
4545

46+
public void setGroupId(String groupId) {
47+
this.groupId = groupId;
48+
}
4649
}

0 commit comments

Comments
 (0)