Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

mvn archetype:generate -DgroupId=org.chtijbug.drools -DartifactId=quickstart -Dversion=1.0-SNAPSHOT SNAPSHO0T -DarchetypeGroupId=org.chtijbug.drools -DarchetypeArtifactId=drools-service-runner-archetype -DarchetypeVersion=1.1.0.12-SNAPSHOT 15 -DinteractiveMode=true

 

    • During the project generation, maven-archetype will ask for filling required inputs which are the following :  
      • guvnor-host : the base part of the URL where is located Guvnor (i.e. http://localhost:8080/
      • guvnor-app : the Guvnor Application name from the servlet container (i.e. drools-guvnor)
      • guvnor-package : The Business Assets package name within Guvnor
      • guvnor-version : the Business Assets Package version within Guvnor
      • guvnor-username : the account for accessing Guvnor REST API
      • guvnor-password : the account for accessing Guvnor REST API
      • decision-inputClass : The root Class which contains all elements to be inserted into the KnowledgeSession
      • decision-outputClass : The root Class which will be returned by the service.
      • warFilename : The final war name

...