File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
gen/src/main/java/com/softlayer/api/gen Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ install:
1818 - mvn install -DskipTests=true -Dmaven.javadoc.skip=true -Dgpg.skip=true
1919 - mkdir ghpages
2020 - pandoc -o ghpages/index.html README.md
21- - printf "%s" " $GH_PAGES_DEPLOYMENT_KEY" > gh_pages_deployment_key
21+ - printf "$GH_PAGES_DEPLOYMENT_KEY" > gh_pages_deployment_key
2222
2323deploy :
2424 provider : pages:git
Original file line number Diff line number Diff line change 1414/** Entry point for the code generator */
1515public class Main {
1616
17- protected static final String METADATA_URL = "https://api.softlayer.com/metadata/v3.1" ;
17+ protected static final String METADATA_URL = "https://api.softlayer.com/metadata/v3.1/ " ;
1818 protected static final String DEFAULT_SOURCE_PATH = "../src/main/java" ;
1919
2020 public static final String USAGE =
@@ -23,7 +23,7 @@ public class Main {
2323 " --src DIR - Optional directory to generate source into. The com.softlayer.api.service package\n " +
2424 " underneath this directory will be cleaned before code is generated. If not given,\n " +
2525 " ../src/main/java is used\n " +
26- " --url URL - Optional metadata URL. If not given, http://api.softlayer.com/metadata is used.\n " +
26+ " --url URL - Optional metadata URL. If not given, http://api.softlayer.com/metadata/v3.1/ is used.\n " +
2727 " --whitelist FILENAME - Optional set of types, properties, and methods to whitelist. It is one\n " +
2828 " entry per line and anything not entered will not be included in the generated client. Simply\n " +
2929 " give the type name, the property as type_name.propertyName, or the method as type_name::methodName.\n " +
You can’t perform that action at this time.
0 commit comments