blob: 2ca997b9c69c4de4420a91e5352206df03c6489a [file] [log] [blame]
Pamela Dragosha6557b02017-02-14 19:49:32 -05001<!--
2 ============LICENSE_START=======================================================
3 Drools PDP Application Models
4 ================================================================================
Pamela Dragosh17435992018-08-28 11:57:33 -04005 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
Pamela Dragosha6557b02017-02-14 19:49:32 -05006 ================================================================================
7 Licensed under the Apache License, Version 2.0 (the "License");
8 you may not use this file except in compliance with the License.
9 You may obtain a copy of the License at
10
11 http://www.apache.org/licenses/LICENSE-2.0
12
13 Unless required by applicable law or agreed to in writing, software
14 distributed under the License is distributed on an "AS IS" BASIS,
15 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 See the License for the specific language governing permissions and
17 limitations under the License.
18 ============LICENSE_END=========================================================
19 -->
20
21<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">
22 <modelVersion>4.0.0</modelVersion>
Pamela Dragosha5861db2017-02-23 06:27:44 -050023
liamfallondef0f112018-02-13 11:29:56 +000024 <parent>
25 <groupId>org.onap.policy.drools-applications.controlloop.common.model-impl</groupId>
26 <artifactId>model-impl</artifactId>
liamfallon4cfda9c2018-06-05 16:41:35 +010027 <version>1.3.0-SNAPSHOT</version>
liamfallondef0f112018-02-13 11:29:56 +000028 </parent>
29
Pamela Dragosha6557b02017-02-14 19:49:32 -050030 <artifactId>rest</artifactId>
31
Pamela Dragosha6557b02017-02-14 19:49:32 -050032 <dependencies>
liamfallondef0f112018-02-13 11:29:56 +000033 <dependency>
34 <groupId>junit</groupId>
35 <artifactId>junit</artifactId>
liamfallondef0f112018-02-13 11:29:56 +000036 <scope>test</scope>
37 </dependency>
38 <dependency>
39 <groupId>com.google.code.gson</groupId>
40 <artifactId>gson</artifactId>
liamfallondef0f112018-02-13 11:29:56 +000041 <scope>provided</scope>
42 </dependency>
43 <dependency>
44 <groupId>org.apache.httpcomponents</groupId>
45 <artifactId>httpclient</artifactId>
liamfallondef0f112018-02-13 11:29:56 +000046 <scope>provided</scope>
47 </dependency>
Pamela Dragosha6557b02017-02-14 19:49:32 -050048 </dependencies>
Pamela Dragosha24a9852018-09-21 20:08:11 -040049
50 <build>
51 <plugins>
52 <plugin>
53 <artifactId>maven-checkstyle-plugin</artifactId>
54 <executions>
55 <execution>
56 <id>onap-java-style</id>
57 <goals>
58 <goal>check</goal>
59 </goals>
60 <phase>process-sources</phase>
61 <configuration>
62 <!-- Use Google Java Style Guide:
63 https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml
64 with minor changes -->
65 <configLocation>onap-checkstyle/onap-java-style.xml</configLocation>
66 <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory -->
67 <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
68 <includeResources>true</includeResources>
69 <includeTestSourceDirectory>true</includeTestSourceDirectory>
70 <includeTestResources>true</includeTestResources>
71 <excludes>
72 </excludes>
73 <suppressionsLocation>${project.basedir}/checkstyle-suppressions.xml</suppressionsLocation>
74 <consoleOutput>true</consoleOutput>
75 <failsOnViolation>true</failsOnViolation>
76 <violationSeverity>warning</violationSeverity>
77 </configuration>
78 </execution>
79 </executions>
80 <dependencies>
81 <dependency>
82 <groupId>org.onap.oparent</groupId>
83 <artifactId>checkstyle</artifactId>
84 <version>${oparent.version}</version>
85 <scope>compile</scope>
86 </dependency>
87 </dependencies>
88 </plugin>
89 </plugins>
90 </build>
Pamela Dragosha6557b02017-02-14 19:49:32 -050091</project>