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 | ================================================================================ |
Jim Hahn | 7e4d309 | 2019-01-08 17:48:31 -0500 | [diff] [blame^] | 6 | Copyright (C) 2017-2019 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 | |
liamfallon | 9920020 | 2018-10-31 16:00:08 +0000 | [diff] [blame] | 22 | <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"> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 23 | <modelVersion>4.0.0</modelVersion> |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 24 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 25 | <artifactId>policy-core</artifactId> |
| 26 | <parent> |
| 27 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 28 | <artifactId>drools-pdp</artifactId> |
liamfallon | 9920020 | 2018-10-31 16:00:08 +0000 | [diff] [blame] | 29 | <version>1.4.0-SNAPSHOT</version> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 30 | </parent> |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 31 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 32 | <dependencies> |
Pamela Dragosh | e0d71bb | 2018-02-22 11:58:47 -0500 | [diff] [blame] | 33 | <!-- |
| 34 | Issue: 1 of 2 |
Pamela Dragosh | 2a6876b | 2018-09-04 11:18:15 -0400 | [diff] [blame] | 35 | These 3 dependencies are trying to upgrade security fixes |
Pamela Dragosh | e0d71bb | 2018-02-22 11:58:47 -0500 | [diff] [blame] | 36 | identified. If they are removed or manipulated then please |
| 37 | fix the 2nd change as noted below. |
| 38 | --> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 39 | <dependency> |
| 40 | <groupId>org.codehaus.plexus</groupId> |
| 41 | <artifactId>plexus-utils</artifactId> |
| 42 | <version>3.0.24</version> |
| 43 | </dependency> |
| 44 | <dependency> |
| 45 | <groupId>com.thoughtworks.xstream</groupId> |
| 46 | <artifactId>xstream</artifactId> |
| 47 | </dependency> |
Pamela Dragosh | 2a6876b | 2018-09-04 11:18:15 -0400 | [diff] [blame] | 48 | <dependency> |
| 49 | <groupId>com.google.guava</groupId> |
| 50 | <artifactId>guava</artifactId> |
| 51 | </dependency> |
Pamela Dragosh | e0d71bb | 2018-02-22 11:58:47 -0500 | [diff] [blame] | 52 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 53 | <dependency> |
| 54 | <groupId>org.kie</groupId> |
| 55 | <artifactId>kie-api</artifactId> |
Jim Hahn | 0e6b16b | 2018-09-11 10:11:29 -0400 | [diff] [blame] | 56 | <version>6.5.0.Final</version> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>org.kie</groupId> |
| 60 | <artifactId>kie-ci</artifactId> |
Jim Hahn | 0e6b16b | 2018-09-11 10:11:29 -0400 | [diff] [blame] | 61 | <version>6.5.0.Final</version> |
Pamela Dragosh | e0d71bb | 2018-02-22 11:58:47 -0500 | [diff] [blame] | 62 | <!-- |
| 63 | Issue: 2 of 2 |
| 64 | Excluding these 2 dependencies in order to force upgrade security fixes |
| 65 | identified. As declared above. Any changes here should be reflected above |
| 66 | and vice versa. |
| 67 | --> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 68 | <exclusions> |
| 69 | <exclusion> |
| 70 | <groupId>org.codehaus.plexus</groupId> |
| 71 | <artifactId>plexus-utils</artifactId> |
| 72 | </exclusion> |
| 73 | <exclusion> |
| 74 | <groupId>com.thoughtworks.xstream</groupId> |
| 75 | <artifactId>xstream</artifactId> |
| 76 | </exclusion> |
Pamela Dragosh | 2a6876b | 2018-09-04 11:18:15 -0400 | [diff] [blame] | 77 | <exclusion> |
| 78 | <groupId>com.google.guava</groupId> |
| 79 | <artifactId>guava</artifactId> |
| 80 | </exclusion> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 81 | </exclusions> |
| 82 | </dependency> |
| 83 | <dependency> |
| 84 | <groupId>org.drools</groupId> |
| 85 | <artifactId>drools-core</artifactId> |
Jim Hahn | 0e6b16b | 2018-09-11 10:11:29 -0400 | [diff] [blame] | 86 | <version>6.5.0.Final</version> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 87 | </dependency> |
| 88 | <dependency> |
| 89 | <groupId>org.drools</groupId> |
| 90 | <artifactId>drools-persistence-jpa</artifactId> |
Jim Hahn | 0e6b16b | 2018-09-11 10:11:29 -0400 | [diff] [blame] | 91 | <version>6.5.0.Final</version> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 92 | </dependency> |
| 93 | <dependency> |
| 94 | <groupId>org.onap.policy.common</groupId> |
| 95 | <artifactId>capabilities</artifactId> |
ramverma | 5bf8486 | 2018-10-24 19:35:48 +0100 | [diff] [blame] | 96 | <version>${policy.common.version}</version> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 97 | </dependency> |
| 98 | <dependency> |
| 99 | <groupId>org.onap.policy.common</groupId> |
| 100 | <artifactId>utils</artifactId> |
ramverma | 5bf8486 | 2018-10-24 19:35:48 +0100 | [diff] [blame] | 101 | <version>${policy.common.version}</version> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 102 | </dependency> |
| 103 | <dependency> |
| 104 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 105 | <artifactId>policy-utils</artifactId> |
| 106 | <version>${project.version}</version> |
| 107 | </dependency> |
| 108 | <dependency> |
| 109 | <groupId>junit</groupId> |
| 110 | <artifactId>junit</artifactId> |
| 111 | <scope>test</scope> |
| 112 | </dependency> |
| 113 | <dependency> |
| 114 | <groupId>org.powermock</groupId> |
| 115 | <artifactId>powermock-api-mockito</artifactId> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 116 | <scope>test</scope> |
| 117 | </dependency> |
| 118 | <dependency> |
Jim Hahn | 7e4d309 | 2019-01-08 17:48:31 -0500 | [diff] [blame^] | 119 | <groupId>org.assertj</groupId> |
| 120 | <artifactId>assertj-core</artifactId> |
| 121 | <version>3.11.1</version> |
| 122 | <scope>test</scope> |
| 123 | </dependency> |
| 124 | <dependency> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 125 | <groupId>org.onap.policy.common</groupId> |
| 126 | <artifactId>utils-test</artifactId> |
ramverma | 5bf8486 | 2018-10-24 19:35:48 +0100 | [diff] [blame] | 127 | <version>${policy.common.version}</version> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 128 | <scope>test</scope> |
| 129 | </dependency> |
| 130 | </dependencies> |
Pamela Dragosh | a0e0c78 | 2018-09-28 04:58:26 -0400 | [diff] [blame] | 131 | <build> |
| 132 | <plugins> |
| 133 | <plugin> |
| 134 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 135 | <executions> |
| 136 | <execution> |
| 137 | <id>onap-java-style</id> |
| 138 | <goals> |
| 139 | <goal>check</goal> |
| 140 | </goals> |
| 141 | <phase>process-sources</phase> |
| 142 | <configuration> |
| 143 | <!-- Use Google Java Style Guide: https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml |
| 144 | with minor changes --> |
| 145 | <configLocation>onap-checkstyle/onap-java-style.xml</configLocation> |
| 146 | <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory --> |
| 147 | <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory> |
| 148 | <includeResources>true</includeResources> |
| 149 | <includeTestSourceDirectory>true</includeTestSourceDirectory> |
| 150 | <includeTestResources>true</includeTestResources> |
| 151 | <excludes> |
| 152 | </excludes> |
| 153 | <suppressionsLocation>${project.baseUri}checkstyle-suppressions.xml</suppressionsLocation> |
| 154 | <consoleOutput>true</consoleOutput> |
| 155 | <failsOnViolation>true</failsOnViolation> |
| 156 | <violationSeverity>warning</violationSeverity> |
| 157 | </configuration> |
| 158 | </execution> |
| 159 | </executions> |
| 160 | <dependencies> |
| 161 | <dependency> |
| 162 | <groupId>org.onap.oparent</groupId> |
| 163 | <artifactId>checkstyle</artifactId> |
| 164 | <version>${oparent.version}</version> |
| 165 | <scope>compile</scope> |
| 166 | </dependency> |
| 167 | </dependencies> |
| 168 | </plugin> |
| 169 | </plugins> |
| 170 | </build> |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 171 | </project> |