Merge pull request #82 from dwijnand/default-ScmInfo-devConnection

Make ScmInfo devConnection default to None
This commit is contained in:
Dale Wijnand 2017-04-07 17:15:32 +01:00 committed by GitHub
commit 153f3837f1
1 changed files with 3 additions and 3 deletions

View File

@ -578,9 +578,9 @@
"type": "record",
"doc": "Basic SCM information for a project module",
"fields": [
{ "name": "browseUrl", "type": "java.net.URL" },
{ "name": "connection", "type": "String" },
{ "name": "devConnection", "type": "String?" }
{ "name": "browseUrl", "type": "java.net.URL" },
{ "name": "connection", "type": "String" },
{ "name": "devConnection", "type": "String?", "default": "None", "since": "0.0.1" }
]
},
{