Implement Encryption on Passwords
[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-2018 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.2.0-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                 <dependency>
108                         <groupId>org.onap.policy.engine</groupId>
109                         <artifactId>PolicyEngineUtils</artifactId>
110                         <version>${project.version}</version>
111                         <exclusions>
112                                 <exclusion>
113                                         <groupId>com.att.aft</groupId>
114                                         <artifactId>dme2</artifactId>
115                                 </exclusion>
116                                 <exclusion>
117                                         <groupId>org.json</groupId>
118                                         <artifactId>json</artifactId>
119                                 </exclusion>
120                                 <exclusion>
121                                         <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId>
122                                         <artifactId>dmaapClient</artifactId>
123                                 </exclusion>
124                                 <exclusion>
125                                         <groupId>com.att.nsa</groupId>
126                                         <artifactId>cambriaClient</artifactId>
127                                 </exclusion>
128                                 <exclusion>
129                                         <groupId>com.att.cadi</groupId>
130                                         <artifactId>cadi-aaf</artifactId>
131                                 </exclusion>
132                         </exclusions>
133                 </dependency>                              
134         </dependencies>
135         <build>
136                 <plugins>
137                         <plugin> 
138                                 <!-- Build an executable JAR --> 
139                                 <groupId>org.apache.maven.plugins</groupId>
140                                 <artifactId>maven-assembly-plugin</artifactId>
141                                 <version>2.2</version>
142                                 <configuration>
143                                         <archive>
144                                                 <manifest>
145                                                         <addClasspath>true</addClasspath>
146                                                         <classpathPrefix>lib/</classpathPrefix>
147                                                         <mainClass>org.onap.xacml.parser.ParseLog</mainClass>
148                                                 </manifest>
149                                         </archive>
150                                         <descriptorRefs>
151                                                 <descriptorRef>jar-with-dependencies</descriptorRef>
152                                         </descriptorRefs>
153                                 </configuration>
154                                 <executions>
155                                         <execution>
156                                                 <id>make-assembly</id>
157                                                 <phase>package</phase>
158                                                 <goals>
159                                                         <goal>single</goal>
160                                                 </goals>
161                                         </execution>
162                                 </executions>
163                 </plugin>
164                 </plugins>
165         </build>
166 </project>