Bump versions to 3.0.10-SNAPSHOT
[yangtools.git] / yang / yang-data-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!-- Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved.
4     This program and the accompanying materials are made available under the
5     terms of the Eclipse Public License v1.0 which accompanies this distribution,
6     and is available at http://www.eclipse.org/legal/epl-v10.html -->
7 <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">
8     <modelVersion>4.0.0</modelVersion>
9     <parent>
10         <groupId>org.opendaylight.yangtools</groupId>
11         <artifactId>bundle-parent</artifactId>
12         <version>3.0.10-SNAPSHOT</version>
13         <relativePath>../../bundle-parent</relativePath>
14     </parent>
15
16     <artifactId>yang-data-impl</artifactId>
17     <packaging>bundle</packaging>
18     <name>${project.artifactId}</name>
19     <description>${project.artifactId}</description>
20
21     <build>
22         <plugins>
23             <plugin>
24                 <groupId>org.antlr</groupId>
25                 <artifactId>antlr4-maven-plugin</artifactId>
26                 <executions>
27                     <execution>
28                         <goals>
29                             <goal>antlr4</goal>
30                         </goals>
31                     </execution>
32                 </executions>
33                 <configuration>
34                     <sourceDirectory>${project.basedir}/src/main/antlr</sourceDirectory>
35                     <outputDirectory>${project.build.directory}/generated-sources/parser</outputDirectory>
36                     <visitor>true</visitor>
37                     <listener>true</listener>
38                 </configuration>
39             </plugin>
40             <plugin>
41                 <groupId>org.apache.felix</groupId>
42                 <artifactId>maven-bundle-plugin</artifactId>
43                 <extensions>true</extensions>
44                 <configuration>
45                     <instructions>
46                         <Automatic-Module-Name>org.opendaylight.yangtools.yang.data.impl</Automatic-Module-Name>
47                         <Export-Package>
48                             {local-packages},
49                             org.opendaylight.yangtools.yang.data.impl.*,
50                             ;-split-package:=error
51                         </Export-Package>
52                         <Bundle-Activator>org.opendaylight.yangtools.yang.data.impl.osgi.Activator</Bundle-Activator>
53                     </instructions>
54                 </configuration>
55             </plugin>
56             <plugin>
57                 <groupId>org.apache.maven.plugins</groupId>
58                 <artifactId>maven-checkstyle-plugin</artifactId>
59                 <configuration>
60                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
61                 </configuration>
62             </plugin>
63         </plugins>
64     </build>
65
66     <dependencies>
67         <dependency>
68             <groupId>org.opendaylight.yangtools</groupId>
69             <artifactId>util</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>org.opendaylight.yangtools</groupId>
73             <artifactId>yang-common</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>org.opendaylight.yangtools</groupId>
77             <artifactId>yang-data-api</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>org.opendaylight.yangtools</groupId>
81             <artifactId>yang-data-util</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>org.opendaylight.yangtools</groupId>
85             <artifactId>yang-model-api</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>org.opendaylight.yangtools</groupId>
89             <artifactId>yang-model-util</artifactId>
90         </dependency>
91         <dependency>
92             <groupId>org.opendaylight.yangtools</groupId>
93             <artifactId>rfc7952-data-util</artifactId>
94         </dependency>
95         <dependency>
96             <groupId>org.opendaylight.yangtools</groupId>
97             <artifactId>rfc8528-data-util</artifactId>
98         </dependency>
99         <dependency>
100             <groupId>com.google.guava</groupId>
101             <artifactId>guava</artifactId>
102         </dependency>
103         <dependency>
104             <groupId>org.antlr</groupId>
105             <artifactId>antlr4-runtime</artifactId>
106         </dependency>
107         <dependency>
108             <groupId>javax.xml.bind</groupId>
109             <artifactId>jaxb-api</artifactId>
110         </dependency>
111
112         <dependency>
113             <groupId>org.kohsuke.metainf-services</groupId>
114             <artifactId>metainf-services</artifactId>
115         </dependency>
116         <dependency>
117             <groupId>org.osgi</groupId>
118             <artifactId>org.osgi.core</artifactId>
119         </dependency>
120
121         <dependency>
122             <groupId>org.slf4j</groupId>
123             <artifactId>slf4j-log4j12</artifactId>
124             <scope>test</scope>
125         </dependency>
126         <dependency>
127             <groupId>org.xmlunit</groupId>
128             <artifactId>xmlunit-legacy</artifactId>
129         </dependency>
130         <dependency>
131             <groupId>org.opendaylight.yangtools</groupId>
132             <artifactId>yang-parser-impl</artifactId>
133             <scope>test</scope>
134         </dependency>
135         <dependency>
136             <groupId>org.opendaylight.yangtools</groupId>
137             <artifactId>yang-test-util</artifactId>
138             <scope>test</scope>
139         </dependency>
140     </dependencies>
141
142 </project>