blob: 220e157df40e0df1a13d7456df47583565b8cb95 [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.
liamfallon340292f2023-01-31 10:44:23 +00006 Modifications Copyright (C) 2023 Nordix Foundation.
Magnusen, Drew (dm741q)ca5aaf02017-08-25 10:20:46 -05007 ================================================================================
8 Licensed under the Apache License, Version 2.0 (the "License");
9 you may not use this file except in compliance with the License.
10 You may obtain a copy of the License at
Jim Hahna7656752021-03-12 11:17:00 -050011
Magnusen, Drew (dm741q)ca5aaf02017-08-25 10:20:46 -050012 http://www.apache.org/licenses/LICENSE-2.0
Jim Hahna7656752021-03-12 11:17:00 -050013
Magnusen, Drew (dm741q)ca5aaf02017-08-25 10:20:46 -050014 Unless required by applicable law or agreed to in writing, software
15 distributed under the License is distributed on an "AS IS" BASIS,
16 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 See the License for the specific language governing permissions and
18 limitations under the License.
19 ============LICENSE_END=========================================================
20-->
Pamela Dragoshfd307be2018-08-28 18:10:51 -040021
liamfallon99200202018-10-31 16:00:08 +000022<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 -040023 <modelVersion>4.0.0</modelVersion>
24 <parent>
25 <groupId>org.onap.policy.drools-pdp</groupId>
26 <artifactId>drools-pdp</artifactId>
liamfallon3e9a5662023-05-25 09:41:12 +010027 <version>2.0.0-SNAPSHOT</version>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040028 </parent>
29 <artifactId>feature-test-transaction</artifactId>
30
Magnusen, Drew (dm741q)ca5aaf02017-08-25 10:20:46 -050031 <name>feature-test-transaction</name>
32 <description>Separately loadable module which sends test transaction through system</description>
33
Pamela Dragoshfd307be2018-08-28 18:10:51 -040034 <properties>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040035 </properties>
Magnusen, Drew (dm741q)ca5aaf02017-08-25 10:20:46 -050036
Pamela Dragoshfd307be2018-08-28 18:10:51 -040037 <build>
38 <plugins>
39 <plugin>
40 <artifactId>maven-assembly-plugin</artifactId>
41 <executions>
42 <execution>
43 <id>zipfile</id>
44 <goals>
45 <goal>single</goal>
46 </goals>
47 <phase>package</phase>
48 <configuration>
49 <attach>true</attach>
50 <finalName>${project.artifactId}-${project.version}</finalName>
51 <descriptors>
52 <descriptor>src/assembly/assemble_zip.xml</descriptor>
53 </descriptors>
54 <appendAssemblyId>false</appendAssemblyId>
55 </configuration>
56 </execution>
57 </executions>
58 </plugin>
59 <plugin>
60 <groupId>org.apache.maven.plugins</groupId>
61 <artifactId>maven-dependency-plugin</artifactId>
62 <executions>
63 <execution>
64 <id>copy-dependencies</id>
65 <goals>
66 <goal>copy-dependencies</goal>
67 </goals>
68 <phase>prepare-package</phase>
69 <configuration>
70 <transitive>false</transitive>
71 <outputDirectory>${project.build.directory}/assembly/lib</outputDirectory>
72 <overWriteReleases>false</overWriteReleases>
73 <overWriteSnapshots>true</overWriteSnapshots>
74 <overWriteIfNewer>true</overWriteIfNewer>
75 <useRepositoryLayout>false</useRepositoryLayout>
76 <addParentPoms>false</addParentPoms>
77 <copyPom>false</copyPom>
78 <includeScope>runtime</includeScope>
79 <excludeTransitive>true</excludeTransitive>
80 </configuration>
81 </execution>
82 </executions>
83 </plugin>
84 </plugins>
85 </build>
86 <dependencies>
87 <dependency>
88 <groupId>org.onap.policy.drools-pdp</groupId>
89 <artifactId>policy-management</artifactId>
90 <version>${project.version}</version>
91 <scope>provided</scope>
92 </dependency>
93 <dependency>
94 <groupId>junit</groupId>
95 <artifactId>junit</artifactId>
96 <scope>test</scope>
97 </dependency>
Jim Hahneac53de2018-10-01 13:52:03 -040098 <dependency>
liamfallon340292f2023-01-31 10:44:23 +000099 <groupId>org.mockito</groupId>
100 <artifactId>mockito-core</artifactId>
Jim Hahneac53de2018-10-01 13:52:03 -0400101 <scope>test</scope>
102 </dependency>
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400103 </dependencies>
104</project>