Skip to content

Commit 5af61a8

Browse files
author
Alex Huang
committed
Fixed build. Not sure why it didn't come up on my compile before the commit
1 parent 78ac22e commit 5af61a8

5 files changed

Lines changed: 31 additions & 37 deletions

File tree

engine/storage/integration-test/pom.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,24 @@
6262
<version>${project.version}</version>
6363
<scope>test</scope>
6464
</dependency>
65+
<dependency>
66+
<groupId>org.apache.cloudstack</groupId>
67+
<artifactId>cloud-utils</artifactId>
68+
<version>${project.version}</version>
69+
<type>test-jar</type>
70+
<scope>test</scope>
71+
</dependency>
6572
<dependency>
6673
<groupId>org.apache.cloudstack</groupId>
6774
<artifactId>cloud-plugin-hypervisor-vmware</artifactId>
6875
<version>${project.version}</version>
6976
<scope>test</scope>
7077
</dependency>
78+
<dependency>
79+
<groupId>org.aspectj</groupId>
80+
<artifactId>aspectjrt</artifactId>
81+
<version>1.7.1</version>
82+
</dependency>
7183
<dependency>
7284
<groupId>org.apache.cloudstack</groupId>
7385
<artifactId>cloud-plugin-hypervisor-kvm</artifactId>

plugins/storage/volume/solidfire/pom.xml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,15 @@
3636
<artifactId>gson</artifactId>
3737
<version>${cs.gson.version}</version>
3838
</dependency>
39+
<dependency>
40+
<groupId>org.aspectj</groupId>
41+
<artifactId>aspectjtools</artifactId>
42+
<version>1.6.2</version>
43+
<scope>test</scope>
44+
</dependency>
3945
</dependencies>
4046
<build>
4147
<defaultGoal>install</defaultGoal>
42-
<sourceDirectory>src</sourceDirectory>
43-
<testSourceDirectory>test</testSourceDirectory>
4448
<plugins>
4549
<plugin>
4650
<artifactId>maven-surefire-plugin</artifactId>

pom.xml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,11 @@
181181
<artifactId>mysql-connector-java</artifactId>
182182
<version>${cs.mysql.version}</version>
183183
</dependency>
184+
<dependency>
185+
<groupId>log4j</groupId>
186+
<artifactId>log4j</artifactId>
187+
<version>${cs.log4j.version}</version>
188+
</dependency>
184189
</dependencies>
185190
</dependencyManagement>
186191

@@ -193,7 +198,12 @@
193198
</dependency>
194199
<dependency>
195200
<groupId>org.springframework</groupId>
196-
<artifactId>spring-core</artifactId>
201+
<artifactId>spring-aop</artifactId>
202+
<version>${org.springframework.version}</version>
203+
</dependency>
204+
<dependency>
205+
<groupId>org.springframework</groupId>
206+
<artifactId>spring-beans</artifactId>
197207
<version>${org.springframework.version}</version>
198208
</dependency>
199209
<dependency>

server/pom.xml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -89,19 +89,14 @@
8989
<groupId>org.apache.cloudstack</groupId>
9090
<artifactId>cloud-utils</artifactId>
9191
<version>${project.version}</version>
92+
<type>test-jar</type>
93+
<scope>test</scope>
9294
</dependency>
9395
<dependency>
9496
<groupId>org.reflections</groupId>
9597
<artifactId>reflections</artifactId>
9698
<version>0.9.8</version>
9799
</dependency>
98-
<dependency>
99-
<groupId>org.apache.cloudstack</groupId>
100-
<artifactId>cloud-utils</artifactId>
101-
<version>${project.version}</version>
102-
<type>test-jar</type>
103-
<scope>test</scope>
104-
</dependency>
105100
<dependency>
106101
<groupId>org.apache.cloudstack</groupId>
107102
<artifactId>cloud-api</artifactId>

utils/pom.xml

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,6 @@
2727
<relativePath>../pom.xml</relativePath>
2828
</parent>
2929
<dependencies>
30-
<dependency>
31-
<groupId>org.springframework</groupId>
32-
<artifactId>spring-core</artifactId>
33-
<version>${org.springframework.version}</version>
34-
</dependency>
3530
<dependency>
3631
<groupId>org.springframework</groupId>
3732
<artifactId>spring-context</artifactId>
@@ -42,16 +37,9 @@
4237
<artifactId>javax.inject</artifactId>
4338
<version>1</version>
4439
</dependency>
45-
46-
<dependency>
47-
<groupId>org.aspectj</groupId>
48-
<artifactId>aspectjrt</artifactId>
49-
<version>1.7.1</version>
50-
</dependency>
5140
<dependency>
5241
<groupId>log4j</groupId>
5342
<artifactId>log4j</artifactId>
54-
<version>${cs.log4j.version}</version>
5543
</dependency>
5644
<dependency>
5745
<groupId>cglib</groupId>
@@ -84,21 +72,6 @@
8472
<artifactId>commons-codec</artifactId>
8573
<version>${cs.codec.version}</version>
8674
</dependency>
87-
<dependency>
88-
<groupId>commons-collections</groupId>
89-
<artifactId>commons-collections</artifactId>
90-
<version>${cs.collections.version}</version>
91-
</dependency>
92-
<dependency>
93-
<groupId>commons-discovery</groupId>
94-
<artifactId>commons-discovery</artifactId>
95-
<version>${cs.discovery.version}</version>
96-
</dependency>
97-
<dependency>
98-
<groupId>commons-logging</groupId>
99-
<artifactId>commons-logging</artifactId>
100-
<version>${cs.logging.version}</version>
101-
</dependency>
10275
<dependency>
10376
<groupId>org.bouncycastle</groupId>
10477
<artifactId>bcprov-jdk16</artifactId>

0 commit comments

Comments
 (0)