blob: f317ac1ee14c8e2d924aaeca0f8da5ed5871933e [file] [log] [blame]
Jorge Hernandez9e69cc22017-06-26 08:05:30 -05001<!--
2 ============LICENSE_START=======================================================
Guo Ruijing6abeb292017-07-28 08:23:01 +00003 ONAP Policy Engine - Drools PDP
Jorge Hernandez9e69cc22017-06-26 08:05:30 -05004 ================================================================================
Pamela Dragoshfd307be2018-08-28 18:10:51 -04005 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
Jorge Hernandez9e69cc22017-06-26 08:05:30 -05006 ================================================================================
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
liamfallon99200202018-10-31 16:00:08 +000021<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 Hernandez9e69cc22017-06-26 08:05:30 -050022
Pamela Dragoshfd307be2018-08-28 18:10:51 -040023 <modelVersion>4.0.0</modelVersion>
Jorge Hernandez9e69cc22017-06-26 08:05:30 -050024
Pamela Dragoshfd307be2018-08-28 18:10:51 -040025 <parent>
26 <groupId>org.onap.policy.drools-pdp</groupId>
27 <artifactId>drools-pdp</artifactId>
Jim Hahn89a8e322019-09-10 11:22:40 -040028 <version>1.6.0-SNAPSHOT</version>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040029 </parent>
Jorge Hernandez9e69cc22017-06-26 08:05:30 -050030
Pamela Dragoshfd307be2018-08-28 18:10:51 -040031 <artifactId>feature-eelf</artifactId>
Jorge Hernandez9e69cc22017-06-26 08:05:30 -050032
Pamela Dragoshfd307be2018-08-28 18:10:51 -040033 <name>feature-eelf</name>
34 <description>Loadable module that uses EELF and common module logging infrastructure</description>
Jorge Hernandez9e69cc22017-06-26 08:05:30 -050035
Pamela Dragoshfd307be2018-08-28 18:10:51 -040036 <properties>
37 <maven.compiler.source>1.8</maven.compiler.source>
38 <maven.compiler.target>1.8</maven.compiler.target>
39 </properties>
Jorge Hernandez9e69cc22017-06-26 08:05:30 -050040
Pamela Dragoshfd307be2018-08-28 18:10:51 -040041 <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 Hernandez9e69cc22017-06-26 08:05:30 -050090
Pamela Dragoshfd307be2018-08-28 18:10:51 -040091 <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>
ramverma5bf84862018-10-24 19:35:48 +0100105 <version>${policy.common.version}</version>
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400106 </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 Hernandez9e69cc22017-06-26 08:05:30 -0500119
120</project>