blob: ed479d706256b432c214267608134b3112e56eae [file] [log] [blame]
Kevin McKiou36cf73f2017-08-22 16:08:06 -05001<!--
2 ============LICENSE_START=======================================================
3 ONAP Policy Engine - Drools PDP
4 ================================================================================
Hockla, Ali (ah999m)956a7b52020-01-13 14:11:46 -06005 Copyright (C) 2017-2018, 2020 AT&T Intellectual Property. All rights reserved.
Kevin McKiou36cf73f2017-08-22 16:08:06 -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 -->
20
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">
Kevin McKiou36cf73f2017-08-22 16:08:06 -050022
Pamela Dragoshfd307be2018-08-28 18:10:51 -040023 <modelVersion>4.0.0</modelVersion>
Kevin McKiou36cf73f2017-08-22 16:08:06 -050024
Pamela Dragoshfd307be2018-08-28 18:10:51 -040025 <parent>
26 <groupId>org.onap.policy.drools-pdp</groupId>
27 <artifactId>drools-pdp</artifactId>
Jim Hahn89a8e322019-09-10 11:22:40 -040028 <version>1.6.0-SNAPSHOT</version>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040029 </parent>
Kevin McKiou36cf73f2017-08-22 16:08:06 -050030
Pamela Dragoshfd307be2018-08-28 18:10:51 -040031 <artifactId>feature-session-persistence</artifactId>
Kevin McKiou36cf73f2017-08-22 16:08:06 -050032
Pamela Dragoshfd307be2018-08-28 18:10:51 -040033 <name>feature-session-persistence</name>
34 <description>Separately loadable feature module with session persistence code</description>
Kevin McKiou36cf73f2017-08-22 16:08:06 -050035
Pamela Dragoshfd307be2018-08-28 18:10:51 -040036 <properties>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040037 </properties>
Kevin McKiou36cf73f2017-08-22 16:08:06 -050038
Pamela Dragoshfd307be2018-08-28 18:10:51 -040039 <build>
40 <plugins>
41 <plugin>
42 <artifactId>maven-assembly-plugin</artifactId>
43 <executions>
44 <execution>
45 <id>zipfile</id>
46 <goals>
47 <goal>single</goal>
48 </goals>
49 <phase>package</phase>
50 <configuration>
51 <attach>true</attach>
52 <finalName>${project.artifactId}-${project.version}</finalName>
53 <descriptors>
54 <descriptor>src/assembly/assemble_zip.xml</descriptor>
55 </descriptors>
56 <appendAssemblyId>false</appendAssemblyId>
57 </configuration>
58 </execution>
59 </executions>
60 </plugin>
61 <plugin>
62 <groupId>org.apache.maven.plugins</groupId>
63 <artifactId>maven-dependency-plugin</artifactId>
64 <executions>
65 <execution>
66 <id>copy-dependencies</id>
67 <goals>
68 <goal>copy-dependencies</goal>
69 </goals>
70 <phase>prepare-package</phase>
71 <configuration>
72 <transitive>false</transitive>
73 <outputDirectory>${project.build.directory}/assembly/lib</outputDirectory>
74 <overWriteReleases>false</overWriteReleases>
75 <overWriteSnapshots>true</overWriteSnapshots>
76 <overWriteIfNewer>true</overWriteIfNewer>
77 <useRepositoryLayout>false</useRepositoryLayout>
78 <addParentPoms>false</addParentPoms>
79 <copyPom>false</copyPom>
80 <includeScope>runtime</includeScope>
81 <excludeScope>provided</excludeScope>
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-core</artifactId>
94 <version>${project.version}</version>
95 <scope>provided</scope>
96 </dependency>
97 <dependency>
98 <groupId>org.onap.policy.drools-pdp</groupId>
99 <artifactId>policy-management</artifactId>
100 <version>${project.version}</version>
101 <scope>provided</scope>
102 </dependency>
103 <dependency>
104 <groupId>org.onap.policy.common</groupId>
105 <artifactId>utils</artifactId>
ramverma5bf84862018-10-24 19:35:48 +0100106 <version>${policy.common.version}</version>
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400107 </dependency>
108 <dependency>
109 <groupId>org.powermock</groupId>
Hockla, Ali (ah999m)956a7b52020-01-13 14:11:46 -0600110 <artifactId>powermock-api-mockito2</artifactId>
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400111 <scope>test</scope>
112 </dependency>
113 <dependency>
114 <groupId>org.jboss.jbossts</groupId>
115 <artifactId>jbossjta</artifactId>
116 <version>4.16.6.Final</version>
117 <exclusions>
118 <exclusion>
119 <artifactId>jboss-servlet-api_3.0_spec</artifactId>
120 <groupId>org.jboss.spec.javax.servlet</groupId>
121 </exclusion>
122 </exclusions>
123 </dependency>
124 <dependency>
125 <groupId>com.h2database</groupId>
126 <artifactId>h2</artifactId>
127 <scope>test</scope>
128 </dependency>
129 <dependency>
130 <groupId>org.hibernate</groupId>
131 <artifactId>hibernate-core</artifactId>
132 <scope>provided</scope>
133 </dependency>
134 <dependency>
135 <groupId>org.hibernate.common</groupId>
136 <artifactId>hibernate-commons-annotations</artifactId>
137 <scope>provided</scope>
138 </dependency>
139 <dependency>
140 <groupId>org.apache.commons</groupId>
141 <artifactId>commons-dbcp2</artifactId>
142 <version>2.1.1</version>
143 </dependency>
144 <dependency>
145 <groupId>org.apache.commons</groupId>
146 <artifactId>commons-pool2</artifactId>
147 <version>2.4.2</version>
148 </dependency>
149
150 <dependency>
151 <groupId>junit</groupId>
152 <artifactId>junit</artifactId>
153 <scope>test</scope>
154 </dependency>
155 </dependencies>
Kevin McKiou36cf73f2017-08-22 16:08:06 -0500156</project>