This is an automated email from the ASF dual-hosted git repository.
elharo pushed a commit to branch close
in repository https://gitbox.apache.org/repos/asf/maven-jmod-plugin.git
The following commit(s) were added to refs/heads/close by this push:
new 90ead03 wip
90ead03 is described below
commit 90ead03e1493ca95565a44df72a931bacc6d4ac0
Author: Elliotte Rusty Harold <[email protected]>
AuthorDate: Wed Dec 18 10:24:01 2024 -0500
wip
---
src/it/list-base-config/verify.groovy | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/it/list-base-config/verify.groovy
b/src/it/list-base-config/verify.groovy
index 8cddfc7..a854396 100644
--- a/src/it/list-base-config/verify.groovy
+++ b/src/it/list-base-config/verify.groovy
@@ -26,7 +26,8 @@ def resourceNames = [
def buildLog = new File (basedir, 'build.log')
def listLines = buildLog.readLines()
- .dropWhile{ !it.startsWith('[INFO] ---') }
+ .dropWhile{ !it.startsWith('[INFO] The following
files are contained in the module file') }
+ .drop(1)
.takeWhile{ !it.startsWith('[INFO] ---') }
.findAll{ it.startsWith('[INFO] ')}
.collect{ it - '[INFO] ' } as Set