Removed the docs section

This commit is contained in:
Marcin Grzejszczak
2017-03-10 12:23:57 +01:00
parent 3265732818
commit 89550417ad

View File

@@ -38,8 +38,6 @@ public class ReleaserProperties {
private Pom pom = new Pom();
private Docs docs = new Docs();
private Maven maven = new Maven();
public static class Git {
@@ -105,18 +103,6 @@ public class ReleaserProperties {
}
}
public static class Docs {
private String ghPagesUrl = "https://raw.githubusercontent.com/spring-cloud/spring-cloud-build/master/docs/src/main/asciidoc/ghpages.sh";
public String getGhPagesUrl() {
return this.ghPagesUrl;
}
public void setGhPagesUrl(String ghPagesUrl) {
this.ghPagesUrl = ghPagesUrl;
}
}
public static class Maven {
/**
@@ -194,14 +180,6 @@ public class ReleaserProperties {
this.git = git;
}
public Docs getDocs() {
return this.docs;
}
public void setDocs(Docs docs) {
this.docs = docs;
}
public Pom getPom() {
return this.pom;
}