summaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
authorAndreas Fankhauser hiddenalpha.ch2023-06-30 18:42:59 +0200
committerAndreas Fankhauser hiddenalpha.ch2023-06-30 18:42:59 +0200
commit9b1e4ff8e29c9736addbe2cd1b18f2814004e2cd (patch)
treefca8adea22d9dcf34eb813ebc179ab990f8266ef /src/main
parentef81ae4702bff46fbc536ef5e2ec7f380f4b4407 (diff)
downloadUnspecifiedGarbage-9b1e4ff8e29c9736addbe2cd1b18f2814004e2cd.zip
UnspecifiedGarbage-9b1e4ff8e29c9736addbe2cd1b18f2814004e2cd.tar.gz
(MvnDepScan) Refine artifact filters.
Diffstat (limited to 'src/main')
-rw-r--r--src/main/lua/maven/FindLatestPaisaArtifacts.lua14
1 files changed, 9 insertions, 5 deletions
diff --git a/src/main/lua/maven/FindLatestPaisaArtifacts.lua b/src/main/lua/maven/FindLatestPaisaArtifacts.lua
index 53063e8..8162dd6 100644
--- a/src/main/lua/maven/FindLatestPaisaArtifacts.lua
+++ b/src/main/lua/maven/FindLatestPaisaArtifacts.lua
@@ -119,15 +119,19 @@ end
function mod.onArtifactSubdirFoundInArtifactory( app, path )
assert(not path:find("/$"), path)
path = path .."/"
- -- TODO drop this debugging condition
--if path:len() > 37 and not path:find("^/artifactory/paisa/ch/post/it/paisa/preflux") then goto skipThisPath end
- --
- if path:find("^/artifactory/paisa/ch/post/it/paisa/alice") then goto skipThisPath end
- if path:find("^/artifactory/paisa/ch/post/it/paisa/data/resources/paisa%-data%-resources%-") then goto skipThisPath end
- if path:find("^/artifactory/paisa/ch/post/it/paisa/data/transformer/") then goto skipThisPath end
if path:find("^/artifactory/paisa/ch/post/it/paisa/[^/]+/[^-]+%-config/") then goto skipThisPath end
if path:find("^/artifactory/paisa/ch/post/it/paisa/[^/]+/[^-]+%-domain/") then goto skipThisPath end
if path:find("^/artifactory/paisa/ch/post/it/paisa/[^/]+/[^-]+%-test/") then goto skipThisPath end
+ if path:find("^/artifactory/paisa/ch/post/it/paisa/alice") then goto skipThisPath end
+ if path:find("^/artifactory/paisa/ch/post/it/paisa/aseed") then goto skipThisPath end
+ if path:find("^/artifactory/paisa/ch/post/it/paisa/data/resources/paisa%-data%-resources%-") then goto skipThisPath end
+ if path:find("^/artifactory/paisa/ch/post/it/paisa/data/transformer/") then goto skipThisPath end
+ if path:find("^/artifactory/paisa/ch/post/it/paisa/paisa-devpack") then goto skipThisPath end
+ if path:find("^/artifactory/paisa/ch/post/it/paisa/paisa-pom") then goto skipThisPath end
+ if path:find("^/artifactory/paisa/ch/post/it/paisa/paisa-superpom") then goto skipThisPath end
+ if path:find("^/artifactory/paisa/ch/post/it/paisa/tragula") then goto skipThisPath end
+ if path:find("^/artifactory/paisa/ch/post/it/paisa/tyro") then goto skipThisPath end
goto doHttpRequest
::skipThisPath::
--LOGDBG("ignore '".. path .."'\n")