Merge "Add Nested JSON Filtering"
[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 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.4.0-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         <maven.compiler.source>1.8</maven.compiler.source>
38         <maven.compiler.target>1.8</maven.compiler.target>
39     </properties>
40
41     <build>
42         <plugins>
43             <plugin>
44                 <artifactId>maven-assembly-plugin</artifactId>
45                 <executions>
46                     <execution>
47                         <id>zipfile</id>
48                         <goals>
49                             <goal>single</goal>
50                         </goals>
51                         <phase>package</phase>
52                         <configuration>
53                             <attach>true</attach>
54                             <finalName>${project.artifactId}-${project.version}</finalName>
55                             <descriptors>
56                                 <descriptor>src/assembly/assemble_zip.xml</descriptor>
57                             </descriptors>
58                             <appendAssemblyId>false</appendAssemblyId>
59                         </configuration>
60                     </execution>
61                 </executions>
62             </plugin>
63             <plugin>
64                 <groupId>org.apache.maven.plugins</groupId>
65                 <artifactId>maven-dependency-plugin</artifactId>
66                 <executions>
67                     <execution>
68                         <id>copy-dependencies</id>
69                         <goals>
70                             <goal>copy-dependencies</goal>
71                         </goals>
72                         <phase>prepare-package</phase>
73                         <configuration>
74                             <transitive>false</transitive>
75                             <outputDirectory>${project.build.directory}/assembly/lib</outputDirectory>
76                             <overWriteReleases>false</overWriteReleases>
77                             <overWriteSnapshots>true</overWriteSnapshots>
78                             <overWriteIfNewer>true</overWriteIfNewer>
79                             <useRepositoryLayout>false</useRepositoryLayout>
80                             <addParentPoms>false</addParentPoms>
81                             <copyPom>false</copyPom>
82                             <includeScope>runtime</includeScope>
83                             <excludeScope>provided</excludeScope>
84                             <excludeTransitive>true</excludeTransitive>
85                         </configuration>
86                     </execution>
87                 </executions>
88             </plugin>
89         </plugins>
90     </build>
91
92     <dependencies>
93         <dependency>
94             <groupId>org.onap.policy.drools-pdp</groupId>
95             <artifactId>policy-core</artifactId>
96             <version>${project.version}</version>
97             <scope>provided</scope>
98         </dependency>
99         <dependency>
100             <groupId>org.onap.policy.drools-pdp</groupId>
101             <artifactId>policy-management</artifactId>
102             <version>${project.version}</version>
103             <scope>provided</scope>
104         </dependency>
105         <dependency>
106             <groupId>org.onap.policy.common</groupId>
107             <artifactId>utils</artifactId>
108             <version>${policy.common.version}</version>
109         </dependency>
110         <dependency>
111             <groupId>org.powermock</groupId>
112             <artifactId>powermock-api-mockito</artifactId>
113             <scope>test</scope>
114         </dependency>
115         <dependency>
116             <groupId>org.jboss.jbossts</groupId>
117             <artifactId>jbossjta</artifactId>
118             <version>4.16.6.Final</version>
119             <exclusions>
120                 <exclusion>
121                     <artifactId>jboss-servlet-api_3.0_spec</artifactId>
122                     <groupId>org.jboss.spec.javax.servlet</groupId>
123                 </exclusion>
124             </exclusions>
125         </dependency>
126         <dependency>
127             <groupId>com.h2database</groupId>
128             <artifactId>h2</artifactId>
129             <scope>test</scope>
130         </dependency>
131         <dependency>
132             <groupId>org.hibernate</groupId>
133             <artifactId>hibernate-core</artifactId>
134             <scope>provided</scope>
135         </dependency>
136         <dependency>
137             <groupId>org.hibernate.common</groupId>
138             <artifactId>hibernate-commons-annotations</artifactId>
139             <scope>provided</scope>
140         </dependency>
141         <dependency>
142             <groupId>org.apache.commons</groupId>
143             <artifactId>commons-dbcp2</artifactId>
144             <version>2.1.1</version>
145         </dependency>
146         <dependency>
147             <groupId>org.apache.commons</groupId>
148             <artifactId>commons-pool2</artifactId>
149             <version>2.4.2</version>
150         </dependency>
151
152         <dependency>
153             <groupId>junit</groupId>
154             <artifactId>junit</artifactId>
155             <scope>test</scope>
156         </dependency>
157     </dependencies>
158 </project>