blob: 33e62a9a9b6af3ce1c20a83335aa4d9507b246e5 [file] [log] [blame]
Magnusen, Drew (dm741q)ca5aaf02017-08-25 10:20:46 -05001<!--
2 ============LICENSE_START=======================================================
3 feature-test-transaction
4 ================================================================================
Jim Hahna7656752021-03-12 11:17:00 -05005 Copyright (C) 2017-2021 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
Jim Hahna7656752021-03-12 11:17:00 -050010
Magnusen, Drew (dm741q)ca5aaf02017-08-25 10:20:46 -050011 http://www.apache.org/licenses/LICENSE-2.0
Jim Hahna7656752021-03-12 11:17:00 -050012
Magnusen, Drew (dm741q)ca5aaf02017-08-25 10:20:46 -050013 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
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">
Pamela Dragoshfd307be2018-08-28 18:10:51 -040022 <modelVersion>4.0.0</modelVersion>
23 <parent>
24 <groupId>org.onap.policy.drools-pdp</groupId>
25 <artifactId>drools-pdp</artifactId>
jhhd8c487e2021-03-11 18:40:45 -060026 <version>1.9.0-SNAPSHOT</version>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040027 </parent>
28 <artifactId>feature-test-transaction</artifactId>
29
Magnusen, Drew (dm741q)ca5aaf02017-08-25 10:20:46 -050030 <name>feature-test-transaction</name>
31 <description>Separately loadable module which sends test transaction through system</description>
32
Pamela Dragoshfd307be2018-08-28 18:10:51 -040033 <properties>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040034 </properties>
Magnusen, Drew (dm741q)ca5aaf02017-08-25 10:20:46 -050035
Pamela Dragoshfd307be2018-08-28 18:10:51 -040036 <build>
37 <plugins>
38 <plugin>
39 <artifactId>maven-assembly-plugin</artifactId>
40 <executions>
41 <execution>
42 <id>zipfile</id>
43 <goals>
44 <goal>single</goal>
45 </goals>
46 <phase>package</phase>
47 <configuration>
48 <attach>true</attach>
49 <finalName>${project.artifactId}-${project.version}</finalName>
50 <descriptors>
51 <descriptor>src/assembly/assemble_zip.xml</descriptor>
52 </descriptors>
53 <appendAssemblyId>false</appendAssemblyId>
54 </configuration>
55 </execution>
56 </executions>
57 </plugin>
58 <plugin>
59 <groupId>org.apache.maven.plugins</groupId>
60 <artifactId>maven-dependency-plugin</artifactId>
61 <executions>
62 <execution>
63 <id>copy-dependencies</id>
64 <goals>
65 <goal>copy-dependencies</goal>
66 </goals>
67 <phase>prepare-package</phase>
68 <configuration>
69 <transitive>false</transitive>
70 <outputDirectory>${project.build.directory}/assembly/lib</outputDirectory>
71 <overWriteReleases>false</overWriteReleases>
72 <overWriteSnapshots>true</overWriteSnapshots>
73 <overWriteIfNewer>true</overWriteIfNewer>
74 <useRepositoryLayout>false</useRepositoryLayout>
75 <addParentPoms>false</addParentPoms>
76 <copyPom>false</copyPom>
77 <includeScope>runtime</includeScope>
78 <excludeTransitive>true</excludeTransitive>
79 </configuration>
80 </execution>
81 </executions>
82 </plugin>
83 </plugins>
84 </build>
85 <dependencies>
86 <dependency>
87 <groupId>org.onap.policy.drools-pdp</groupId>
88 <artifactId>policy-management</artifactId>
89 <version>${project.version}</version>
90 <scope>provided</scope>
91 </dependency>
92 <dependency>
93 <groupId>junit</groupId>
94 <artifactId>junit</artifactId>
95 <scope>test</scope>
96 </dependency>
Jim Hahneac53de2018-10-01 13:52:03 -040097 <dependency>
98 <groupId>org.powermock</groupId>
Hockla, Ali (ah999m)956a7b52020-01-13 14:11:46 -060099 <artifactId>powermock-api-mockito2</artifactId>
Jim Hahneac53de2018-10-01 13:52:03 -0400100 <scope>test</scope>
101 </dependency>
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400102 </dependencies>
103</project>