com.prezi.pride.vcs.Vcs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pride-core Show documentation
Show all versions of pride-core Show documentation
Pride manages multiple Gradle modules as a single Gradle project
package com.prezi.pride.vcs;
public class Vcs {
private final String type;
private final VcsSupport support;
public Vcs(String type, VcsSupport support) {
this.type = type;
this.support = support;
}
public String getType() {
return type;
}
public VcsSupport getSupport() {
return support;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy