129a679acf2bee81876955409d66a7fae287670a
[yangtools.git] / yang / yang-data-jaxen / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4     Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
5
6     This program and the accompanying materials are made available under the
7     terms of the Eclipse Public License v1.0 which accompanies this distribution,
8     and is available at http://www.eclipse.org/legal/epl-v10.html
9     -->
10 <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">
11     <modelVersion>4.0.0</modelVersion>
12     <parent>
13         <groupId>org.opendaylight.yangtools</groupId>
14         <artifactId>bundle-parent</artifactId>
15         <version>2.1.9-SNAPSHOT</version>
16         <relativePath>../../bundle-parent</relativePath>
17     </parent>
18
19     <artifactId>yang-data-jaxen</artifactId>
20     <name>${project.artifactId}</name>
21     <description>${project.artifactId}</description>
22     <packaging>bundle</packaging>
23
24     <dependencies>
25         <dependency>
26             <groupId>com.google.guava</groupId>
27             <artifactId>guava</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>jaxen</groupId>
31             <artifactId>jaxen</artifactId>
32             <version>1.1.6</version>
33         </dependency>
34
35         <dependency>
36             <groupId>org.opendaylight.yangtools</groupId>
37             <artifactId>yang-data-api</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.yangtools</groupId>
41             <artifactId>yang-data-util</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>org.opendaylight.yangtools</groupId>
45             <artifactId>yang-model-api</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.yangtools</groupId>
49             <artifactId>yang-model-util</artifactId>
50         </dependency>
51
52         <dependency>
53             <groupId>org.kohsuke.metainf-services</groupId>
54             <artifactId>metainf-services</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>org.osgi</groupId>
58             <artifactId>org.osgi.core</artifactId>
59         </dependency>
60
61         <dependency>
62             <groupId>org.opendaylight.yangtools</groupId>
63             <artifactId>yang-test-util</artifactId>
64             <scope>test</scope>
65         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.yangtools</groupId>
68             <artifactId>yang-data-impl</artifactId>
69             <scope>test</scope>
70         </dependency>
71     </dependencies>
72
73     <build>
74         <plugins>
75             <plugin>
76                 <groupId>org.apache.felix</groupId>
77                 <artifactId>maven-bundle-plugin</artifactId>
78                 <extensions>true</extensions>
79                 <configuration>
80                     <instructions>
81                         <Import-Package>!javax.annotation,*</Import-Package>
82                         <Include-Resource>{META-INF/services=${project.build.directory}/classes/META-INF/services}</Include-Resource>
83                         <Bundle-Activator>org.opendaylight.yangtools.yang.data.jaxen.osgi.Activator</Bundle-Activator>
84                     </instructions>
85                 </configuration>
86             </plugin>
87             <plugin>
88                 <groupId>org.apache.maven.plugins</groupId>
89                 <artifactId>maven-checkstyle-plugin</artifactId>
90                 <configuration>
91                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
92                 </configuration>
93             </plugin>
94         </plugins>
95     </build>
96
97 </project>