mirror of https://github.com/apache/cloudstack.git
add cloud-server-extras.jar to xml doc's dependency
This commit is contained in:
parent
7a60bbbbbc
commit
bbdc1bde7f
|
|
@ -296,15 +296,16 @@ def build_xml_api_description ():
|
|||
relationship = Utils.relpath(sourcedir,os.getcwd())
|
||||
cp = [ _join(relationship,x) for x in task.generator.env.CLASSPATH.split(pathsep) ]
|
||||
|
||||
jarnames = ['utils','server','core', 'api']
|
||||
jarnames = ['utils','server','core', 'api', 'server-extras']
|
||||
props = ["client/tomcatconf/commands.properties.in"]
|
||||
if buildpremium: props.append("cloudstack-proprietary/premium/tomcatconf/commands-ext.properties.in")
|
||||
|
||||
sources = []
|
||||
for i in jarnames:
|
||||
str = 'target/jar/cloud-%s.jar' % i
|
||||
sources.append (str)
|
||||
sources.append (props)
|
||||
sources.append ("client/tomcatconf/commands.properties.in")
|
||||
if buildpremium:
|
||||
sources.append("cloudstack-proprietary/premium/tomcatconf/commands-ext.properties.in")
|
||||
|
||||
buildproducts = []
|
||||
for i in sources:
|
||||
|
|
|
|||
Loading…
Reference in New Issue