[APPC-44] APPC Lifecycle Management refactor
[appc.git] / appc-dispatcher / pom.xml
1 <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">
2   <modelVersion>4.0.0</modelVersion>
3   <parent>
4     <groupId>org.openecomp.appc</groupId>
5     <artifactId>appc</artifactId>
6     <version>1.1.0-SNAPSHOT</version>
7   </parent>
8   <artifactId>appc-dispatcher</artifactId>
9   <packaging>pom</packaging>
10   <name>APPC Dispatcher</name>
11   <description>APPC Dispatcher</description>
12         <dependencies>
13         <dependency>
14             <groupId>junit</groupId>
15             <artifactId>junit</artifactId>
16             <scope>test</scope>
17         </dependency>
18             <dependency>
19               <groupId>org.mockito</groupId>
20               <artifactId>mockito-core</artifactId>
21               <scope>test</scope>
22             </dependency>
23         <dependency>
24             <groupId>org.powermock</groupId>
25             <artifactId>powermock-api-mockito</artifactId>
26             <version>1.6.2</version>
27             <scope>test</scope>
28         </dependency>
29         <dependency>
30             <groupId>org.mockito</groupId>
31             <artifactId>mockito-all</artifactId>
32             <scope>test</scope>
33         </dependency>
34         <dependency>
35             <groupId>org.powermock</groupId>
36             <artifactId>powermock-module-junit4</artifactId>
37             <version>1.6.2</version>
38             <scope>test</scope>
39         </dependency>
40         <dependency>
41             <groupId>org.hamcrest</groupId>
42             <artifactId>hamcrest-core</artifactId>
43             <scope>test</scope>
44         </dependency>
45         <dependency>
46             <groupId>org.objenesis</groupId>
47             <artifactId>objenesis</artifactId>
48             <version>2.2</version>
49             <scope>test</scope>
50         </dependency>
51     </dependencies>
52     <build>
53         <pluginManagement>
54           <plugins>
55             <plugin>
56                 <groupId>org.apache.felix</groupId>
57                 <artifactId>maven-bundle-plugin</artifactId>
58                 <extensions>true</extensions>
59           </plugin>
60         </plugins>
61         </pluginManagement>
62     </build>
63     <!-- ================================================================================== -->
64     <!-- The modules we build -->
65     <!-- ================================================================================== -->
66     <modules>
67         <module>appc-dispatcher-common</module>
68         <module>appc-workflow-management</module>
69         <module>appc-command-executor</module>
70         <module>appc-request-handler</module>
71         <module>appc-license-manager</module>
72         <module>appc-dispatcher-features</module>
73         <module>appc-dispatcher-installer</module>
74     </modules>
75
76 </project>