Kevin McKiou | 36cf73f | 2017-08-22 16:08:06 -0500 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | ONAP Policy Engine - Drools PDP |
| 4 | ================================================================================ |
Hockla, Ali (ah999m) | 956a7b5 | 2020-01-13 14:11:46 -0600 | [diff] [blame^] | 5 | Copyright (C) 2017-2018, 2020 AT&T Intellectual Property. All rights reserved. |
Kevin McKiou | 36cf73f | 2017-08-22 16:08:06 -0500 | [diff] [blame] | 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 | |
liamfallon | 9920020 | 2018-10-31 16:00:08 +0000 | [diff] [blame] | 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"> |
Kevin McKiou | 36cf73f | 2017-08-22 16:08:06 -0500 | [diff] [blame] | 22 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 23 | <modelVersion>4.0.0</modelVersion> |
Kevin McKiou | 36cf73f | 2017-08-22 16:08:06 -0500 | [diff] [blame] | 24 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 25 | <parent> |
| 26 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 27 | <artifactId>drools-pdp</artifactId> |
Jim Hahn | 89a8e32 | 2019-09-10 11:22:40 -0400 | [diff] [blame] | 28 | <version>1.6.0-SNAPSHOT</version> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 29 | </parent> |
Kevin McKiou | 36cf73f | 2017-08-22 16:08:06 -0500 | [diff] [blame] | 30 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 31 | <artifactId>feature-session-persistence</artifactId> |
Kevin McKiou | 36cf73f | 2017-08-22 16:08:06 -0500 | [diff] [blame] | 32 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 33 | <name>feature-session-persistence</name> |
| 34 | <description>Separately loadable feature module with session persistence code</description> |
Kevin McKiou | 36cf73f | 2017-08-22 16:08:06 -0500 | [diff] [blame] | 35 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 36 | <properties> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 37 | </properties> |
Kevin McKiou | 36cf73f | 2017-08-22 16:08:06 -0500 | [diff] [blame] | 38 | |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 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> |
ramverma | 5bf8486 | 2018-10-24 19:35:48 +0100 | [diff] [blame] | 106 | <version>${policy.common.version}</version> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 107 | </dependency> |
| 108 | <dependency> |
| 109 | <groupId>org.powermock</groupId> |
Hockla, Ali (ah999m) | 956a7b5 | 2020-01-13 14:11:46 -0600 | [diff] [blame^] | 110 | <artifactId>powermock-api-mockito2</artifactId> |
Pamela Dragosh | fd307be | 2018-08-28 18:10:51 -0400 | [diff] [blame] | 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> |
Kevin McKiou | 36cf73f | 2017-08-22 16:08:06 -0500 | [diff] [blame] | 156 | </project> |