Bump up artifacts version to 1.1.3-SNAPSHOT
[policy/engine.git] / LogParser / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP Policy Engine
5   ================================================================================
6   Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
7   ================================================================================
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
11   
12        http://www.apache.org/licenses/LICENSE-2.0
13   
14   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
22 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24         <modelVersion>4.0.0</modelVersion>
25         
26         <parent>
27                 <groupId>org.onap.policy.engine</groupId>
28                 <artifactId>PolicyEngineSuite</artifactId>
29                 <version>1.1.3-SNAPSHOT</version>
30         </parent>
31         <artifactId>LogParser</artifactId>
32         
33         <dependencies>
34                 <dependency>
35             <groupId>com.h2database</groupId>
36             <artifactId>h2</artifactId>
37             <version>1.4.193</version>
38         </dependency>
39                 <dependency>
40             <groupId>org.mariadb.jdbc</groupId>
41             <artifactId>mariadb-java-client</artifactId>
42             <version>2.1.1</version>
43         </dependency> 
44                 <dependency>
45                         <groupId>org.onap.policy.common</groupId>
46                         <artifactId>ONAP-Logging</artifactId>
47                         <version>${project.version}</version>
48                         <exclusions>
49                                 <exclusion>
50                                         <groupId>org.powermock</groupId>
51                                         <artifactId>powermock-module-junit4</artifactId>
52                                 </exclusion>
53                                 <exclusion>
54                                         <groupId>org.powermock</groupId>
55                                         <artifactId>powermock-api-mockito</artifactId>
56                                 </exclusion>
57                         </exclusions>
58                 </dependency>
59                 <dependency>
60                         <groupId>org.onap.policy.common</groupId>
61                         <artifactId>integrity-monitor</artifactId>
62                         <version>${project.version}</version>                   
63                         <exclusions>
64                                 <exclusion>
65                                         <groupId>org.powermock</groupId>
66                                         <artifactId>powermock-api-mockito</artifactId>
67                                 </exclusion>
68                         </exclusions>
69                 </dependency>
70                 <dependency>
71                         <groupId>org.apache.logging.log4j</groupId>
72                         <artifactId>log4j-api</artifactId>
73                         <version>2.4</version>
74                 </dependency>
75                 <dependency>
76                         <groupId>org.apache.logging.log4j</groupId>
77                         <artifactId>log4j-core</artifactId>
78                         <version>2.4</version>
79                 </dependency>
80                 <dependency>
81                         <groupId>org.eclipse.persistence</groupId>
82                         <artifactId>javax.persistence</artifactId>
83                         <version>2.1.0</version>
84                 </dependency>
85                 <dependency>
86                         <groupId>org.eclipse.persistence</groupId>
87                         <artifactId>eclipselink</artifactId>
88                         <version>2.6.0</version>
89                 </dependency>
90                                 <dependency>
91                         <groupId>junit</groupId>
92                         <artifactId>junit</artifactId>
93                         <version>4.11</version>
94                         <scope>test</scope>
95                 </dependency>   
96                 <dependency>
97                         <groupId>org.mockito</groupId>
98                         <artifactId>mockito-core</artifactId>
99                         <version>2.7.22</version>
100                 </dependency>
101                 <!-- https://mvnrepository.com/artifact/org.mockito/mockito-all -->
102                 <dependency>
103                     <groupId>org.mockito</groupId>
104                     <artifactId>mockito-all</artifactId>
105                     <version>1.10.19</version>
106                 </dependency>       
107         </dependencies>
108         <build>
109                 <plugins>
110                         <plugin> 
111                                 <!-- Build an executable JAR --> 
112                                 <groupId>org.apache.maven.plugins</groupId>
113                                 <artifactId>maven-assembly-plugin</artifactId>
114                                 <version>2.2</version>
115                                 <configuration>
116                                         <archive>
117                                                 <manifest>
118                                                         <addClasspath>true</addClasspath>
119                                                         <classpathPrefix>lib/</classpathPrefix>
120                                                         <mainClass>org.onap.xacml.parser.ParseLog</mainClass>
121                                                 </manifest>
122                                         </archive>
123                                         <descriptorRefs>
124                                                 <descriptorRef>jar-with-dependencies</descriptorRef>
125                                         </descriptorRefs>
126                                 </configuration>
127                                 <executions>
128                                         <execution>
129                                                 <id>make-assembly</id>
130                                                 <phase>package</phase>
131                                                 <goals>
132                                                         <goal>single</goal>
133                                                 </goals>
134                                         </execution>
135                                 </executions>
136                 </plugin>
137                 </plugins>
138         </build>
139 </project>