I have a plugin script which is doing a date search

def retrieveArtifacts() {
    before = Calendar.getInstance()
    before.add(Calendar.DAY_OF_WEEK, -1)
    //search to get all items older than x days
    List<RepoPath> agePaths =
searches.artifactsCreatedOrModifiedInRange(null , before,
'libs-release-local')
    agePaths.each {
       echo "found age $it"
    }
}

but this never returns anything, no errors no log output, just silence.
What have I done wrong?

regards

Adam D
------------------------------------------------------------------------------
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
_______________________________________________
Artifactory-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/artifactory-users

Reply via email to