add cloud-server-extras.jar to xml doc's dependency

This commit is contained in:
Frank 2011-01-12 17:42:38 -08:00
parent 7a60bbbbbc
commit bbdc1bde7f
1 changed files with 4 additions and 3 deletions

View File

@ -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: