Merge "URGENT : Install logback"
[ccsdk/sli/core.git] / sli / common / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4     <modelVersion>4.0.0</modelVersion>
5
6     <parent>
7         <groupId>org.onap.ccsdk.parent</groupId>
8         <artifactId>binding-parent</artifactId>
9         <version>1.0.1-SNAPSHOT</version>
10         <relativePath />
11     </parent>
12
13     <groupId>org.onap.ccsdk.sli.core</groupId>
14     <artifactId>sli-common</artifactId>
15     <version>0.2.1-SNAPSHOT</version>
16     <packaging>bundle</packaging>
17
18     <name>ccsdk-sli-core :: sli :: ${project.artifactId}</name>
19     <description>The SLI Common package includes common classes used by the various SLI subcomponents, as well as classes used by clients to interface with the service logic interpreter</description>
20
21     <properties>
22        <!--  Ignore deprecated classes in coverage counts -->
23        <sonar.coverage.exclusions>**/MessageWriter.java</sonar.coverage.exclusions>
24
25     </properties>
26
27     <dependencyManagement>
28         <dependencies>
29             <dependency>
30                 <groupId>org.opendaylight.controller</groupId>
31                 <artifactId>mdsal-artifacts</artifactId>
32                 <version>1.6.1</version>
33                 <type>pom</type>
34                 <scope>import</scope>
35             </dependency>
36         </dependencies>
37     </dependencyManagement>
38     <dependencies>
39         <dependency>
40             <groupId>org.apache.derby</groupId>
41             <artifactId>derby</artifactId>
42             <version>10.11.1.1</version>
43             <scope>test</scope>
44         </dependency>
45         <dependency>
46             <groupId>org.antlr</groupId>
47             <artifactId>antlr4-runtime</artifactId>
48             <version>${antlr.version}</version>
49         </dependency>
50         <dependency>
51             <groupId>org.slf4j</groupId>
52             <artifactId>slf4j-api</artifactId>
53             <version>${slf4j.version}</version>
54         </dependency>
55         <dependency>
56             <groupId>org.slf4j</groupId>
57             <artifactId>slf4j-simple</artifactId>
58             <version>1.7.5</version>
59             <scope>compile</scope>
60         </dependency>
61         <dependency>
62             <groupId>org.apache.commons</groupId>
63             <artifactId>commons-lang3</artifactId>
64             <version>${commons.lang3.version}</version>
65         </dependency>
66         <dependency>
67             <groupId>equinoxSDK381</groupId>
68             <artifactId>org.eclipse.osgi</artifactId>
69             <version>${equinox.osgi.version}</version>
70         </dependency>
71         <dependency>
72             <groupId>org.mariadb.jdbc</groupId>
73             <artifactId>mariadb-java-client</artifactId>
74             <version>${mariadb.connector.version}</version>
75             <type>jar</type>
76             <scope>compile</scope>
77         </dependency>
78         <dependency>
79             <groupId>org.onap.ccsdk.sli.core</groupId>
80             <artifactId>dblib-provider</artifactId>
81             <version>${sdnctl.dblib.version}</version>
82         </dependency>
83         <dependency>
84             <groupId>org.onap.ccsdk.sli.core</groupId>
85             <artifactId>sli-model</artifactId>
86             <version>${project.version}</version>
87             <scope>test</scope>
88         </dependency>
89         <dependency>
90             <groupId>org.opendaylight.mdsal.model</groupId>
91             <artifactId>ietf-inet-types</artifactId>
92         </dependency>
93         <dependency>
94             <groupId>org.opendaylight.mdsal.model</groupId>
95             <artifactId>ietf-yang-types</artifactId>
96         </dependency>
97         <dependency>
98             <groupId>org.opendaylight.controller</groupId>
99             <artifactId>sal-core-api</artifactId>
100         </dependency>
101
102         <dependency>
103             <groupId>org.opendaylight.controller</groupId>
104             <artifactId>sal-binding-api</artifactId>
105         </dependency>
106
107         <dependency>
108             <groupId>com.att.eelf</groupId>
109             <artifactId>eelf-core</artifactId>
110             <version>1.0.0</version>
111         </dependency>
112
113         <!-- Testing Dependencies -->
114         <dependency>
115             <groupId>junit</groupId>
116             <artifactId>junit</artifactId>
117             <scope>test</scope>
118         </dependency>
119
120         <dependency>
121             <groupId>org.mockito</groupId>
122             <artifactId>mockito-core</artifactId>
123             <scope>test</scope>
124         </dependency>
125     </dependencies>
126
127     <build>
128         <plugins>
129             <plugin>
130                 <groupId>org.antlr</groupId>
131                 <artifactId>antlr4-maven-plugin</artifactId>
132                 <version>${antlr.version}</version>
133                 <executions>
134                     <execution>
135                         <configuration>
136                             <sourceDirectory>${basedir}/src/main/antlr4</sourceDirectory>
137                             <outputDirectory>${project.basedir}/src/main/java/</outputDirectory>
138                         </configuration>
139                         <id>antlr</id>
140                         <goals>
141                             <goal>antlr4</goal>
142                         </goals>
143                     </execution>
144                 </executions>
145             </plugin>
146         </plugins>
147     </build>
148 </project>