#121 - Polishing.
This commit is contained in:
@@ -45,7 +45,7 @@ public class Project implements Comparable<Project> {
|
||||
private final @Wither String fullName;
|
||||
private final Collection<Project> dependencies;
|
||||
private final @Getter Tracker tracker;
|
||||
private final @Wither @Getter ArtifactCoordinates additionalArtifacts;
|
||||
private final @Wither ArtifactCoordinates additionalArtifacts;
|
||||
private final @Wither boolean skipTests;
|
||||
|
||||
Project(String key, String name) {
|
||||
@@ -82,7 +82,7 @@ public class Project implements Comparable<Project> {
|
||||
|
||||
/**
|
||||
* Returns whether the current project depends on the given one.
|
||||
*
|
||||
*
|
||||
* @param project must not be {@literal null}.
|
||||
* @return
|
||||
*/
|
||||
@@ -104,7 +104,7 @@ public class Project implements Comparable<Project> {
|
||||
|
||||
/**
|
||||
* Returns all dependencies of the current project including transitive ones.
|
||||
*
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
public Set<Project> getDependencies() {
|
||||
@@ -114,7 +114,7 @@ public class Project implements Comparable<Project> {
|
||||
.collect(Collectors.toSet());
|
||||
}
|
||||
|
||||
/*
|
||||
/*
|
||||
* (non-Javadoc)
|
||||
* @see java.lang.Comparable#compareTo(java.lang.Object)
|
||||
*/
|
||||
|
||||
@@ -37,8 +37,8 @@ import org.jgrapht.traverse.TopologicalOrderIterator;
|
||||
*/
|
||||
public class Projects {
|
||||
|
||||
public static final Project COMMONS, BUILD, REST, JDBC, JPA, MONGO_DB, NEO4J, SOLR, COUCHBASE, CASSANDRA, ELASTICSEARCH,
|
||||
REDIS, GEMFIRE, KEY_VALUE, ENVERS, LDAP, GEODE, R2DBC;
|
||||
public static final Project COMMONS, BUILD, REST, JDBC, JPA, MONGO_DB, NEO4J, SOLR, COUCHBASE, CASSANDRA,
|
||||
ELASTICSEARCH, REDIS, GEMFIRE, KEY_VALUE, ENVERS, LDAP, GEODE, R2DBC;
|
||||
public static final List<Project> PROJECTS;
|
||||
|
||||
static {
|
||||
|
||||
Reference in New Issue
Block a user