Jorge Hernandez | c9f47ef | 2018-03-23 01:14:12 -0500 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | ONAP |
| 4 | ================================================================================ |
Hockla, Ali (ah999m) | 25d3e43 | 2020-01-15 15:04:09 -0600 | [diff] [blame] | 5 | Copyright (C) 2018-2020 AT&T Intellectual Property. All rights reserved. |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 6 | Modifications Copyright (C) 2019 Nordix Foundation. |
Ram Krishna Verma | d0cbee1 | 2020-02-07 13:03:27 -0500 | [diff] [blame] | 7 | Modifications Copyright (C) 2020 Bell Canada. |
Jorge Hernandez | c9f47ef | 2018-03-23 01:14:12 -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 |
Jim Hahn | e6bf601 | 2019-06-28 09:53:35 -0400 | [diff] [blame] | 12 | |
Jorge Hernandez | c9f47ef | 2018-03-23 01:14:12 -0500 | [diff] [blame] | 13 | http://www.apache.org/licenses/LICENSE-2.0 |
Jim Hahn | e6bf601 | 2019-06-28 09:53:35 -0400 | [diff] [blame] | 14 | |
Jorge Hernandez | c9f47ef | 2018-03-23 01:14:12 -0500 | [diff] [blame] | 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 | fd6a4f3 | 2018-10-31 16:54:18 +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/xsd/maven-4.0.0.xsd"> |
Jorge Hernandez | c9f47ef | 2018-03-23 01:14:12 -0500 | [diff] [blame] | 24 | <modelVersion>4.0.0</modelVersion> |
| 25 | |
| 26 | <parent> |
| 27 | <groupId>org.onap.policy.drools-applications.controlloop.common</groupId> |
Ram Krishna Verma | d0cbee1 | 2020-02-07 13:03:27 -0500 | [diff] [blame] | 28 | <artifactId>drools-applications-common</artifactId> |
jhh | 0a8b8fb | 2020-09-09 17:15:50 -0500 | [diff] [blame] | 29 | <version>1.7.2-SNAPSHOT</version> |
Jorge Hernandez | c9f47ef | 2018-03-23 01:14:12 -0500 | [diff] [blame] | 30 | </parent> |
| 31 | |
| 32 | <artifactId>feature-controlloop-trans</artifactId> |
| 33 | |
| 34 | <description> |
| 35 | Loadable PDP-D feature module to track control loop transactions |
| 36 | </description> |
| 37 | |
Jorge Hernandez | c9f47ef | 2018-03-23 01:14:12 -0500 | [diff] [blame] | 38 | <build> |
| 39 | <plugins> |
| 40 | <plugin> |
| 41 | <artifactId>maven-assembly-plugin</artifactId> |
Jorge Hernandez | c9f47ef | 2018-03-23 01:14:12 -0500 | [diff] [blame] | 42 | <executions> |
| 43 | <execution> |
| 44 | <id>zipfile</id> |
| 45 | <goals> |
| 46 | <goal>single</goal> |
| 47 | </goals> |
| 48 | <phase>package</phase> |
| 49 | <configuration> |
| 50 | <attach>true</attach> |
| 51 | <finalName>${project.artifactId}-${project.version}</finalName> |
| 52 | <descriptors> |
| 53 | <descriptor>src/assembly/assemble_zip.xml</descriptor> |
| 54 | </descriptors> |
| 55 | <appendAssemblyId>false</appendAssemblyId> |
| 56 | </configuration> |
| 57 | </execution> |
| 58 | </executions> |
| 59 | </plugin> |
Jorge Hernandez | c9f47ef | 2018-03-23 01:14:12 -0500 | [diff] [blame] | 60 | <plugin> |
| 61 | <groupId>org.apache.maven.plugins</groupId> |
| 62 | <artifactId>maven-dependency-plugin</artifactId> |
Jorge Hernandez | c9f47ef | 2018-03-23 01:14:12 -0500 | [diff] [blame] | 63 | <executions> |
| 64 | <execution> |
| 65 | <id>copy-dependencies</id> |
| 66 | <goals> |
| 67 | <goal>copy-dependencies</goal> |
| 68 | </goals> |
| 69 | <phase>prepare-package</phase> |
| 70 | <configuration> |
| 71 | <outputDirectory>${project.build.directory}/assembly/lib</outputDirectory> |
| 72 | <overWriteReleases>false</overWriteReleases> |
| 73 | <overWriteSnapshots>true</overWriteSnapshots> |
| 74 | <overWriteIfNewer>true</overWriteIfNewer> |
| 75 | <useRepositoryLayout>false</useRepositoryLayout> |
| 76 | <addParentPoms>false</addParentPoms> |
| 77 | <copyPom>false</copyPom> |
| 78 | <includeScope>runtime</includeScope> |
| 79 | </configuration> |
| 80 | </execution> |
| 81 | </executions> |
| 82 | </plugin> |
Pamela Dragosh | a24a985 | 2018-09-21 20:08:11 -0400 | [diff] [blame] | 83 | <plugin> |
| 84 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 85 | <executions> |
| 86 | <execution> |
| 87 | <id>onap-java-style</id> |
| 88 | <goals> |
| 89 | <goal>check</goal> |
| 90 | </goals> |
| 91 | <phase>process-sources</phase> |
| 92 | <configuration> |
| 93 | <!-- Use Google Java Style Guide: |
| 94 | https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml |
| 95 | with minor changes --> |
| 96 | <configLocation>onap-checkstyle/onap-java-style.xml</configLocation> |
| 97 | <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory --> |
Hockla, Ali (ah999m) | 25d3e43 | 2020-01-15 15:04:09 -0600 | [diff] [blame] | 98 | <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories> |
Pamela Dragosh | a24a985 | 2018-09-21 20:08:11 -0400 | [diff] [blame] | 99 | <includeResources>true</includeResources> |
| 100 | <includeTestSourceDirectory>true</includeTestSourceDirectory> |
| 101 | <includeTestResources>true</includeTestResources> |
| 102 | <excludes> |
| 103 | </excludes> |
| 104 | <consoleOutput>true</consoleOutput> |
Pamela Dragosh | a24a985 | 2018-09-21 20:08:11 -0400 | [diff] [blame] | 105 | <violationSeverity>warning</violationSeverity> |
| 106 | </configuration> |
| 107 | </execution> |
| 108 | </executions> |
| 109 | <dependencies> |
| 110 | <dependency> |
| 111 | <groupId>org.onap.oparent</groupId> |
| 112 | <artifactId>checkstyle</artifactId> |
| 113 | <version>${oparent.version}</version> |
| 114 | <scope>compile</scope> |
| 115 | </dependency> |
| 116 | </dependencies> |
| 117 | </plugin> |
Jorge Hernandez | c9f47ef | 2018-03-23 01:14:12 -0500 | [diff] [blame] | 118 | </plugins> |
| 119 | </build> |
| 120 | |
| 121 | <dependencies> |
| 122 | <dependency> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 123 | <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId> |
Jorge Hernandez | c9f47ef | 2018-03-23 01:14:12 -0500 | [diff] [blame] | 124 | <artifactId>events</artifactId> |
shaoqiu | e55d256 | 2019-04-02 12:33:04 +0000 | [diff] [blame] | 125 | <version>${policy.models.version}</version> |
jhh | 50be587 | 2019-04-14 21:41:14 -0500 | [diff] [blame] | 126 | <scope>provided</scope> |
Jorge Hernandez | c9f47ef | 2018-03-23 01:14:12 -0500 | [diff] [blame] | 127 | </dependency> |
| 128 | <dependency> |
mmis | e87b2f7 | 2018-07-23 12:22:07 +0100 | [diff] [blame] | 129 | <groupId>org.onap.policy.common</groupId> |
| 130 | <artifactId>policy-endpoints</artifactId> |
ramverma | e2b3a9c | 2018-10-25 11:59:09 +0100 | [diff] [blame] | 131 | <version>${version.policy.common}</version> |
mmis | e87b2f7 | 2018-07-23 12:22:07 +0100 | [diff] [blame] | 132 | <scope>provided</scope> |
| 133 | </dependency> |
| 134 | <dependency> |
Jorge Hernandez | c9f47ef | 2018-03-23 01:14:12 -0500 | [diff] [blame] | 135 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 136 | <artifactId>policy-management</artifactId> |
ramverma | e2b3a9c | 2018-10-25 11:59:09 +0100 | [diff] [blame] | 137 | <version>${version.policy.drools-pdp}</version> |
Jorge Hernandez | c9f47ef | 2018-03-23 01:14:12 -0500 | [diff] [blame] | 138 | <scope>provided</scope> |
| 139 | </dependency> |
| 140 | <dependency> |
| 141 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 142 | <artifactId>policy-utils</artifactId> |
ramverma | e2b3a9c | 2018-10-25 11:59:09 +0100 | [diff] [blame] | 143 | <version>${version.policy.drools-pdp}</version> |
Jorge Hernandez | c9f47ef | 2018-03-23 01:14:12 -0500 | [diff] [blame] | 144 | <scope>provided</scope> |
| 145 | </dependency> |
| 146 | <dependency> |
Jorge Hernandez | c9f47ef | 2018-03-23 01:14:12 -0500 | [diff] [blame] | 147 | <groupId>com.google.guava</groupId> |
| 148 | <artifactId>guava</artifactId> |
Jorge Hernandez | c9f47ef | 2018-03-23 01:14:12 -0500 | [diff] [blame] | 149 | <scope>provided</scope> |
| 150 | </dependency> |
| 151 | </dependencies> |
| 152 | </project> |