Change nexus values to properties
[appc.git] / appc-adapters / appc-chef-adapter / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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/maven-v4_0_0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.openecomp.appc</groupId>
6     <artifactId>appc-adapters</artifactId>
7     <version>1.0.0</version>
8   </parent>
9
10   <artifactId>appc-chef-adapter</artifactId>
11   <name>chef Adaptor</name>
12   <description>Abstraction to connect to and utilize the services of cloud providers such as OpenStack or VMWare.</description>
13   <packaging>pom</packaging>
14
15   <reporting>
16     <plugins>
17       <plugin>
18         <artifactId>maven-javadoc-plugin</artifactId>
19         <configuration>
20           <additionalDependencies>
21             <additionalDependency>
22               <groupId>org.slf4j</groupId>
23               <artifactId>slf4j-api</artifactId>
24               <version>${slf4j.version}</version>
25             </additionalDependency>
26             <additionalDependency>
27               <groupId>org.antlr</groupId>
28               <artifactId>antlr4</artifactId>
29               <version>${antlr.version}</version>
30             </additionalDependency>
31             <additionalDependency>
32               <groupId>org.antlr</groupId>
33               <artifactId>antlr4-runtime</artifactId>
34               <version>4.3</version>
35             </additionalDependency>
36           </additionalDependencies>
37         </configuration>
38         <reportSets>
39           <reportSet>
40             <reports>
41               <report>javadoc-no-fork</report>
42               <report>test-javadoc-no-fork</report>
43             </reports>
44           </reportSet>
45           <reportSet>
46             <id>aggregate</id>
47             <reports>
48               <report>aggregate</report>
49               <report>test-aggregate</report>
50             </reports>
51           </reportSet>
52         </reportSets>
53       </plugin>
54       <plugin>
55         <groupId>org.apache.maven.plugins</groupId>
56         <artifactId>maven-jxr-plugin</artifactId>
57         <version>2.3</version>
58         <reportSets>
59           <reportSet>
60             <id>aggregate</id>
61             <reports>
62               <report>aggregate</report>
63               <report>test-aggregate</report>
64             </reports>
65           </reportSet>
66         </reportSets>
67       </plugin>
68
69       <plugin>
70         <artifactId>maven-surefire-plugin</artifactId>
71       </plugin>
72
73       <plugin>
74         <groupId>org.apache.maven.plugins</groupId>
75         <artifactId>maven-changelog-plugin</artifactId>
76         <version>2.3</version>
77         <reportSets>
78           <reportSet>
79             <id>dual-report</id>
80             <configuration>
81               <type>range</type>
82               <range>30</range>
83             </configuration>
84             <reports>
85               <report>changelog</report>
86               <report>file-activity</report>
87             </reports>
88           </reportSet>
89         </reportSets>
90       </plugin>
91
92       <plugin>
93         <groupId>org.codehaus.mojo</groupId>
94         <artifactId>taglist-maven-plugin</artifactId>
95         <version>2.4</version>
96       </plugin>
97     </plugins>
98   </reporting>
99
100   <dependencyManagement>
101     <dependencies>
102       <dependency>
103         <groupId>org.openecomp.appc</groupId>
104         <artifactId>appc-chef-adapter-features</artifactId>
105         <classifier>features</classifier>
106         <type>xml</type>
107         <version>${project.version}</version>
108       </dependency>
109
110       <dependency>
111         <groupId>org.openecomp.appc</groupId>
112         <artifactId>appc-chef-adapter-provider</artifactId>
113         <version>${project.version}</version>
114       </dependency>
115     </dependencies>
116   </dependencyManagement>
117
118   <modules>
119     <module>appc-chef-adapter-bundle</module>
120     <module>appc-chef-adapter-features</module>
121     <module>appc-chef-adapter-installer</module>
122   </modules>
123 </project>