Merge "Remove ConcurrentHashMaps from LBaaS classes"
[neutron.git] / parent / 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   <prerequisites>
5     <maven>3.0</maven>
6   </prerequisites>
7
8   <parent>
9     <groupId>org.opendaylight.odlparent</groupId>
10     <artifactId>odlparent</artifactId>
11     <version>1.6.0-SNAPSHOT</version>
12     <relativePath/>
13   </parent>
14
15   <groupId>org.opendaylight.neutron</groupId>
16   <artifactId>project-neutron-parent</artifactId>
17   <version>0.6.0-SNAPSHOT</version>
18   <packaging>pom</packaging>
19
20   <properties>
21     <aaa.version>0.2.0-SNAPSHOT</aaa.version>
22     <ietf-yang-types.version>2010.09.24.7-SNAPSHOT</ietf-yang-types.version>
23     <ietf-inet-types.version>2010.09.24.7-SNAPSHOT</ietf-inet-types.version>
24     <salGeneratorPath>src/main/yang-gen-sal</salGeneratorPath>
25     <yang.binding.version>0.8.0-SNAPSHOT</yang.binding.version>
26     <yangtools.version>0.8.0-SNAPSHOT</yangtools.version>
27     <yang-ext.version>2013.09.07.7-SNAPSHOT</yang-ext.version>
28     <sonar.jacoco.reportPath>target/jacoco.exec</sonar.jacoco.reportPath>
29     <sonar.jacoco.itReportPath>../target/jacoco-it.exec</sonar.jacoco.itReportPath>
30     <checkstyle.location>${project.build.resources[0].directory}</checkstyle.location>
31   </properties>
32   <scm>
33     <connection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</connection>
34     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</developerConnection>
35     <tag>HEAD</tag>
36   </scm>
37
38   <dependencyManagement>
39     <dependencies>
40       <dependency>
41         <groupId>org.opendaylight.mdsal</groupId>
42         <artifactId>yang-binding</artifactId>
43         <version>${yang.binding.version}</version>
44       </dependency>
45       <dependency>
46         <groupId>org.opendaylight.yangtools</groupId>
47         <artifactId>yang-common</artifactId>
48         <version>${yang.binding.version}</version>
49       </dependency>
50       <dependency>
51         <groupId>org.opendaylight.mdsal.model</groupId>
52         <artifactId>ietf-inet-types</artifactId>
53         <version>${ietf-inet-types.version}</version>
54       </dependency>
55       <dependency>
56         <groupId>org.opendaylight.mdsal.model</groupId>
57         <artifactId>ietf-yang-types</artifactId>
58         <version>${ietf-yang-types.version}</version>
59       </dependency>
60       <dependency>
61         <groupId>org.opendaylight.mdsal.model</groupId>
62         <artifactId>yang-ext</artifactId>
63         <version>${yang-ext.version}</version>
64       </dependency>
65     </dependencies>
66   </dependencyManagement>
67
68   <build>
69     <pluginManagement>
70       <plugins>
71         <plugin>
72           <artifactId>maven-checkstyle-plugin</artifactId>
73           <configuration>
74             <configLocation>${checkstyle.location}/java_rules.xml</configLocation>
75             <excludes>org/opendaylight/yang/gen/**,**/yang/**</excludes>
76             <consoleOutput>true</consoleOutput>
77           </configuration>
78           <executions>
79             <execution>
80               <goals>
81                 <goal>check</goal>
82               </goals>
83               <phase>process-sources</phase>
84             </execution>
85           </executions>
86         </plugin>
87         <plugin>
88           <groupId>org.apache.maven.plugins</groupId>
89           <artifactId>maven-source-plugin</artifactId>
90           <version>2.2.1</version>
91         </plugin>
92         <plugin>
93           <groupId>org.apache.maven.plugins</groupId>
94           <artifactId>maven-jar-plugin</artifactId>
95           <version>2.4</version>
96         </plugin>
97         <plugin>
98           <groupId>org.opendaylight.yangtools</groupId>
99           <artifactId>yang-maven-plugin</artifactId>
100           <version>${yangtools.version}</version>
101         </plugin>
102         <plugin>
103           <groupId>org.apache.felix</groupId>
104           <artifactId>maven-bundle-plugin</artifactId>
105           <version>${maven.bundle.version}</version>
106         </plugin>
107 <!--        <plugin>
108           <groupId>org.apache.maven.plugins</groupId>
109           <artifactId>maven-surefire-plugin</artifactId>
110           <version>${maven.surefire.version}</version>
111           <configuration>
112             <argLine>${surefireArgLine}</argLine>
113             <skipTests>${skip.unit.tests}</skipTests>
114             <excludes>
115                <exclude>**/IT*.java</exclude>
116             </excludes>
117           </configuration>
118         </plugin> -->
119       </plugins>
120     </pluginManagement>
121     <plugins>
122       <plugin>
123         <groupId>org.apache.felix</groupId>
124         <artifactId>maven-bundle-plugin</artifactId>
125         <extensions>true</extensions>
126         <configuration>
127           <instructions>
128             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
129           </instructions>
130           <manifestLocation>${project.build.directory}/META-INF</manifestLocation>
131         </configuration>
132       </plugin>
133       <plugin>
134         <groupId>org.apache.maven.plugins</groupId>
135         <artifactId>maven-compiler-plugin</artifactId>
136         <inherited>true</inherited>
137         <configuration>
138           <source>1.7</source>
139           <target>1.7</target>
140         </configuration>
141       </plugin>
142       <plugin>
143         <artifactId>maven-source-plugin</artifactId>
144         <executions>
145           <execution>
146             <id>attach-sources</id>
147             <phase>deploy</phase>
148             <goals>
149               <goal>jar-no-fork</goal>
150             </goals>
151           </execution>
152         </executions>
153       </plugin>
154     </plugins>
155   </build>
156 </project>