Skip to content

Commit

Permalink
Trim :pipeline dependencies a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
vnickolov committed Oct 21, 2024
1 parent cb65b82 commit cfa69e3
Show file tree
Hide file tree
Showing 10 changed files with 8 additions and 6 deletions.
3 changes: 3 additions & 0 deletions applications/algorithms/machinery/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,12 @@ dependencies {
}

implementation project(':algo-common')
// `CypherMapWrapper`
implementation project(':annotations')
implementation project(':config-api')
implementation project(':core')
implementation project(':core-write')
implementation project(':defaults-and-limits-configuration')
implementation project(':graph-store-catalog-results')
implementation project(':graph-schema-api')
implementation project(':logging')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@

import java.util.Map;

// This is only used in the `executor` framework: `ExecutorSpec` and `ProcedureExecutorSpec`
@Deprecated(forRemoval = true)
@FunctionalInterface
public interface ProcConfigParser<CONFIG> {
CONFIG processInput(Map<String, Object> configuration);
Expand Down
2 changes: 1 addition & 1 deletion pipeline/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ dependencies {

implementation openGds.reflections

implementation project(':algo')
// implementation project(':algo')
implementation project(':algo-common')
implementation project(':algorithms-facade-api')
implementation project(':algorithms-machinery')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.neo4j.gds.procedures.algorithms;
package org.neo4j.gds.ml.pipeline;

import org.apache.commons.lang3.StringUtils;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
package org.neo4j.gds.ml.pipeline;

import org.neo4j.gds.applications.algorithms.metadata.Algorithm;
import org.neo4j.gds.procedures.algorithms.CanonicalProcedureName;

import java.util.Arrays;
import java.util.HashMap;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
import org.neo4j.gds.applications.algorithms.machinery.AlgorithmLabel;
import org.neo4j.gds.configuration.DefaultsConfiguration;
import org.neo4j.gds.configuration.LimitsConfiguration;
import org.neo4j.gds.procedures.algorithms.CanonicalProcedureName;
import org.neo4j.gds.procedures.algorithms.configuration.ConfigurationParser;

import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
import org.neo4j.gds.mem.MemoryEstimations;
import org.neo4j.gds.mem.MemoryRange;
import org.neo4j.gds.procedures.algorithms.AlgorithmsProcedureFacade;
import org.neo4j.gds.procedures.algorithms.CanonicalProcedureName;

import java.util.Collection;
import java.util.HashMap;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.neo4j.gds.procedures.algorithms;
package org.neo4j.gds.ml.pipeline;

import org.junit.jupiter.api.Test;
import org.junit.jupiter.params.ParameterizedTest;
Expand Down

0 comments on commit cfa69e3

Please sign in to comment.