Remove commented out logger in APPC
[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                     <version>2.3.7</version>
59                     <extensions>true</extensions>
60               </plugin>
61             </plugins>
62                 </pluginManagement>
63         </build>
64         <!-- ================================================================================== -->
65         <!-- The modules we build -->
66         <!-- ================================================================================== -->
67         <modules>
68                 <module>appc-dispatcher-common</module>
69                 <module>appc-lifecycle-management</module>
70                 <module>appc-workflow-management</module>
71                 <module>appc-command-executor</module>
72                 <module>appc-request-handler</module>
73                 <module>appc-license-manager</module>
74                 <module>appc-dispatcher-features</module>
75                 <module>appc-dispatcher-installer</module>
76         </modules>
77
78 </project>