Skip to content

Commit 63e3eea

Browse files
committed
CLOUDSTACK-5920: enable build of IAM services in pom.xml.
1 parent c28450c commit 63e3eea

2 files changed

Lines changed: 60 additions & 0 deletions

File tree

services/iam/pom.xml

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
<!--
2+
Licensed to the Apache Software Foundation (ASF) under one
3+
or more contributor license agreements. See the NOTICE file
4+
distributed with this work for additional information
5+
regarding copyright ownership. The ASF licenses this file
6+
to you under the Apache License, Version 2.0 (the
7+
"License"); you may not use this file except in compliance
8+
with the License. You may obtain a copy of the License at
9+
10+
http://www.apache.org/licenses/LICENSE-2.0
11+
12+
Unless required by applicable law or agreed to in writing,
13+
software distributed under the License is distributed on an
14+
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
KIND, either express or implied. See the License for the
16+
specific language governing permissions and limitations
17+
under the License.
18+
-->
19+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20+
<modelVersion>4.0.0</modelVersion>
21+
<artifactId>cloudstack-service-iam</artifactId>
22+
<name>Apache CloudStack IAM Service</name>
23+
<packaging>pom</packaging>
24+
<parent>
25+
<groupId>org.apache.cloudstack</groupId>
26+
<artifactId>cloudstack-services</artifactId>
27+
<version>4.4.0-SNAPSHOT</version>
28+
<relativePath>../pom.xml</relativePath>
29+
</parent>
30+
<build>
31+
<defaultGoal>install</defaultGoal>
32+
</build>
33+
<modules>
34+
<module>plugin</module>
35+
<module>server</module>
36+
</modules>
37+
<!--
38+
<dependencies>
39+
<dependency>
40+
<groupId>org.apache.cloudstack</groupId>
41+
<artifactId>cloud-api</artifactId>
42+
<version>${project.version}</version>
43+
</dependency>
44+
<dependency>
45+
<groupId>org.apache.cloudstack</groupId>
46+
<artifactId>cloud-utils</artifactId>
47+
<version>${project.version}</version>
48+
</dependency>
49+
<dependency>
50+
<groupId>org.apache.cloudstack</groupId>
51+
<artifactId>cloud-api</artifactId>
52+
<version>${project.version}</version>
53+
<type>test-jar</type>
54+
<scope>test</scope>
55+
</dependency>
56+
</dependencies>
57+
-->
58+
59+
</project>

services/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,6 @@
4747
<module>console-proxy</module>
4848
<module>console-proxy-rdp/rdpconsole</module>
4949
<module>secondary-storage</module>
50+
<module>iam</module>
5051
</modules>
5152
</project>

0 commit comments

Comments
 (0)