mirror of https://github.com/apache/cloudstack.git
debian: Depend on libcommons-fileupload-java for AWS API
This JAR is also provided by a Ubuntu package and is the version we depend on with Maven. By adding this JAR to wscript_configure it is added to the classpath so the AWS API will be able to use it. Not having this will result in a conflict in a package conflict During build time we will build against the version fetched by Maven, but runtime we will use the one from the Ubuntu repository.
This commit is contained in:
parent
e2288ad518
commit
38dca7c9c3
|
|
@ -25,7 +25,6 @@
|
|||
/usr/share/java/axis2-*.jar
|
||||
/usr/share/java/neethi*.jar
|
||||
/usr/share/java/CAStorSDK*.jar
|
||||
/usr/share/java/commons-fileupload*.jar
|
||||
/usr/share/java/json-simple*.jar
|
||||
/usr/share/java/axiom-*.jar
|
||||
/usr/share/java/antlr*.jar
|
||||
|
|
|
|||
|
|
@ -120,6 +120,6 @@ Description: CloudStack commandline tool
|
|||
Package: cloud-awsapi
|
||||
Provides: cloud-awsapi
|
||||
Architecture: any
|
||||
Depends: openjdk-6-jre, tomcat6, libcommons-lang-java, libjaxp1.3-java (>= 1.3), libdom4j-java (>= 1.6.1)
|
||||
Depends: openjdk-6-jre, tomcat6, libcommons-lang-java, libjaxp1.3-java (>= 1.3), libdom4j-java (>= 1.6.1), libcommons-fileupload-java (>= 1.2)
|
||||
Description: CloudStack AWS API wrapper
|
||||
The CloudStack Amazon Webservices API wrapper
|
||||
|
|
|
|||
|
|
@ -47,6 +47,7 @@ systemjars = {
|
|||
"commons-logging-api.jar",
|
||||
"commons-pool.jar",
|
||||
"commons-httpclient.jar",
|
||||
"commons-fileupload.jar",
|
||||
"ws-commons-util.jar",
|
||||
"mysql-connector-java.jar",
|
||||
),
|
||||
|
|
|
|||
Loading…
Reference in New Issue