Merge "Initialize the App and Config Class"
[holmes/dsa.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8" ?>\r
2 <!--\r
3   ~ Copyright 2017 ZTE Corporation.\r
4   ~\r
5   ~ Licensed under the Apache License, Version 2.0 (the "License");\r
6   ~ you may not use this file except in compliance with the License.\r
7   ~ You may obtain a copy of the License at\r
8   ~\r
9   ~     http://www.apache.org/licenses/LICENSE-2.0\r
10   ~\r
11   ~ Unless required by applicable law or agreed to in writing, software\r
12   ~ distributed under the License is distributed on an "AS IS" BASIS,\r
13   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
14   ~ See the License for the specific language governing permissions and\r
15   ~ limitations under the License.\r
16   -->\r
17 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"\r
18     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">\r
19     <modelVersion>4.0.0</modelVersion>\r
20     <parent>\r
21         <groupId>org.onap.oparent</groupId>\r
22         <artifactId>version</artifactId>\r
23         <version>1.0.0-SNAPSHOT</version>\r
24         <relativePath>../../oparent</relativePath>\r
25     </parent>\r
26 \r
27     <groupId>org.onap.holmes.dsa</groupId>\r
28     <artifactId>holmes-dsa-parent</artifactId>\r
29     <version>1.0.0-SNAPSHOT</version>\r
30     <packaging>pom</packaging>\r
31     <name>holmes-dsa-parent</name>\r
32     <modules>\r
33         <module>dmaap-dsa</module>\r
34         <module>dmaap-dsa-standalone</module>\r
35     </modules>\r
36 \r
37     <properties>\r
38         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>\r
39         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>\r
40         <maven.test.skip>false</maven.test.skip>\r
41         <maven.test.failure.ignore>false</maven.test.failure.ignore>\r
42         <finalName>${project.artifactId}-${project.version}</finalName>\r
43         <release.dir>${basedir}/target</release.dir>\r
44         <bundle.name>${project.artifactId}-${project.version}</bundle.name>\r
45         <pkgzip.dir>${basedir}/../release/pkgzip</pkgzip.dir>\r
46         <excludesFile>**/*$*</excludesFile>\r
47         <nexusproxy>https://nexus.open-o.org/content</nexusproxy>\r
48         <powermock.version>1.6.5</powermock.version>\r
49 \r
50 \r
51         <stringtemplate.version>3.2.1</stringtemplate.version>\r
52         <mysql.connector.version>5.1.38</mysql.connector.version>\r
53         <dropwizard.version>0.8.0</dropwizard.version>\r
54         <swagger.version>1.5.3</swagger.version>\r
55         <lombok.version>1.16.4</lombok.version>\r
56         <jersey.version>2.22.2</jersey.version>\r
57         <jaxrs.consumer.version>5.0</jaxrs.consumer.version>\r
58         <slf4j.version>1.6.1</slf4j.version>\r
59         <quartz.version>2.2.1</quartz.version>\r
60 \r
61 \r
62         <packagename>onap-holmes-rulemgt</packagename>\r
63         <linux64id>linux64</linux64id>\r
64         <win64id>win64</win64id>\r
65         <linux64outputdir>target/assembly/${linux64id}</linux64outputdir>\r
66         <win64outputdir>target/assembly/${win64id}</win64outputdir>\r
67         <version.output>target/version</version.output>\r
68     </properties>\r
69     <dependencyManagement>\r
70         <dependencies>\r
71             <dependency>\r
72                 <groupId>org.easymock</groupId>\r
73                 <artifactId>easymock</artifactId>\r
74                 <version>3.0</version>\r
75             </dependency>\r
76             <dependency>\r
77                 <groupId>org.onap.holmes.common</groupId>\r
78                 <artifactId>holmes-actions</artifactId>\r
79                 <version>${project.version}</version>\r
80             </dependency>\r
81             <dependency>\r
82                 <groupId>io.dropwizard</groupId>\r
83                 <artifactId>dropwizard-core</artifactId>\r
84                 <version>${dropwizard.version}</version>\r
85             </dependency>\r
86             <dependency>\r
87                 <groupId>io.dropwizard</groupId>\r
88                 <artifactId>dropwizard-db</artifactId>\r
89                 <version>${dropwizard.version}</version>\r
90             </dependency>\r
91             <dependency>\r
92                 <groupId>io.swagger</groupId>\r
93                 <artifactId>swagger-jersey2-jaxrs</artifactId>\r
94                 <version>${swagger.version}</version>\r
95                 <scope>provided</scope>\r
96             </dependency>\r
97 \r
98             <dependency>\r
99                 <groupId>org.projectlombok</groupId>\r
100                 <artifactId>lombok</artifactId>\r
101                 <version>${lombok.version}</version>\r
102             </dependency>\r
103 \r
104             <dependency>\r
105                 <groupId>org.slf4j</groupId>\r
106                 <artifactId>slf4j-api</artifactId>\r
107                 <version>${slf4j.version}</version>\r
108             </dependency>\r
109 \r
110             <dependency>\r
111                 <groupId>org.antlr</groupId>\r
112                 <artifactId>stringtemplate</artifactId>\r
113                 <version>${stringtemplate.version}</version>\r
114             </dependency>\r
115 \r
116             <dependency>\r
117                 <groupId>org.quartz-scheduler</groupId>\r
118                 <artifactId>quartz</artifactId>\r
119                 <version>${quartz.version}</version>\r
120             </dependency>\r
121 \r
122             <dependency>\r
123                 <groupId>junit</groupId>\r
124                 <artifactId>junit</artifactId>\r
125                 <version>4.8.2</version>\r
126                 <scope>test</scope>\r
127             </dependency>\r
128 \r
129             <dependency>\r
130                 <groupId>org.hamcrest</groupId>\r
131                 <artifactId>hamcrest-core</artifactId>\r
132                 <version>1.3</version>\r
133                 <scope>test</scope>\r
134             </dependency>\r
135 \r
136             <dependency>\r
137                 <groupId>org.powermock</groupId>\r
138                 <artifactId>powermock-module-junit4</artifactId>\r
139                 <version>1.6.5</version>\r
140                 <scope>test</scope>\r
141             </dependency>\r
142         </dependencies>\r
143     </dependencyManagement>\r
144 \r
145 </project>\r
146 \r