blob: cacc3fc9000dd89fe958882cd3059a3cb2492da7 [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.
RossCc50265a2020-06-30 15:57:07 +01006 Modifications Copyright (C) 2020 Nordix Foundation.
Kevin McKiou36cf73f2017-08-22 16:08:06 -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
RossCc50265a2020-06-30 15:57:07 +010011
Kevin McKiou36cf73f2017-08-22 16:08:06 -050012 http://www.apache.org/licenses/LICENSE-2.0
RossCc50265a2020-06-30 15:57:07 +010013
Kevin McKiou36cf73f2017-08-22 16:08:06 -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 -->
21
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">
Kevin McKiou36cf73f2017-08-22 16:08:06 -050023
Pamela Dragoshfd307be2018-08-28 18:10:51 -040024 <modelVersion>4.0.0</modelVersion>
Kevin McKiou36cf73f2017-08-22 16:08:06 -050025
Pamela Dragoshfd307be2018-08-28 18:10:51 -040026 <parent>
27 <groupId>org.onap.policy.drools-pdp</groupId>
28 <artifactId>drools-pdp</artifactId>
Taka Cho633fbb72020-07-10 15:09:52 -040029 <version>1.7.1-SNAPSHOT</version>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040030 </parent>
Kevin McKiou36cf73f2017-08-22 16:08:06 -050031
Pamela Dragoshfd307be2018-08-28 18:10:51 -040032 <artifactId>feature-session-persistence</artifactId>
Kevin McKiou36cf73f2017-08-22 16:08:06 -050033
Pamela Dragoshfd307be2018-08-28 18:10:51 -040034 <name>feature-session-persistence</name>
35 <description>Separately loadable feature module with session persistence code</description>
Kevin McKiou36cf73f2017-08-22 16:08:06 -050036
Pamela Dragoshfd307be2018-08-28 18:10:51 -040037 <properties>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040038 </properties>
Kevin McKiou36cf73f2017-08-22 16:08:06 -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 <excludeScope>provided</excludeScope>
83 <excludeTransitive>true</excludeTransitive>
84 </configuration>
85 </execution>
86 </executions>
87 </plugin>
88 </plugins>
89 </build>
90
91 <dependencies>
92 <dependency>
93 <groupId>org.onap.policy.drools-pdp</groupId>
94 <artifactId>policy-core</artifactId>
95 <version>${project.version}</version>
96 <scope>provided</scope>
97 </dependency>
98 <dependency>
99 <groupId>org.onap.policy.drools-pdp</groupId>
100 <artifactId>policy-management</artifactId>
101 <version>${project.version}</version>
102 <scope>provided</scope>
103 </dependency>
104 <dependency>
105 <groupId>org.onap.policy.common</groupId>
106 <artifactId>utils</artifactId>
ramverma5bf84862018-10-24 19:35:48 +0100107 <version>${policy.common.version}</version>
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400108 </dependency>
109 <dependency>
110 <groupId>org.powermock</groupId>
Hockla, Ali (ah999m)956a7b52020-01-13 14:11:46 -0600111 <artifactId>powermock-api-mockito2</artifactId>
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400112 <scope>test</scope>
113 </dependency>
114 <dependency>
115 <groupId>org.jboss.jbossts</groupId>
116 <artifactId>jbossjta</artifactId>
117 <version>4.16.6.Final</version>
118 <exclusions>
119 <exclusion>
120 <artifactId>jboss-servlet-api_3.0_spec</artifactId>
121 <groupId>org.jboss.spec.javax.servlet</groupId>
122 </exclusion>
123 </exclusions>
124 </dependency>
125 <dependency>
126 <groupId>com.h2database</groupId>
127 <artifactId>h2</artifactId>
128 <scope>test</scope>
129 </dependency>
130 <dependency>
131 <groupId>org.hibernate</groupId>
132 <artifactId>hibernate-core</artifactId>
133 <scope>provided</scope>
134 </dependency>
135 <dependency>
136 <groupId>org.hibernate.common</groupId>
137 <artifactId>hibernate-commons-annotations</artifactId>
138 <scope>provided</scope>
139 </dependency>
140 <dependency>
141 <groupId>org.apache.commons</groupId>
142 <artifactId>commons-dbcp2</artifactId>
RossCc50265a2020-06-30 15:57:07 +0100143 <version>2.7.0</version>
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400144 </dependency>
145 <dependency>
146 <groupId>org.apache.commons</groupId>
147 <artifactId>commons-pool2</artifactId>
RossCc50265a2020-06-30 15:57:07 +0100148 <version>2.8.0</version>
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400149 </dependency>
150
151 <dependency>
152 <groupId>junit</groupId>
153 <artifactId>junit</artifactId>
154 <scope>test</scope>
155 </dependency>
Jim Hahn15014b82020-04-06 15:33:23 -0400156 <dependency>
157 <groupId>org.assertj</groupId>
158 <artifactId>assertj-core</artifactId>
159 <scope>test</scope>
160 </dependency>
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400161 </dependencies>
Kevin McKiou36cf73f2017-08-22 16:08:06 -0500162</project>