First part of onap rename
[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.onap.appc</groupId>
5     <artifactId>appc</artifactId>
6     <version>1.3.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             <scope>test</scope>
27         </dependency>
28         <dependency>
29             <groupId>org.powermock</groupId>
30             <artifactId>powermock-module-junit4</artifactId>
31             <version>1.6.4</version>
32             <scope>test</scope>
33         </dependency>
34         <dependency>
35             <groupId>org.hamcrest</groupId>
36             <artifactId>hamcrest-core</artifactId>
37             <scope>test</scope>
38         </dependency>
39         <dependency>
40             <groupId>org.objenesis</groupId>
41             <artifactId>objenesis</artifactId>
42             <version>2.2</version>
43             <scope>test</scope>
44         </dependency>
45     </dependencies>
46     <build>
47         <pluginManagement>
48           <plugins>
49             <plugin>
50                 <groupId>org.apache.felix</groupId>
51                 <artifactId>maven-bundle-plugin</artifactId>
52                 <extensions>true</extensions>
53           </plugin>
54         </plugins>
55         </pluginManagement>
56     </build>
57     <!-- ================================================================================== -->
58     <!-- The modules we build -->
59     <!-- ================================================================================== -->
60     <modules>
61         <module>appc-dispatcher-common</module>
62         <module>appc-workflow-management</module>
63         <module>appc-command-executor</module>
64         <module>appc-request-handler</module>
65         <module>appc-license-manager</module>
66         <module>appc-dispatcher-features</module>
67         <module>appc-dispatcher-installer</module>
68     </modules>
69
70 </project>