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