[RENUMBER] Roll to next snapshot
[sdnc/core.git] / sli / common / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2         <modelVersion>4.0.0</modelVersion>
3         <parent>
4                 <artifactId>sli</artifactId>
5                 <groupId>org.openecomp.sdnc.core</groupId>
6                 <version>1.1.1-SNAPSHOT</version>
7         </parent>
8         <artifactId>sli-common</artifactId>
9         <packaging>bundle</packaging>
10
11         <name>SLI - Common Classes</name>
12         <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>
13
14         <dependencies>
15                 <dependency>
16                         <groupId>junit</groupId>
17                         <artifactId>junit</artifactId>
18                         <version>3.8.1</version>
19                         <scope>test</scope>
20                 </dependency>
21                 <dependency>
22                         <groupId>org.antlr</groupId>
23                         <artifactId>antlr4</artifactId>
24                         <version>${antlr.version}</version>
25                         <type>jar</type>
26                         <scope>compile</scope>
27                 </dependency>
28                 <dependency>
29                         <groupId>org.slf4j</groupId>
30                         <artifactId>slf4j-api</artifactId>
31                         <version>${slf4j.version}</version>
32                 </dependency>
33                 <dependency>
34                         <groupId>org.slf4j</groupId>
35                         <artifactId>slf4j-simple</artifactId>
36                         <version>1.7.5</version>
37                         <scope>compile</scope>
38                 </dependency>
39                 <dependency>
40                         <groupId>org.apache.commons</groupId>
41                         <artifactId>commons-lang3</artifactId>
42                         <version>${commons.lang3.version}</version>
43                 </dependency>
44                 <dependency>
45                         <groupId>org.opendaylight.mdsal</groupId>
46                         <artifactId>yang-binding</artifactId>
47                         <version>${odl.mdsal.yang.binding.version}</version>
48                 </dependency>
49                 <dependency>
50                         <groupId>org.opendaylight.yangtools</groupId>
51                         <artifactId>yang-common</artifactId>
52                         <version>${odl.yangtools.version}</version>
53                 </dependency>
54                 <dependency>
55                         <groupId>org.opendaylight.mdsal.model</groupId>
56                         <artifactId>ietf-inet-types</artifactId>
57                         <version>${odl.ietf-inet-types.version}</version>
58                 </dependency>
59                 <dependency>
60                         <groupId>org.opendaylight.mdsal.model</groupId>
61                         <artifactId>ietf-yang-types</artifactId>
62                         <version>${odl.ietf-yang-types.version}</version>
63                 </dependency>
64                 <dependency>
65                         <groupId>org.opendaylight.controller</groupId>
66                         <artifactId>sal-core-api</artifactId>
67                         <version>${odl.mdsal.version}</version>
68                 </dependency>
69                 <dependency>
70                         <groupId>org.opendaylight.yangtools</groupId>
71                         <artifactId>yang-data-impl</artifactId>
72                         <version>${odl.yangtools.version}</version>
73                 </dependency>
74                 <dependency>
75                         <groupId>equinoxSDK381</groupId>
76                         <artifactId>org.eclipse.osgi</artifactId>
77                         <version>${equinox.osgi.version}</version>
78                 </dependency>
79                 <dependency>
80                         <groupId>mysql</groupId>
81                         <artifactId>mysql-connector-java</artifactId>
82                         <version>${mysql.connector.version}</version>
83                         <type>jar</type>
84                         <scope>compile</scope>
85                 </dependency>
86                 <dependency>
87                         <groupId>org.openecomp.sdnc.core</groupId>
88                         <artifactId>dblib-provider</artifactId>
89                         <version>${sdnctl.dblib.version}</version>
90                 </dependency>
91         </dependencies>
92
93         <build>
94                 <plugins>
95                         <plugin>
96                                 <groupId>org.apache.maven.plugins</groupId>
97                                 <artifactId>maven-compiler-plugin</artifactId>
98                                 <configuration>
99                                         <source>1.7</source>
100                                         <target>1.7</target>
101                                 </configuration>
102                         </plugin>
103                         <plugin>
104                                 <groupId>org.apache.maven.plugins</groupId>
105                                 <artifactId>maven-jar-plugin</artifactId>
106                                 <version>2.4</version>
107                                 <configuration>
108                                         <includes>**/*.xsd</includes>
109                                         <archive>
110                                                 <manifest>
111                                                         <mainClass>org.openecomp.sdnc.sli.SvcLogicParser</mainClass>
112                                                         <packageName>org.openecomp.sdnc.sli</packageName>
113                                                         <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
114                                                 </manifest>
115                                         </archive>
116                                 </configuration>
117                         </plugin>
118                         <plugin>
119                                 <groupId>org.apache.felix</groupId>
120                                 <artifactId>maven-bundle-plugin</artifactId>
121                                 <extensions>true</extensions>
122                                 <configuration>
123                                         <instructions>
124                                                 <Export-Package>org.openecomp.sdnc.sli;version=${project.version}</Export-Package>
125                                                 <Import-Package>*</Import-Package>
126                                                 <Embed-Dependency>*;scope=compile;artifactId=commons-lang|commons-lang3</Embed-Dependency>
127                                                 <Embed-Transitive>true</Embed-Transitive>
128                                         </instructions>
129                                 </configuration>
130                         </plugin>
131                         <plugin>
132                                 <groupId>org.antlr</groupId>
133                                 <artifactId>antlr4-maven-plugin</artifactId>
134                                 <version>${antlr.version}</version>
135                                 <executions>
136                                         <execution>
137                                                 <configuration>
138                                                         <outputDirectory>${project.basedir}/src/main/java/</outputDirectory>
139                                                 </configuration>
140                                                 <id>antlr</id>
141                                                 <goals>
142                                                         <goal>antlr4</goal>
143                                                 </goals>
144                                         </execution>
145                                 </executions>
146                         </plugin>
147                 </plugins>
148         </build>
149
150 </project>