org.eclipse.edc.plugins.edcbuild.extensions.MavenPomExtension Maven / Gradle / Ivy
/*
* Copyright (c) 2022 Microsoft Corporation
*
* This program and the accompanying materials are made available under the
* terms of the Apache License, Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: Apache-2.0
*
* Contributors:
* Microsoft Corporation - initial API and implementation
*
*/
package org.eclipse.edc.plugins.edcbuild.extensions;
import org.gradle.api.provider.Property;
public abstract class MavenPomExtension {
private String groupId = "org.eclipse.edc";
public abstract Property getProjectName();
public abstract Property getDescription();
public abstract Property getProjectUrl();
public abstract Property getLicenseName();
public abstract Property getLicenseUrl();
public abstract Property getDeveloperId();
public abstract Property getDeveloperName();
public abstract Property getDeveloperEmail();
public abstract Property getScmConnection();
public abstract Property getScmUrl();
public String getGroupId() {
return groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
}