Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
Guo Ruijing | 6abeb29 | 2017-07-28 08:23:01 +0000 | [diff] [blame] | 4 | ONAP Policy Engine - Drools PDP |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 5 | ================================================================================ |
Jorge Hernandez | 1925710 | 2018-02-08 13:35:44 -0600 | [diff] [blame] | 6 | Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 7 | ================================================================================ |
| 8 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 9 | you may not use this file except in compliance with the License. |
| 10 | You may obtain a copy of the License at |
| 11 | |
| 12 | http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | |
| 14 | Unless required by applicable law or agreed to in writing, software |
| 15 | distributed under the License is distributed on an "AS IS" BASIS, |
| 16 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 17 | See the License for the specific language governing permissions and |
| 18 | limitations under the License. |
| 19 | ============LICENSE_END========================================================= |
| 20 | --> |
| 21 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 22 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 23 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 24 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 25 | <modelVersion>4.0.0</modelVersion> |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 26 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 27 | <artifactId>policy-core</artifactId> |
| 28 | <parent> |
| 29 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 30 | <artifactId>drools-pdp</artifactId> |
ramverma | 5bf8486 | 2018-10-24 19:35:48 +0100 | [diff] [blame^] | 31 | <version>1.3.1-SNAPSHOT</version> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 32 | </parent> |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 33 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 34 | <dependencies> |
Pamela Dragosh | e0d71bb | 2018-02-22 11:58:47 -0500 | [diff] [blame] | 35 | <!-- |
| 36 | Issue: 1 of 2 |
Pamela Dragosh | 2a6876b | 2018-09-04 11:18:15 -0400 | [diff] [blame] | 37 | These 3 dependencies are trying to upgrade security fixes |
Pamela Dragosh | e0d71bb | 2018-02-22 11:58:47 -0500 | [diff] [blame] | 38 | identified. If they are removed or manipulated then please |
| 39 | fix the 2nd change as noted below. |
| 40 | --> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 41 | <dependency> |
| 42 | <groupId>org.codehaus.plexus</groupId> |
| 43 | <artifactId>plexus-utils</artifactId> |
| 44 | <version>3.0.24</version> |
| 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>com.thoughtworks.xstream</groupId> |
| 48 | <artifactId>xstream</artifactId> |
| 49 | </dependency> |
Pamela Dragosh | 2a6876b | 2018-09-04 11:18:15 -0400 | [diff] [blame] | 50 | <dependency> |
| 51 | <groupId>com.google.guava</groupId> |
| 52 | <artifactId>guava</artifactId> |
| 53 | </dependency> |
Pamela Dragosh | e0d71bb | 2018-02-22 11:58:47 -0500 | [diff] [blame] | 54 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 55 | <dependency> |
| 56 | <groupId>org.kie</groupId> |
| 57 | <artifactId>kie-api</artifactId> |
Jim Hahn | 0e6b16b | 2018-09-11 10:11:29 -0400 | [diff] [blame] | 58 | <version>6.5.0.Final</version> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 59 | </dependency> |
| 60 | <dependency> |
| 61 | <groupId>org.kie</groupId> |
| 62 | <artifactId>kie-ci</artifactId> |
Jim Hahn | 0e6b16b | 2018-09-11 10:11:29 -0400 | [diff] [blame] | 63 | <version>6.5.0.Final</version> |
Pamela Dragosh | e0d71bb | 2018-02-22 11:58:47 -0500 | [diff] [blame] | 64 | <!-- |
| 65 | Issue: 2 of 2 |
| 66 | Excluding these 2 dependencies in order to force upgrade security fixes |
| 67 | identified. As declared above. Any changes here should be reflected above |
| 68 | and vice versa. |
| 69 | --> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 70 | <exclusions> |
| 71 | <exclusion> |
| 72 | <groupId>org.codehaus.plexus</groupId> |
| 73 | <artifactId>plexus-utils</artifactId> |
| 74 | </exclusion> |
| 75 | <exclusion> |
| 76 | <groupId>com.thoughtworks.xstream</groupId> |
| 77 | <artifactId>xstream</artifactId> |
| 78 | </exclusion> |
Pamela Dragosh | 2a6876b | 2018-09-04 11:18:15 -0400 | [diff] [blame] | 79 | <exclusion> |
| 80 | <groupId>com.google.guava</groupId> |
| 81 | <artifactId>guava</artifactId> |
| 82 | </exclusion> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 83 | </exclusions> |
| 84 | </dependency> |
| 85 | <dependency> |
| 86 | <groupId>org.drools</groupId> |
| 87 | <artifactId>drools-core</artifactId> |
Jim Hahn | 0e6b16b | 2018-09-11 10:11:29 -0400 | [diff] [blame] | 88 | <version>6.5.0.Final</version> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 89 | </dependency> |
| 90 | <dependency> |
| 91 | <groupId>org.drools</groupId> |
| 92 | <artifactId>drools-persistence-jpa</artifactId> |
Jim Hahn | 0e6b16b | 2018-09-11 10:11:29 -0400 | [diff] [blame] | 93 | <version>6.5.0.Final</version> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 94 | </dependency> |
| 95 | <dependency> |
| 96 | <groupId>org.onap.policy.common</groupId> |
| 97 | <artifactId>capabilities</artifactId> |
ramverma | 5bf8486 | 2018-10-24 19:35:48 +0100 | [diff] [blame^] | 98 | <version>${policy.common.version}</version> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 99 | </dependency> |
| 100 | <dependency> |
| 101 | <groupId>org.onap.policy.common</groupId> |
| 102 | <artifactId>utils</artifactId> |
ramverma | 5bf8486 | 2018-10-24 19:35:48 +0100 | [diff] [blame^] | 103 | <version>${policy.common.version}</version> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 104 | </dependency> |
| 105 | <dependency> |
| 106 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 107 | <artifactId>policy-utils</artifactId> |
| 108 | <version>${project.version}</version> |
| 109 | </dependency> |
| 110 | <dependency> |
| 111 | <groupId>junit</groupId> |
| 112 | <artifactId>junit</artifactId> |
| 113 | <scope>test</scope> |
| 114 | </dependency> |
| 115 | <dependency> |
| 116 | <groupId>org.powermock</groupId> |
| 117 | <artifactId>powermock-api-mockito</artifactId> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 118 | <scope>test</scope> |
| 119 | </dependency> |
| 120 | <dependency> |
| 121 | <groupId>org.onap.policy.common</groupId> |
| 122 | <artifactId>utils-test</artifactId> |
ramverma | 5bf8486 | 2018-10-24 19:35:48 +0100 | [diff] [blame^] | 123 | <version>${policy.common.version}</version> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 124 | <scope>test</scope> |
| 125 | </dependency> |
| 126 | </dependencies> |
Pamela Dragosh | a0e0c78 | 2018-09-28 04:58:26 -0400 | [diff] [blame] | 127 | <build> |
| 128 | <plugins> |
| 129 | <plugin> |
| 130 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 131 | <executions> |
| 132 | <execution> |
| 133 | <id>onap-java-style</id> |
| 134 | <goals> |
| 135 | <goal>check</goal> |
| 136 | </goals> |
| 137 | <phase>process-sources</phase> |
| 138 | <configuration> |
| 139 | <!-- Use Google Java Style Guide: https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml |
| 140 | with minor changes --> |
| 141 | <configLocation>onap-checkstyle/onap-java-style.xml</configLocation> |
| 142 | <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory --> |
| 143 | <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory> |
| 144 | <includeResources>true</includeResources> |
| 145 | <includeTestSourceDirectory>true</includeTestSourceDirectory> |
| 146 | <includeTestResources>true</includeTestResources> |
| 147 | <excludes> |
| 148 | </excludes> |
| 149 | <suppressionsLocation>${project.baseUri}checkstyle-suppressions.xml</suppressionsLocation> |
| 150 | <consoleOutput>true</consoleOutput> |
| 151 | <failsOnViolation>true</failsOnViolation> |
| 152 | <violationSeverity>warning</violationSeverity> |
| 153 | </configuration> |
| 154 | </execution> |
| 155 | </executions> |
| 156 | <dependencies> |
| 157 | <dependency> |
| 158 | <groupId>org.onap.oparent</groupId> |
| 159 | <artifactId>checkstyle</artifactId> |
| 160 | <version>${oparent.version}</version> |
| 161 | <scope>compile</scope> |
| 162 | </dependency> |
| 163 | </dependencies> |
| 164 | </plugin> |
| 165 | </plugins> |
| 166 | </build> |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 167 | </project> |