release-1.0.0 changes
[policy/engine.git] / LogParser / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ECOMP 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.openecomp.policy.engine</groupId>
28                 <artifactId>PolicyEngineSuite</artifactId>
29                 <version>1.0.0</version>
30         </parent>
31
32         <artifactId>LogParser</artifactId>
33         
34         <dependencies>
35                 <dependency>
36             <groupId>com.h2database</groupId>
37             <artifactId>h2</artifactId>
38             <version>1.4.193</version>
39         </dependency>
40         <dependency>
41                         <groupId>mysql</groupId>
42                         <artifactId>mysql-connector-java</artifactId>
43                         <version>5.1.30</version>
44                 </dependency>
45                 <dependency>
46                         <groupId>org.mariadb.jdbc</groupId>
47                         <artifactId>mariadb-java-client</artifactId>
48                         <version>1.2.3</version>
49                 </dependency>  
50                 <dependency>
51                         <groupId>org.openecomp.policy.common</groupId>
52                         <artifactId>integrity-monitor</artifactId>
53                         <version>${common-modules.version}</version>
54                 </dependency>
55                 <dependency>
56                         <groupId>log4j</groupId>
57                         <artifactId>log4j</artifactId>
58                         <version>1.2.17</version>
59                 </dependency>
60                 <dependency>
61                         <groupId>org.eclipse.persistence</groupId>
62                         <artifactId>javax.persistence</artifactId>
63                         <version>2.1.0</version>
64                 </dependency>
65                 <dependency>
66                         <groupId>org.eclipse.persistence</groupId>
67                         <artifactId>eclipselink</artifactId>
68                         <version>2.6.0</version>
69                 </dependency>
70                                 <dependency>
71                         <groupId>junit</groupId>
72                         <artifactId>junit</artifactId>
73                         <version>4.11</version>
74                         <scope>test</scope>
75                 </dependency>   
76                 <dependency>
77                         <groupId>org.mockito</groupId>
78                         <artifactId>mockito-core</artifactId>
79                         <version>1.9.5</version>
80                 </dependency>       
81         </dependencies>
82         <build>
83                 <plugins>
84                         <plugin> 
85                                 <!-- Build an executable JAR --> 
86                                 <groupId>org.apache.maven.plugins</groupId>
87                                 <artifactId>maven-assembly-plugin</artifactId>
88                                 <version>2.2</version>
89                                 <configuration>
90                                         <archive>
91                                                 <manifest>
92                                                         <addClasspath>true</addClasspath>
93                                                         <classpathPrefix>lib/</classpathPrefix>
94                                                         <mainClass>org.openecomp.xacml.parser.ParseLog</mainClass>
95                                                 </manifest>
96                                         </archive>
97                                         <descriptorRefs>
98                                                 <descriptorRef>jar-with-dependencies</descriptorRef>
99                                         </descriptorRefs>
100                                 </configuration>
101                                 <executions>
102                                         <execution>
103                                                 <id>make-assembly</id>
104                                                 <phase>package</phase>
105                                                 <goals>
106                                                         <goal>single</goal>
107                                                 </goals>
108                                         </execution>
109                                 </executions>
110                 </plugin>
111                 </plugins>
112         </build>
113 </project>