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 | ================================================================================ |
Hockla, Ali (ah999m) | 956a7b5 | 2020-01-13 14:11:46 -0600 | [diff] [blame] | 6 | Copyright (C) 2017-2020 AT&T Intellectual Property. All rights reserved. |
Bruno Sakoto | e9b60c3 | 2019-10-10 10:02:21 -0400 | [diff] [blame] | 7 | Modifications Copyright (C) 2019 Bell Canada. |
RossC | c50265a | 2020-06-30 15:57:07 +0100 | [diff] [blame] | 8 | Modifications Copyright (C) 2020 Nordix Foundation. |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 9 | ================================================================================ |
| 10 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 11 | you may not use this file except in compliance with the License. |
| 12 | You may obtain a copy of the License at |
RossC | c50265a | 2020-06-30 15:57:07 +0100 | [diff] [blame] | 13 | |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 14 | http://www.apache.org/licenses/LICENSE-2.0 |
RossC | c50265a | 2020-06-30 15:57:07 +0100 | [diff] [blame] | 15 | |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 16 | Unless required by applicable law or agreed to in writing, software |
| 17 | distributed under the License is distributed on an "AS IS" BASIS, |
| 18 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 19 | See the License for the specific language governing permissions and |
| 20 | limitations under the License. |
| 21 | ============LICENSE_END========================================================= |
| 22 | --> |
| 23 | |
liamfallon | 9920020 | 2018-10-31 16:00:08 +0000 | [diff] [blame] | 24 | <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] | 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> |
Taka Cho | 633fbb7 | 2020-07-10 15:09:52 -0400 | [diff] [blame] | 31 | <version>1.7.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> |
jhh | f7222f8 | 2019-10-31 11:36:17 -0500 | [diff] [blame] | 35 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 36 | <dependency> |
| 37 | <groupId>org.codehaus.plexus</groupId> |
| 38 | <artifactId>plexus-utils</artifactId> |
Bruno Sakoto | e9b60c3 | 2019-10-10 10:02:21 -0400 | [diff] [blame] | 39 | </dependency> |
| 40 | |
| 41 | <dependency> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 42 | <groupId>org.kie</groupId> |
| 43 | <artifactId>kie-api</artifactId> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 44 | </dependency> |
jhh | f7222f8 | 2019-10-31 11:36:17 -0500 | [diff] [blame] | 45 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 46 | <dependency> |
Joseph Chou | db12e7c | 2020-03-25 18:12:12 -0400 | [diff] [blame] | 47 | <groupId>org.apache.ant</groupId> |
| 48 | <artifactId>ant</artifactId> |
RossC | c50265a | 2020-06-30 15:57:07 +0100 | [diff] [blame] | 49 | <version>1.10.8</version> |
Joseph Chou | db12e7c | 2020-03-25 18:12:12 -0400 | [diff] [blame] | 50 | </dependency> |
| 51 | |
| 52 | <dependency> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 53 | <groupId>org.kie</groupId> |
| 54 | <artifactId>kie-ci</artifactId> |
jhh | f7222f8 | 2019-10-31 11:36:17 -0500 | [diff] [blame] | 55 | <!-- |
| 56 | Issue: 2 of 2 |
| 57 | Excluding these 2 dependencies in order to force upgrade security fixes |
| 58 | identified. As declared above. Any changes here should be reflected above |
| 59 | and vice versa. |
| 60 | --> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 61 | <exclusions> |
| 62 | <exclusion> |
| 63 | <groupId>org.codehaus.plexus</groupId> |
| 64 | <artifactId>plexus-utils</artifactId> |
| 65 | </exclusion> |
Joseph Chou | db12e7c | 2020-03-25 18:12:12 -0400 | [diff] [blame] | 66 | <exclusion> |
| 67 | <groupId>org.apache.ant</groupId> |
| 68 | <artifactId>ant</artifactId> |
| 69 | </exclusion> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 70 | </exclusions> |
| 71 | </dependency> |
jhh | f7222f8 | 2019-10-31 11:36:17 -0500 | [diff] [blame] | 72 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 73 | <dependency> |
| 74 | <groupId>org.drools</groupId> |
| 75 | <artifactId>drools-core</artifactId> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 76 | </dependency> |
jhh | f7222f8 | 2019-10-31 11:36:17 -0500 | [diff] [blame] | 77 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 78 | <dependency> |
| 79 | <groupId>org.drools</groupId> |
| 80 | <artifactId>drools-persistence-jpa</artifactId> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 81 | </dependency> |
jhh | f7222f8 | 2019-10-31 11:36:17 -0500 | [diff] [blame] | 82 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 83 | <dependency> |
| 84 | <groupId>org.onap.policy.common</groupId> |
| 85 | <artifactId>capabilities</artifactId> |
ramverma | 5bf8486 | 2018-10-24 19:35:48 +0100 | [diff] [blame] | 86 | <version>${policy.common.version}</version> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 87 | </dependency> |
jhh | f7222f8 | 2019-10-31 11:36:17 -0500 | [diff] [blame] | 88 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 89 | <dependency> |
| 90 | <groupId>org.onap.policy.common</groupId> |
| 91 | <artifactId>utils</artifactId> |
ramverma | 5bf8486 | 2018-10-24 19:35:48 +0100 | [diff] [blame] | 92 | <version>${policy.common.version}</version> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 93 | </dependency> |
jhh | f7222f8 | 2019-10-31 11:36:17 -0500 | [diff] [blame] | 94 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 95 | <dependency> |
| 96 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 97 | <artifactId>policy-utils</artifactId> |
| 98 | <version>${project.version}</version> |
| 99 | </dependency> |
jhh | f7222f8 | 2019-10-31 11:36:17 -0500 | [diff] [blame] | 100 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 101 | <dependency> |
Jim Hahn | a156cf3 | 2019-08-05 15:27:16 -0400 | [diff] [blame] | 102 | <groupId>org.projectlombok</groupId> |
| 103 | <artifactId>lombok</artifactId> |
| 104 | <scope>provided</scope> |
| 105 | </dependency> |
jhh | f7222f8 | 2019-10-31 11:36:17 -0500 | [diff] [blame] | 106 | |
Jim Hahn | a156cf3 | 2019-08-05 15:27:16 -0400 | [diff] [blame] | 107 | <dependency> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 108 | <groupId>junit</groupId> |
| 109 | <artifactId>junit</artifactId> |
| 110 | <scope>test</scope> |
| 111 | </dependency> |
jhh | f7222f8 | 2019-10-31 11:36:17 -0500 | [diff] [blame] | 112 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 113 | <dependency> |
| 114 | <groupId>org.powermock</groupId> |
Hockla, Ali (ah999m) | 956a7b5 | 2020-01-13 14:11:46 -0600 | [diff] [blame] | 115 | <artifactId>powermock-api-mockito2</artifactId> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 116 | <scope>test</scope> |
| 117 | </dependency> |
jhh | f7222f8 | 2019-10-31 11:36:17 -0500 | [diff] [blame] | 118 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 119 | <dependency> |
Jim Hahn | 7e4d309 | 2019-01-08 17:48:31 -0500 | [diff] [blame] | 120 | <groupId>org.assertj</groupId> |
| 121 | <artifactId>assertj-core</artifactId> |
Jim Hahn | 7e4d309 | 2019-01-08 17:48:31 -0500 | [diff] [blame] | 122 | <scope>test</scope> |
| 123 | </dependency> |
jhh | f7222f8 | 2019-10-31 11:36:17 -0500 | [diff] [blame] | 124 | |
Jim Hahn | 7e4d309 | 2019-01-08 17:48:31 -0500 | [diff] [blame] | 125 | <dependency> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 126 | <groupId>org.onap.policy.common</groupId> |
| 127 | <artifactId>utils-test</artifactId> |
ramverma | 5bf8486 | 2018-10-24 19:35:48 +0100 | [diff] [blame] | 128 | <version>${policy.common.version}</version> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 129 | <scope>test</scope> |
| 130 | </dependency> |
jhh | f7222f8 | 2019-10-31 11:36:17 -0500 | [diff] [blame] | 131 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 132 | </dependencies> |
jhh | f7222f8 | 2019-10-31 11:36:17 -0500 | [diff] [blame] | 133 | |
Pamela Dragosh | a0e0c78 | 2018-09-28 04:58:26 -0400 | [diff] [blame] | 134 | <build> |
| 135 | <plugins> |
| 136 | <plugin> |
| 137 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 138 | <executions> |
| 139 | <execution> |
| 140 | <id>onap-java-style</id> |
| 141 | <goals> |
| 142 | <goal>check</goal> |
| 143 | </goals> |
| 144 | <phase>process-sources</phase> |
| 145 | <configuration> |
| 146 | <!-- Use Google Java Style Guide: https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml |
| 147 | with minor changes --> |
| 148 | <configLocation>onap-checkstyle/onap-java-style.xml</configLocation> |
| 149 | <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory --> |
Hockla, Ali (ah999m) | 956a7b5 | 2020-01-13 14:11:46 -0600 | [diff] [blame] | 150 | <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories> |
Pamela Dragosh | a0e0c78 | 2018-09-28 04:58:26 -0400 | [diff] [blame] | 151 | <includeResources>true</includeResources> |
| 152 | <includeTestSourceDirectory>true</includeTestSourceDirectory> |
| 153 | <includeTestResources>true</includeTestResources> |
| 154 | <excludes> |
| 155 | </excludes> |
Pamela Dragosh | a0e0c78 | 2018-09-28 04:58:26 -0400 | [diff] [blame] | 156 | <consoleOutput>true</consoleOutput> |
| 157 | <failsOnViolation>true</failsOnViolation> |
| 158 | <violationSeverity>warning</violationSeverity> |
| 159 | </configuration> |
| 160 | </execution> |
| 161 | </executions> |
| 162 | <dependencies> |
| 163 | <dependency> |
| 164 | <groupId>org.onap.oparent</groupId> |
| 165 | <artifactId>checkstyle</artifactId> |
| 166 | <version>${oparent.version}</version> |
| 167 | <scope>compile</scope> |
| 168 | </dependency> |
| 169 | </dependencies> |
| 170 | </plugin> |
| 171 | </plugins> |
| 172 | </build> |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 173 | </project> |