Pamela Dragosh | d548b61 | 2018-04-16 11:53:04 -0400 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | drools-pdp-apps |
| 4 | ================================================================================ |
Jim Hahn | 12fab62 | 2019-01-14 14:30:46 -0500 | [diff] [blame] | 5 | Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved. |
Pamela Dragosh | d548b61 | 2018-04-16 11:53:04 -0400 | [diff] [blame] | 6 | ================================================================================ |
| 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 | --> |
Gao, Chenfei (cg287m) | 6837716 | 2017-06-22 14:48:41 -0400 | [diff] [blame] | 20 | <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"> |
| 21 | <modelVersion>4.0.0</modelVersion> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 22 | |
| 23 | <parent> |
| 24 | <groupId>org.onap.policy.drools-applications.controlloop.common</groupId> |
| 25 | <artifactId>common</artifactId> |
Pamela Dragosh | c992013 | 2019-05-23 16:32:55 -0400 | [diff] [blame^] | 26 | <version>1.4.2-SNAPSHOT</version> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 27 | </parent> |
| 28 | |
Gao, Chenfei (cg287m) | 6837716 | 2017-06-22 14:48:41 -0400 | [diff] [blame] | 29 | <artifactId>guard</artifactId> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 30 | |
Gao, Chenfei (cg287m) | 6837716 | 2017-06-22 14:48:41 -0400 | [diff] [blame] | 31 | <dependencies> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 32 | <dependency> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 33 | <groupId>org.onap.policy.models.policy-models-interactions</groupId> |
| 34 | <artifactId>model-yaml</artifactId> |
| 35 | <version>${policy.models.version}</version> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 36 | <scope>provided</scope> |
| 37 | </dependency> |
| 38 | <dependency> |
Jim Hahn | 9f77830 | 2019-02-08 10:15:45 -0500 | [diff] [blame] | 39 | <groupId>com.att.research.xacml</groupId> |
| 40 | <artifactId>xacml-pdp</artifactId> |
| 41 | <version>1.0.2</version> |
| 42 | <exclusions> |
| 43 | <!-- |
| 44 | Exclude jars with an older version or that are insecure and not needed. |
| 45 | --> |
| 46 | <exclusion> |
| 47 | <artifactId>commons-codec</artifactId> |
| 48 | <groupId>commons-codec</groupId> |
| 49 | </exclusion> |
| 50 | <exclusion> |
| 51 | <artifactId>commons-logging</artifactId> |
| 52 | <groupId>commons-logging</groupId> |
| 53 | </exclusion> |
| 54 | <exclusion> |
| 55 | <artifactId>guava</artifactId> |
| 56 | <groupId>com.google.guava</groupId> |
| 57 | </exclusion> |
| 58 | <exclusion> |
| 59 | <artifactId>commons-lang3</artifactId> |
| 60 | <groupId>org.apache.commons</groupId> |
| 61 | </exclusion> |
| 62 | <exclusion> |
| 63 | <artifactId>jackson-databind</artifactId> |
| 64 | <groupId>com.fasterxml.jackson.core</groupId> |
| 65 | </exclusion> |
| 66 | <exclusion> |
| 67 | <artifactId>commons-collections</artifactId> |
| 68 | <groupId>commons-collections</groupId> |
| 69 | </exclusion> |
| 70 | <exclusion> |
| 71 | <artifactId>commons-lang</artifactId> |
| 72 | <groupId>commons-lang</groupId> |
| 73 | </exclusion> |
| 74 | </exclusions> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 75 | </dependency> |
| 76 | <dependency> |
| 77 | <groupId>junit</groupId> |
| 78 | <artifactId>junit</artifactId> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 79 | <scope>test</scope> |
| 80 | </dependency> |
| 81 | <dependency> |
| 82 | <groupId>commons-io</groupId> |
| 83 | <artifactId>commons-io</artifactId> |
| 84 | <version>2.5</version> |
| 85 | <scope>provided</scope> |
| 86 | </dependency> |
| 87 | <dependency> |
| 88 | <groupId>org.apache.httpcomponents</groupId> |
| 89 | <artifactId>httpclient</artifactId> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 90 | <scope>provided</scope> |
| 91 | </dependency> |
| 92 | <dependency> |
| 93 | <groupId>org.drools</groupId> |
| 94 | <artifactId>drools-core</artifactId> |
| 95 | <version>6.5.0.Final</version> |
| 96 | <scope>provided</scope> |
| 97 | </dependency> |
| 98 | <dependency> |
| 99 | <groupId>org.eclipse.persistence</groupId> |
| 100 | <artifactId>org.eclipse.persistence.jpa</artifactId> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 101 | <scope>provided</scope> |
| 102 | </dependency> |
| 103 | <dependency> |
mmis | e87b2f7 | 2018-07-23 12:22:07 +0100 | [diff] [blame] | 104 | <groupId>org.onap.policy.common</groupId> |
| 105 | <artifactId>policy-endpoints</artifactId> |
ramverma | e2b3a9c | 2018-10-25 11:59:09 +0100 | [diff] [blame] | 106 | <version>${version.policy.common}</version> |
mmis | e87b2f7 | 2018-07-23 12:22:07 +0100 | [diff] [blame] | 107 | <scope>provided</scope> |
| 108 | </dependency> |
| 109 | <dependency> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 110 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 111 | <artifactId>policy-management</artifactId> |
ramverma | e2b3a9c | 2018-10-25 11:59:09 +0100 | [diff] [blame] | 112 | <version>${version.policy.drools-pdp}</version> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 113 | <scope>provided</scope> |
| 114 | </dependency> |
| 115 | <dependency> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 116 | <groupId>org.onap.policy.models.policy-models-interactions</groupId> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 117 | <artifactId>simulators</artifactId> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 118 | <version>${policy.models.version}</version> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 119 | <scope>test</scope> |
| 120 | </dependency> |
| 121 | <dependency> |
Pamela Dragosh | 0022488 | 2019-05-03 08:40:34 -0400 | [diff] [blame] | 122 | <groupId>org.onap.policy.models</groupId> |
| 123 | <artifactId>policy-models-decisions</artifactId> |
| 124 | <version>${policy.models.version}</version> |
| 125 | </dependency> |
| 126 | <dependency> |
| 127 | <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId> |
| 128 | <artifactId>rest</artifactId> |
| 129 | <version>${policy.models.version}</version> |
| 130 | </dependency> |
| 131 | <dependency> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 132 | <groupId>org.mockito</groupId> |
| 133 | <artifactId>mockito-core</artifactId> |
| 134 | <version>2.13.0</version> |
| 135 | <scope>test</scope> |
| 136 | </dependency> |
| 137 | <dependency> |
| 138 | <groupId>com.h2database</groupId> |
| 139 | <artifactId>h2</artifactId> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 140 | <scope>test</scope> |
| 141 | </dependency> |
Gao, Chenfei (cg287m) | 6837716 | 2017-06-22 14:48:41 -0400 | [diff] [blame] | 142 | </dependencies> |
Pamela Dragosh | a24a985 | 2018-09-21 20:08:11 -0400 | [diff] [blame] | 143 | <build> |
| 144 | <plugins> |
| 145 | <plugin> |
| 146 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 147 | <executions> |
| 148 | <execution> |
| 149 | <id>onap-java-style</id> |
| 150 | <goals> |
| 151 | <goal>check</goal> |
| 152 | </goals> |
| 153 | <phase>process-sources</phase> |
| 154 | <configuration> |
| 155 | <!-- Use Google Java Style Guide: |
| 156 | https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml |
| 157 | with minor changes --> |
| 158 | <configLocation>onap-checkstyle/onap-java-style.xml</configLocation> |
| 159 | <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory --> |
Pamela Dragosh | 1c32e0c | 2018-09-26 13:53:38 -0400 | [diff] [blame] | 160 | <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory> |
Pamela Dragosh | a24a985 | 2018-09-21 20:08:11 -0400 | [diff] [blame] | 161 | <includeResources>true</includeResources> |
| 162 | <includeTestSourceDirectory>true</includeTestSourceDirectory> |
| 163 | <includeTestResources>true</includeTestResources> |
| 164 | <excludes> |
| 165 | </excludes> |
| 166 | <consoleOutput>true</consoleOutput> |
| 167 | <failsOnViolation>true</failsOnViolation> |
| 168 | <violationSeverity>warning</violationSeverity> |
| 169 | </configuration> |
| 170 | </execution> |
| 171 | </executions> |
| 172 | <dependencies> |
| 173 | <dependency> |
| 174 | <groupId>org.onap.oparent</groupId> |
| 175 | <artifactId>checkstyle</artifactId> |
| 176 | <version>${oparent.version}</version> |
| 177 | <scope>compile</scope> |
| 178 | </dependency> |
| 179 | </dependencies> |
| 180 | </plugin> |
| 181 | </plugins> |
| 182 | </build> |
Gao, Chenfei (cg287m) | 6837716 | 2017-06-22 14:48:41 -0400 | [diff] [blame] | 183 | </project> |