Daniel Cruz | 62e4281 | 2019-02-22 11:31:17 -0600 | [diff] [blame] | 1 | <!--
|
| 2 | ============LICENSE_START=======================================================
|
| 3 | feature-controller-logging
|
| 4 | ================================================================================
|
| 5 | Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
|
| 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 |
|
| 21 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
| 22 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
| 23 | <modelVersion>4.0.0</modelVersion>
|
| 24 |
|
| 25 | <parent>
|
| 26 | <groupId>org.onap.policy.drools-pdp</groupId>
|
| 27 | <artifactId>drools-pdp</artifactId>
|
jhh | f476f36 | 2020-09-08 17:11:22 -0500 | [diff] [blame] | 28 | <version>1.7.2-SNAPSHOT</version>
|
Daniel Cruz | 62e4281 | 2019-02-22 11:31:17 -0600 | [diff] [blame] | 29 | </parent>
|
| 30 |
|
| 31 | <artifactId>feature-controller-logging</artifactId>
|
| 32 |
|
| 33 | <name>feature-controller-logging</name>
|
| 34 | <description>Loadable module that enables individual network logs per controller</description>
|
| 35 |
|
| 36 | <properties>
|
| 37 | <maven.compiler.source>1.8</maven.compiler.source>
|
| 38 | <maven.compiler.target>1.8</maven.compiler.target>
|
| 39 | </properties>
|
| 40 |
|
| 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 | <outputDirectory>${project.build.directory}/assembly/lib</outputDirectory>
|
| 75 | <overWriteReleases>false</overWriteReleases>
|
| 76 | <overWriteSnapshots>true</overWriteSnapshots>
|
| 77 | <overWriteIfNewer>true</overWriteIfNewer>
|
| 78 | <useRepositoryLayout>false</useRepositoryLayout>
|
| 79 | <addParentPoms>false</addParentPoms>
|
| 80 | <copyPom>false</copyPom>
|
| 81 | <includeScope>runtime</includeScope>
|
| 82 | <excludeTransitive>true</excludeTransitive>
|
| 83 | </configuration>
|
| 84 | </execution>
|
| 85 | </executions>
|
| 86 | </plugin>
|
| 87 | </plugins>
|
| 88 | </build>
|
| 89 |
|
| 90 | <dependencies>
|
| 91 | <dependency>
|
| 92 | <groupId>org.onap.policy.drools-pdp</groupId>
|
| 93 | <artifactId>policy-management</artifactId>
|
| 94 | <version>${project.version}</version>
|
| 95 | <scope>provided</scope>
|
| 96 | </dependency>
|
| 97 | <dependency>
|
| 98 | <groupId>junit</groupId>
|
| 99 | <artifactId>junit</artifactId>
|
| 100 | <scope>test</scope>
|
| 101 | </dependency>
|
| 102 | </dependencies>
|
| 103 | </project>
|