From 6588fe09d42952d18b812d305b0d37fb93bd11dd Mon Sep 17 00:00:00 2001 From: Trey Chadick Date: Thu, 12 Oct 2023 16:16:06 -0700 Subject: [PATCH] Only use hitachivantara maven repository for relevant artifacts (#589) --- build.gradle | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index d91a25b770..ecdf7f5ec5 100644 --- a/build.gradle +++ b/build.gradle @@ -157,9 +157,13 @@ allprojects { maven { // Mondrian dependencies are available via this repository. It's a direct dependency of the Query // module but is declared here as many modules depend on Query and therefore need it as well. - url "https://repo.orl.eng.hitachivantara.com/artifactory/pnt-mvn" + url "https://repo.orl.eng.hitachivantara.com/artifactory/pnt-mvn" content { - excludeGroupByRegex "org\\.labkey.*" + includeGroup "pentaho" + includeGroup "org.pentaho" + includeGroup "org.olap4j" + includeGroup "javacup" + includeGroup "eigenbase" } } }