org.fugerit.java.doc.lib.autodoc.AutodocModule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fj-doc-lib-autodoc Show documentation
Show all versions of fj-doc-lib-autodoc Show documentation
API for generating documentation for Venus Project
package org.fugerit.java.doc.lib.autodoc;
import lombok.Getter;
public class AutodocModule {
public static final String CURRENT_VERSION = "1.0.0";
@Getter private String version;
public AutodocModule() {
this.version = CURRENT_VERSION;
}
public static final String DEFAULT_HTML_CSS_LINK = "https://venusguides.fugerit.org/src/css/default_venus_docs_style.css";
}