Bump versions for yangtools-3.0.0
[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.0-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>src/main/antlr</sourceDirectory>
35                     <outputDirectory>target/generated-sources/parser/org/opendaylight/yangtools/yang/data/impl/leafref</outputDirectory>
36                     <visitor>true</visitor>
37                     <listener>true</listener>
38                 </configuration>
39             </plugin>
40             <plugin>
41                 <groupId>org.apache.maven.plugins</groupId>
42                 <artifactId>maven-surefire-plugin</artifactId>
43                 <configuration>
44                 <argLine>-Dlog4j.configuration=log4j-test.xml
45                     -Xmx1500m ${jacoco.agent.ut.arg}</argLine>
46                     <redirectTestOutputToFile>true</redirectTestOutputToFile>
47                 </configuration>
48             </plugin>
49             <plugin>
50                 <groupId>org.apache.felix</groupId>
51                 <artifactId>maven-bundle-plugin</artifactId>
52                 <extensions>true</extensions>
53                 <configuration>
54                     <instructions>
55                         <Export-Package>
56                             {local-packages},
57                             org.opendaylight.yangtools.yang.data.impl.*,
58                             ;-split-package:=error
59                         </Export-Package>
60                         <Import-Package>!javax.annotation,*</Import-Package>
61                         <Include-Resource>{META-INF/services=${project.build.directory}/classes/META-INF/services}</Include-Resource>
62                         <Bundle-Activator>org.opendaylight.yangtools.yang.data.impl.osgi.Activator</Bundle-Activator>
63                     </instructions>
64                 </configuration>
65             </plugin>
66             <plugin>
67                 <groupId>org.jacoco</groupId>
68                 <artifactId>jacoco-maven-plugin</artifactId>
69                 <executions>
70                     <execution>
71                         <id>pre-unit-test</id>
72                         <goals>
73                             <goal>prepare-agent</goal>
74                         </goals>
75                         <configuration>
76                             <propertyName>jacoco.agent.ut.arg</propertyName>
77                         </configuration>
78                     </execution>
79                     <execution>
80                         <id>prepare-it-agent</id>
81                         <phase>pre-integration-test</phase>
82                         <goals>
83                             <goal>prepare-agent</goal>
84                         </goals>
85                         <configuration>
86                             <propertyName>jacoco.agent.it.arg</propertyName>
87                         </configuration>
88                     </execution>
89                 </executions>
90             </plugin>
91             <plugin>
92                 <groupId>org.apache.maven.plugins</groupId>
93                 <artifactId>maven-checkstyle-plugin</artifactId>
94                 <configuration>
95                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
96                 </configuration>
97             </plugin>
98         </plugins>
99     </build>
100
101     <dependencies>
102         <dependency>
103             <groupId>org.opendaylight.yangtools</groupId>
104             <artifactId>util</artifactId>
105         </dependency>
106         <dependency>
107             <groupId>org.opendaylight.yangtools</groupId>
108             <artifactId>yang-common</artifactId>
109         </dependency>
110         <dependency>
111             <groupId>org.opendaylight.yangtools</groupId>
112             <artifactId>yang-data-api</artifactId>
113         </dependency>
114         <dependency>
115             <groupId>org.opendaylight.yangtools</groupId>
116             <artifactId>yang-data-util</artifactId>
117         </dependency>
118         <dependency>
119             <groupId>org.opendaylight.yangtools</groupId>
120             <artifactId>yang-model-api</artifactId>
121         </dependency>
122         <dependency>
123             <groupId>org.opendaylight.yangtools</groupId>
124             <artifactId>yang-model-util</artifactId>
125         </dependency>
126         <dependency>
127             <groupId>com.google.guava</groupId>
128             <artifactId>guava</artifactId>
129         </dependency>
130         <dependency>
131             <groupId>org.antlr</groupId>
132             <artifactId>antlr4-runtime</artifactId>
133         </dependency>
134         <dependency>
135             <groupId>javax.xml.bind</groupId>
136             <artifactId>jaxb-api</artifactId>
137         </dependency>
138
139         <dependency>
140             <groupId>org.kohsuke.metainf-services</groupId>
141             <artifactId>metainf-services</artifactId>
142         </dependency>
143         <dependency>
144             <groupId>org.osgi</groupId>
145             <artifactId>org.osgi.core</artifactId>
146         </dependency>
147
148         <dependency>
149             <groupId>org.slf4j</groupId>
150             <artifactId>slf4j-log4j12</artifactId>
151             <scope>test</scope>
152         </dependency>
153         <dependency>
154             <groupId>org.xmlunit</groupId>
155             <artifactId>xmlunit-legacy</artifactId>
156         </dependency>
157         <dependency>
158             <groupId>org.opendaylight.yangtools</groupId>
159             <artifactId>yang-parser-impl</artifactId>
160             <scope>test</scope>
161         </dependency>
162         <dependency>
163             <groupId>org.opendaylight.yangtools</groupId>
164             <artifactId>yang-test-util</artifactId>
165             <scope>test</scope>
166         </dependency>
167     </dependencies>
168
169 </project>