Jorge Hernandez | 9e69cc2 | 2017-06-26 08:05:30 -0500 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
Guo Ruijing | 6abeb29 | 2017-07-28 08:23:01 +0000 | [diff] [blame] | 3 | ONAP Policy Engine - Drools PDP |
Jorge Hernandez | 9e69cc2 | 2017-06-26 08:05:30 -0500 | [diff] [blame] | 4 | ================================================================================ |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 5 | Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. |
Jorge Hernandez | 9e69cc2 | 2017-06-26 08:05:30 -0500 | [diff] [blame] | 6 | ================================================================================ |
| 7 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | you may not use this file except in compliance with the License. |
| 9 | You may obtain a copy of the License at |
| 10 | |
| 11 | http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | |
| 13 | Unless required by applicable law or agreed to in writing, software |
| 14 | distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | See the License for the specific language governing permissions and |
| 17 | limitations under the License. |
| 18 | ============LICENSE_END========================================================= |
| 19 | --> |
| 20 | |
liamfallon | 9920020 | 2018-10-31 16:00:08 +0000 | [diff] [blame] | 21 | <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 | 9e69cc2 | 2017-06-26 08:05:30 -0500 | [diff] [blame] | 22 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 23 | <modelVersion>4.0.0</modelVersion> |
Jorge Hernandez | 9e69cc2 | 2017-06-26 08:05:30 -0500 | [diff] [blame] | 24 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 25 | <parent> |
| 26 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 27 | <artifactId>drools-pdp</artifactId> |
Jim Hahn | 89a8e32 | 2019-09-10 11:22:40 -0400 | [diff] [blame] | 28 | <version>1.6.0-SNAPSHOT</version> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 29 | </parent> |
Jorge Hernandez | 9e69cc2 | 2017-06-26 08:05:30 -0500 | [diff] [blame] | 30 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 31 | <artifactId>feature-eelf</artifactId> |
Jorge Hernandez | 9e69cc2 | 2017-06-26 08:05:30 -0500 | [diff] [blame] | 32 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 33 | <name>feature-eelf</name> |
| 34 | <description>Loadable module that uses EELF and common module logging infrastructure</description> |
Jorge Hernandez | 9e69cc2 | 2017-06-26 08:05:30 -0500 | [diff] [blame] | 35 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 36 | <properties> |
| 37 | <maven.compiler.source>1.8</maven.compiler.source> |
| 38 | <maven.compiler.target>1.8</maven.compiler.target> |
| 39 | </properties> |
Jorge Hernandez | 9e69cc2 | 2017-06-26 08:05:30 -0500 | [diff] [blame] | 40 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 41 | <build> |
| 42 | <plugins> |
| 43 | <plugin> |
| 44 | <artifactId>maven-assembly-plugin</artifactId> |
| 45 | <executions> |
| 46 | <execution> |
| 47 | <id>zipfile</id> |
| 48 | <goals> |
| 49 | <goal>single</goal> |
| 50 | </goals> |
| 51 | <phase>package</phase> |
| 52 | <configuration> |
| 53 | <attach>true</attach> |
| 54 | <finalName>${project.artifactId}-${project.version}</finalName> |
| 55 | <descriptors> |
| 56 | <descriptor>src/assembly/assemble_zip.xml</descriptor> |
| 57 | </descriptors> |
| 58 | <appendAssemblyId>false</appendAssemblyId> |
| 59 | </configuration> |
| 60 | </execution> |
| 61 | </executions> |
| 62 | </plugin> |
| 63 | <plugin> |
| 64 | <groupId>org.apache.maven.plugins</groupId> |
| 65 | <artifactId>maven-dependency-plugin</artifactId> |
| 66 | <executions> |
| 67 | <execution> |
| 68 | <id>copy-dependencies</id> |
| 69 | <goals> |
| 70 | <goal>copy-dependencies</goal> |
| 71 | </goals> |
| 72 | <phase>prepare-package</phase> |
| 73 | <configuration> |
| 74 | <transitive>false</transitive> |
| 75 | <outputDirectory>${project.build.directory}/assembly/lib</outputDirectory> |
| 76 | <overWriteReleases>false</overWriteReleases> |
| 77 | <overWriteSnapshots>true</overWriteSnapshots> |
| 78 | <overWriteIfNewer>true</overWriteIfNewer> |
| 79 | <useRepositoryLayout>false</useRepositoryLayout> |
| 80 | <addParentPoms>false</addParentPoms> |
| 81 | <copyPom>false</copyPom> |
| 82 | <includeScope>runtime</includeScope> |
| 83 | <excludeTransitive>true</excludeTransitive> |
| 84 | </configuration> |
| 85 | </execution> |
| 86 | </executions> |
| 87 | </plugin> |
| 88 | </plugins> |
| 89 | </build> |
Jorge Hernandez | 9e69cc2 | 2017-06-26 08:05:30 -0500 | [diff] [blame] | 90 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 91 | <dependencies> |
| 92 | <dependency> |
| 93 | <groupId>ch.qos.logback</groupId> |
| 94 | <artifactId>logback-classic</artifactId> |
| 95 | <scope>test</scope> |
| 96 | </dependency> |
| 97 | <dependency> |
| 98 | <groupId>com.att.eelf</groupId> |
| 99 | <artifactId>eelf-core</artifactId> |
| 100 | <version>1.0.0</version> |
| 101 | </dependency> |
| 102 | <dependency> |
| 103 | <groupId>org.onap.policy.common</groupId> |
| 104 | <artifactId>ONAP-Logging</artifactId> |
ramverma | 5bf8486 | 2018-10-24 19:35:48 +0100 | [diff] [blame] | 105 | <version>${policy.common.version}</version> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 106 | </dependency> |
| 107 | <dependency> |
| 108 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 109 | <artifactId>policy-management</artifactId> |
| 110 | <version>${project.version}</version> |
| 111 | <scope>provided</scope> |
| 112 | </dependency> |
| 113 | <dependency> |
| 114 | <groupId>junit</groupId> |
| 115 | <artifactId>junit</artifactId> |
| 116 | <scope>test</scope> |
| 117 | </dependency> |
| 118 | </dependencies> |
Jorge Hernandez | 9e69cc2 | 2017-06-26 08:05:30 -0500 | [diff] [blame] | 119 | |
| 120 | </project> |