Create custom checkstyle rules for NN
[neutron.git] / neutron-spi / 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.neutron</groupId>
6     <artifactId>project-neutron-parent</artifactId>
7     <version>0.6.0-SNAPSHOT</version>
8     <relativePath>../parent</relativePath>
9   </parent>
10
11   <groupId>org.opendaylight.neutron</groupId>
12   <artifactId>neutron-spi</artifactId>
13   <version>0.6.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15   <properties>
16     <checkstyle.location>${project.parent.basedir}/src/main/resources</checkstyle.location>
17   </properties>
18   <dependencies>
19     <dependency>
20       <groupId>commons-net</groupId>
21       <artifactId>commons-net</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>org.osgi</groupId>
25       <artifactId>org.osgi.core</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.slf4j</groupId>
29       <artifactId>slf4j-api</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>junit</groupId>
33       <artifactId>junit</artifactId>
34       <scope>test</scope>
35     </dependency>
36     <dependency>
37       <groupId>org.eclipse.persistence</groupId>
38       <artifactId>org.eclipse.persistence.antlr</artifactId>
39       <version>2.5.2</version>
40       <scope>test</scope>
41     </dependency>
42     <dependency>
43       <groupId>org.eclipse.persistence</groupId>
44       <artifactId>org.eclipse.persistence.core</artifactId>
45       <version>2.5.2</version>
46       <scope>test</scope>
47     </dependency>
48     <dependency>
49        <groupId>org.eclipse.persistence</groupId>
50        <artifactId>org.eclipse.persistence.moxy</artifactId>
51        <version>2.5.2</version>
52        <scope>test</scope>
53     </dependency>
54   </dependencies>
55   <build>
56     <plugins>
57       <plugin>
58         <groupId>org.apache.felix</groupId>
59         <artifactId>maven-bundle-plugin</artifactId>
60         <extensions>true</extensions>
61         <configuration>
62           <instructions>
63             <Import-Package>*</Import-Package>
64           </instructions>
65           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
66         </configuration>
67       </plugin>
68     </plugins>
69   </build>
70   <scm>
71     <connection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</connection>
72     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</developerConnection>
73     <tag>HEAD</tag>
74     <url>https://wiki.opendaylight.org/view/NeutronNorthBound:Main</url>
75   </scm>
76   <distributionManagement>
77     <!-- OpenDayLight Released artifact -->
78     <repository>
79       <id>opendaylight-release</id>
80       <url>${nexusproxy}/repositories/${nexus.repository.release}/</url>
81     </repository>
82     <!-- OpenDayLight Snapshot artifact -->
83     <snapshotRepository>
84       <id>opendaylight-snapshot</id>
85       <url>${nexusproxy}/repositories/${nexus.repository.snapshot}/</url>
86     </snapshotRepository>
87     <!-- Site deployment -->
88     <site>
89       <id>website</id>
90       <url>${sitedeploy}</url>
91     </site>
92   </distributionManagement>
93 </project>