blob: 92c8e217609b3be113d48df11d241739819dc1b5 [file] [log] [blame]
Magnusen, Drew (dm741q)ca5aaf02017-08-25 10:20:46 -05001<!--
2 ============LICENSE_START=======================================================
3 feature-test-transaction
4 ================================================================================
Pamela Dragoshfd307be2018-08-28 18:10:51 -04005 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
Magnusen, Drew (dm741q)ca5aaf02017-08-25 10:20:46 -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-->
Pamela Dragoshfd307be2018-08-28 18:10:51 -040020
21<project xmlns="http://maven.apache.org/POM/4.0.0"
22 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24 <modelVersion>4.0.0</modelVersion>
25 <parent>
26 <groupId>org.onap.policy.drools-pdp</groupId>
27 <artifactId>drools-pdp</artifactId>
28 <version>1.3.0-SNAPSHOT</version>
29 </parent>
30 <artifactId>feature-test-transaction</artifactId>
31
Magnusen, Drew (dm741q)ca5aaf02017-08-25 10:20:46 -050032 <name>feature-test-transaction</name>
33 <description>Separately loadable module which sends test transaction through system</description>
34
Pamela Dragoshfd307be2018-08-28 18:10:51 -040035 <properties>
36 <maven.compiler.source>1.8</maven.compiler.source>
37 <maven.compiler.target>1.8</maven.compiler.target>
38 </properties>
Magnusen, Drew (dm741q)ca5aaf02017-08-25 10:20:46 -050039
Pamela Dragoshfd307be2018-08-28 18:10:51 -040040 <build>
41 <plugins>
42 <plugin>
43 <artifactId>maven-assembly-plugin</artifactId>
44 <executions>
45 <execution>
46 <id>zipfile</id>
47 <goals>
48 <goal>single</goal>
49 </goals>
50 <phase>package</phase>
51 <configuration>
52 <attach>true</attach>
53 <finalName>${project.artifactId}-${project.version}</finalName>
54 <descriptors>
55 <descriptor>src/assembly/assemble_zip.xml</descriptor>
56 </descriptors>
57 <appendAssemblyId>false</appendAssemblyId>
58 </configuration>
59 </execution>
60 </executions>
61 </plugin>
62 <plugin>
63 <groupId>org.apache.maven.plugins</groupId>
64 <artifactId>maven-dependency-plugin</artifactId>
65 <executions>
66 <execution>
67 <id>copy-dependencies</id>
68 <goals>
69 <goal>copy-dependencies</goal>
70 </goals>
71 <phase>prepare-package</phase>
72 <configuration>
73 <transitive>false</transitive>
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 <dependencies>
90 <dependency>
91 <groupId>org.onap.policy.drools-pdp</groupId>
92 <artifactId>policy-management</artifactId>
93 <version>${project.version}</version>
94 <scope>provided</scope>
95 </dependency>
96 <dependency>
97 <groupId>junit</groupId>
98 <artifactId>junit</artifactId>
99 <scope>test</scope>
100 </dependency>
101 </dependencies>
102</project>