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