Use relativePath in oparent reference
[dmaap/buscontroller.git] / pom.xml
1 <?xml version="1.0"?>
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   <groupId>org.onap.dmaap.buscontroller</groupId>
5   <artifactId>buscontroller</artifactId>
6   <version>${artifact.version}</version>
7   <name>dmaap-buscontroller</name>
8   <parent>
9     <groupId>org.onap.oparent</groupId>
10     <artifactId>oparent</artifactId>
11     <version>0.1.0</version>
12     <relativePath/>
13   </parent>
14   <build>
15     <finalName>buscontroller</finalName>
16
17     <plugins>
18
19     </plugins>
20     <pluginManagement>
21       <plugins>
22         <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
23         <plugin>
24           <groupId>org.eclipse.m2e</groupId>
25           <artifactId>lifecycle-mapping</artifactId>
26           <version>1.0.0</version>
27           <configuration>
28             <lifecycleMappingMetadata>
29               <pluginExecutions>
30                 <pluginExecution>
31                   <pluginExecutionFilter>
32                     <groupId>org.apache.maven.plugins</groupId>
33                     <artifactId>maven-dependency-plugin</artifactId>
34                     <versionRange>[2.10,)</versionRange>
35                     <goals>
36                       <goal>copy-dependencies</goal>
37                     </goals>
38                   </pluginExecutionFilter>
39                   <action>
40                     <ignore/>
41                   </action>
42                 </pluginExecution>
43               </pluginExecutions>
44             </lifecycleMappingMetadata>
45           </configuration>
46         </plugin>
47       </plugins>
48     </pluginManagement>
49   </build>
50   <dependencyManagement>
51     <dependencies>
52  
53       <dependency>
54         <groupId>org.glassfish.jersey</groupId>
55         <artifactId>jersey-bom</artifactId>
56         <version>${jersey.version}</version>
57         <type>pom</type>
58         <scope>import</scope>
59       </dependency>
60     </dependencies>
61   </dependencyManagement>
62   <dependencies>
63         <dependency>
64         <groupId>io.swagger</groupId>
65         <artifactId>swagger-core</artifactId>
66         <version>1.5.13</version>
67       </dependency>
68       <dependency>
69         <groupId>io.swagger</groupId>
70         <artifactId>swagger-jersey2-jaxrs</artifactId>
71         <version>1.5.13</version>
72       </dependency>
73        <dependency>
74         <groupId>io.swagger</groupId>
75         <artifactId>swagger-annotations</artifactId>
76         <version>1.5.13</version>
77       </dependency>   
78     <dependency>
79       <groupId>org.glassfish.jersey.containers</groupId>
80       <artifactId>jersey-container-servlet-core</artifactId>
81       <!-- use the following artifactId if you don't need servlet 2.x compatibility -->
82       <!-- artifactId>jersey-container-servlet</artifactId -->
83     </dependency>
84     <dependency>
85       <groupId>org.glassfish.jersey.media</groupId>
86       <artifactId>jersey-media-moxy</artifactId>
87     </dependency>
88     <dependency>
89       <groupId>log4j</groupId>
90       <artifactId>log4j</artifactId>
91       <version>1.2.17</version>
92     </dependency>
93     <dependency>
94       <groupId>org.eclipse.jetty</groupId>
95       <artifactId>jetty-server</artifactId>
96       <version>${jettyVersion}</version>
97     </dependency>
98     <dependency>
99       <groupId>org.eclipse.jetty</groupId>
100       <artifactId>jetty-servlet</artifactId>
101       <version>${jettyVersion}</version>
102       <scope>compile</scope>
103     </dependency>
104     <dependency>
105       <groupId>org.eclipse.jetty</groupId>
106       <artifactId>jetty-servlets</artifactId>
107       <version>${jettyVersion}</version>
108       <scope>compile</scope>
109     </dependency>
110     <!-- https://mvnrepository.com/artifact/com.googlecode.json-simple/json-simple -->
111     <dependency>
112       <groupId>com.googlecode.json-simple</groupId>
113       <artifactId>json-simple</artifactId>
114       <version>1.1.1</version>
115     </dependency>
116     <dependency>
117       <groupId>commons-codec</groupId>
118       <artifactId>commons-codec</artifactId>
119       <version>1.6</version>
120     </dependency>
121     <!-- https://mvnrepository.com/artifact/org.postgresql/postgresql -->
122     <dependency>
123       <groupId>org.postgresql</groupId>
124       <artifactId>postgresql</artifactId>
125       <version>9.4.1208.jre7</version>
126     </dependency>
127         <dependency>
128                 <groupId>com.att.eelf</groupId> 
129                 <artifactId>eelf-core</artifactId> 
130                 <version>${eelf.version}</version> 
131         </dependency>
132         <dependency>
133                 <groupId>org.onap.dmaap.dbcapi</groupId>
134                 <artifactId>dbcapi</artifactId>
135                 <version>1.0.1-SNAPSHOT</version>
136         </dependency>
137   </dependencies>
138   <reporting>
139     <plugins>
140       <plugin>
141         <groupId>org.apache.maven.plugins</groupId>
142         <artifactId>maven-javadoc-plugin</artifactId>
143         <version>2.10.4</version>
144         <configuration>
145           <failOnError>false</failOnError>
146           <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
147           <docletArtifact>
148             <groupId>org.umlgraph</groupId>
149             <artifactId>umlgraph</artifactId>
150             <version>5.6</version>
151           </docletArtifact>
152           <additionalparam>-views</additionalparam>
153           <useStandardDocletOptions>true</useStandardDocletOptions>
154         </configuration>
155       </plugin>
156     </plugins>
157   </reporting>
158   <properties>
159     <jersey.version>2.16</jersey.version>
160     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
161     <jettyVersion>9.3.7.v20160115</jettyVersion>
162     <eelf.version>0.0.1</eelf.version>
163     <artifact.version>1.0.1-SNAPSHOT</artifact.version>
164                 <!--  SONAR  -->
165                  <jacoco.version>0.7.7.201606060606</jacoco.version>
166             <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
167             <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
168             <!-- Default Sonar configuration -->
169             <sonar.jacoco.reportPath>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPath>
170             <sonar.jacoco.itReportPath>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPath>
171             <!-- Note: This list should match jacoco-maven-plugin's exclusion list below -->
172             <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
173   </properties>
174   <description>Packaging Platform (DMaaP) Bus Controller API as a Docker container. </description>
175 </project>