blob: 5cec48a7b30bd4b5a8cc3abf42ef53eb465b9b76 [file] [log] [blame]
Jorge Hernandezb918b692017-09-20 23:12:27 -05001<!--
2 ============LICENSE_START=======================================================
3 ONAP
4 ================================================================================
5 Copyright (C) 2017 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 <parent>
25 <groupId>org.onap.policy.drools-applications</groupId>
26 <artifactId>common</artifactId>
Jessica Wagantallcd2ec552017-11-18 18:36:44 -080027 <version>1.2.0-SNAPSHOT</version>
Jorge Hernandezb918b692017-09-20 23:12:27 -050028 </parent>
29 <artifactId>feature-controlloop-utils</artifactId>
30 <description>
31 Loadable PDP-D feature module to enable simulator usage in a non-junit
32 lab environments. In a pdp-d lab environment this capability can be
33 enabled with the "feature" mechanisms.
34 </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 <version>2.6</version>
46 <executions>
47 <execution>
48 <id>zipfile</id>
49 <goals>
50 <goal>single</goal>
51 </goals>
52 <phase>package</phase>
53 <configuration>
54 <attach>true</attach>
55 <finalName>${project.artifactId}-${project.version}</finalName>
56 <descriptors>
57 <descriptor>src/assembly/assemble_zip.xml</descriptor>
58 </descriptors>
59 <appendAssemblyId>false</appendAssemblyId>
60 </configuration>
61 </execution>
62 </executions>
63 </plugin>
64
65 <plugin>
66 <groupId>org.apache.maven.plugins</groupId>
67 <artifactId>maven-dependency-plugin</artifactId>
68 <version>2.8</version>
69 <executions>
70 <execution>
71 <id>copy-dependencies</id>
72 <goals>
73 <goal>copy-dependencies</goal>
74 </goals>
75 <phase>prepare-package</phase>
76 <configuration>
77 <transitive>false</transitive>
78 <outputDirectory>${project.build.directory}/assembly/lib</outputDirectory>
79 <overWriteReleases>false</overWriteReleases>
80 <overWriteSnapshots>true</overWriteSnapshots>
81 <overWriteIfNewer>true</overWriteIfNewer>
82 <useRepositoryLayout>false</useRepositoryLayout>
83 <addParentPoms>false</addParentPoms>
84 <copyPom>false</copyPom>
85 <includeScope>runtime</includeScope>
86 <excludeTransitive>true</excludeTransitive>
87 </configuration>
88 </execution>
89 </executions>
90 </plugin>
91 </plugins>
92 </build>
93
94 <dependencies>
95 <dependency>
96 <groupId>org.onap.policy.drools-pdp</groupId>
97 <artifactId>policy-management</artifactId>
98 <version>${project.version}</version>
99 <scope>provided</scope>
100 </dependency>
101 <dependency>
102 <groupId>org.onap.policy.drools-pdp</groupId>
103 <artifactId>policy-endpoints</artifactId>
104 <version>${project.version}</version>
105 <scope>provided</scope>
106 </dependency>
107 <dependency>
108 <groupId>org.onap.policy.drools-applications</groupId>
109 <artifactId>simulators</artifactId>
110 <version>${project.version}</version>
111 </dependency>
112 <dependency>
113 <groupId>org.onap.policy.drools-applications</groupId>
114 <artifactId>aai</artifactId>
115 <version>${project.version}</version>
116 </dependency>
117 <dependency>
118 <groupId>org.onap.policy.drools-applications</groupId>
119 <artifactId>so</artifactId>
120 <version>${project.version}</version>
121 </dependency>
122 <dependency>
123 <groupId>org.onap.policy.drools-applications</groupId>
124 <artifactId>rest</artifactId>
125 <version>${project.version}</version>
126 </dependency>
127 <dependency>
128 <groupId>junit</groupId>
129 <artifactId>junit</artifactId>
130 <version>4.12</version>
131 <scope>test</scope>
132 </dependency>
133 </dependencies>
134</project>