blob: 7b254f25de3d768d6d01dcd93c64cf774141e01c [file] [log] [blame]
Patrick Brady57b5eef2017-02-10 15:00:49 -08001<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>
Patrick Bradyed9fd622017-11-07 11:59:14 -08006 <version>1.2.0-SNAPSHOT</version>
Patrick Brady57b5eef2017-02-10 15:00:49 -08007 </parent>
8 <artifactId>appc-dispatcher</artifactId>
9 <packaging>pom</packaging>
10 <name>APPC Dispatcher</name>
11 <description>APPC Dispatcher</description>
beili.zhoufe0e9892017-08-10 14:54:42 -040012 <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>
Patrick Brady76706002017-09-04 21:37:25 -070025 <artifactId>powermock-api-mockito</artifactId>
beili.zhoufe0e9892017-08-10 14:54:42 -040026 <scope>test</scope>
27 </dependency>
28 <dependency>
29 <groupId>org.powermock</groupId>
30 <artifactId>powermock-module-junit4</artifactId>
Patrick Brady76706002017-09-04 21:37:25 -070031 <version>1.6.4</version>
beili.zhoufe0e9892017-08-10 14:54:42 -040032 <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>
Patrick Brady57b5eef2017-02-10 15:00:49 -080069
70</project>