pl.allegro.tech.build.axion.release.domain.MonorepoConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of axion-release-plugin Show documentation
Show all versions of axion-release-plugin Show documentation
Gradle release and version management plugin
package pl.allegro.tech.build.axion.release.domain;
import org.gradle.api.tasks.Internal;
import java.util.LinkedList;
import java.util.List;
public class MonorepoConfig {
@Internal
private List projectDirs = new LinkedList<>();
public List getProjectDirs() {
return projectDirs;
}
public void setProjectDirs(List projectDirs) {
this.projectDirs = projectDirs;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy