You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by fr...@apache.org on 2012/10/09 05:43:54 UTC

git commit: add missing jar for awsapi as maven dependency

Updated Branches:
  refs/heads/4.0 543305367 -> 2f9941d85


add missing jar for awsapi as maven dependency


Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/2f9941d8
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/2f9941d8
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/2f9941d8

Branch: refs/heads/4.0
Commit: 2f9941d85f8277f1fb2cbf958e41afb3fcd6960b
Parents: 5433053
Author: frank <fr...@citrix.com>
Authored: Mon Oct 8 20:46:43 2012 -0700
Committer: frank <fr...@citrix.com>
Committed: Mon Oct 8 20:46:43 2012 -0700

----------------------------------------------------------------------
 awsapi/pom.xml          |   61 +++++++++++++++++++++++++++++-------------
 build/build-aws-api.xml |    4 +++
 2 files changed, 46 insertions(+), 19 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/2f9941d8/awsapi/pom.xml
----------------------------------------------------------------------
diff --git a/awsapi/pom.xml b/awsapi/pom.xml
index 8c75978..baa74d7 100644
--- a/awsapi/pom.xml
+++ b/awsapi/pom.xml
@@ -192,30 +192,53 @@
         <version>1.45</version>
         <scope>runtime</scope>
     </dependency>
-  </dependencies>
-  <build>
+    <dependency>
+        <groupId>org.antlr</groupId>
+        <artifactId>antlr-runtime</artifactId>
+        <version>3.4</version>
+    </dependency>
+    <dependency>
+        <groupId>c3p0</groupId>
+        <artifactId>c3p0</artifactId>
+        <version>0.9.1.2</version>
+    </dependency>
+    <dependency>
+        <groupId>dom4j</groupId>
+        <artifactId>dom4j</artifactId>
+        <version>1.6.1</version>
+    </dependency>
+    <dependency>
+        <groupId>javassist</groupId>
+        <artifactId>javassist</artifactId>
+        <version>3.9.0.GA</version>
+    </dependency>
+
+
+</dependencies>
+
+<build>
     <defaultGoal>install</defaultGoal>
     <sourceDirectory>src</sourceDirectory>
     <resources>
-      <resource>
-        <directory>src</directory>
-        <excludes>
-          <exclude>**/*.java</exclude>
-        </excludes>
-      </resource>
+        <resource>
+            <directory>src</directory>
+            <excludes>
+                <exclude>**/*.java</exclude>
+            </excludes>
+        </resource>
     </resources>
     <plugins>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-dependency-plugin</artifactId>
-        <version>2.5.1</version>
-        <executions>
-          <execution>
-            <id>copy-dependencies</id>
-            <phase>install</phase>
-            <goals>
-              <goal>copy-dependencies</goal>
-            </goals>
+        <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-dependency-plugin</artifactId>
+            <version>2.5.1</version>
+            <executions>
+                <execution>
+                    <id>copy-dependencies</id>
+                    <phase>install</phase>
+                    <goals>
+                        <goal>copy-dependencies</goal>
+                    </goals>
             <configuration>
               <outputDirectory>../deps/awsapi-lib/rampart-lib</outputDirectory>
               <overWriteReleases>false</overWriteReleases>

http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/2f9941d8/build/build-aws-api.xml
----------------------------------------------------------------------
diff --git a/build/build-aws-api.xml b/build/build-aws-api.xml
index 0b1deec..6b00ef6 100644
--- a/build/build-aws-api.xml
+++ b/build/build-aws-api.xml
@@ -383,6 +383,10 @@
               <include name="woden-*.jar"/>
               <include name="xercesImpl*.jar"/>
               <include name="xml-apis*.jar"/>
+              <include name="antlr*.jar"/>
+              <include name="c3p0-*.jar"/>
+              <include name="dom4j*.jar"/>
+              <include name="javassist*.jar"/>
             </fileset>
 			<fileset dir="${jar.dir}">
 				<include name="cloud-awsapi.jar" />