#121 - Polishing.

This commit is contained in:
Oliver Drotbohm
2019-06-05 12:03:51 +02:00
parent c1a7f0d124
commit 242c88d4e4
2 changed files with 6 additions and 6 deletions

View File

@@ -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)
*/ */

View File

@@ -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 {