package com.cadrlife.devsearch.agent.example; import com.cadrlife.devsearch.agent.Main; import java.io.IOException; public class ExampleUpdateContentsMain { public static void main(String[] args) throws IOException { Main.main(new String[]{ "update-contents" ,"--config-file=C:/temp/dev-search/dev-search-agent.properties" ,"--checkout-path=C:/temp/dev-search/checkout" ,"--repo-name=Stash-LIB" ,"--project-name=bbg-domain" ,"--push-to-repo" // ,"--clean" ,"--localExecute=D:/projects/dev-search/dev-search-agent/src/test/resources/exampleScript.groovy" }); } }