Bump drools-pdp to 1.6.1-SNAPSHOT
[policy/drools-pdp.git] / feature-session-persistence / pom.xml
1 <!--
2   ============LICENSE_START=======================================================
3   ONAP Policy Engine - Drools PDP
4   ================================================================================
5   Copyright (C) 2017-2018, 2020 AT&T Intellectual Property. All rights reserved.
6   ================================================================================
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
21 <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">
22
23     <modelVersion>4.0.0</modelVersion>
24
25     <parent>
26         <groupId>org.onap.policy.drools-pdp</groupId>
27         <artifactId>drools-pdp</artifactId>
28         <version>1.6.1-SNAPSHOT</version>
29     </parent>
30
31     <artifactId>feature-session-persistence</artifactId>
32
33     <name>feature-session-persistence</name>
34     <description>Separately loadable feature module with session persistence code</description>
35
36     <properties>
37     </properties>
38
39     <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>
106             <version>${policy.common.version}</version>
107         </dependency>
108         <dependency>
109             <groupId>org.powermock</groupId>
110             <artifactId>powermock-api-mockito2</artifactId>
111             <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>
156 </project>