Added support for overload/attached bit to BGP parser.
[bgpcep.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set smarttab sw=4 tabstop=4: -->
3 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5         <name>OpenDaylight protocols</name>
6         <url>index.html</url>
7         <modelVersion>4.0.0</modelVersion>
8         <groupId>org.opendaylight.bgpcep</groupId>
9         <artifactId>protocol-parent</artifactId>
10         <description>OpenDaylight BGP+PCEP protocol parent</description>
11         <version>0.2.0-SNAPSHOT</version>
12         <packaging>pom</packaging>
13
14         <properties>
15                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16                 <commonscodec.version>1.7</commonscodec.version>
17                 <dependency.version>2.8</dependency.version>
18                 <guava.version>13.0.1</guava.version>
19                 <java.version.source>1.7</java.version.source>
20                 <java.version.target>1.7</java.version.target>
21                 <junit.version>4.10</junit.version>
22                 <logback.version>1.0.7</logback.version>
23                 <maven.bundle.version>2.4.0</maven.bundle.version>
24                 <maven.compiler.version>3.1</maven.compiler.version>
25                 <maven.shade.version>2.1</maven.shade.version>
26                 <mockito.version>1.9.5</mockito.version>
27                 <nexusproxy>http://nexus.opendaylight.org/content</nexusproxy>
28                 <slf4j.version>1.7.2</slf4j.version>
29                 <surefire.version>2.15</surefire.version>
30         </properties>
31         <prerequisites>
32                 <maven>3.0.4</maven>
33         </prerequisites>
34
35         <modules>
36                 <module>bgp</module>
37                 <module>concepts</module>
38                 <module>framework</module>
39                 <module>mockito-configuration</module>
40                 <module>pcep</module>
41                 <module>util</module>
42         </modules>
43
44         <dependencies>
45                 <dependency>
46                         <groupId>junit</groupId>
47                         <artifactId>junit</artifactId>
48                         <version>${junit.version}</version>
49                         <scope>test</scope>
50                 </dependency>
51                 <dependency>
52                         <groupId>ch.qos.logback</groupId>
53                         <artifactId>logback-classic</artifactId>
54                         <version>${logback.version}</version>
55                         <scope>test</scope>
56                 </dependency>
57         </dependencies>
58         
59         <reporting>
60                 <plugins>
61                         <plugin>
62                                 <groupId>org.apache.maven.plugins</groupId>
63                                 <artifactId>maven-javadoc-plugin</artifactId>
64                                 <version>2.9.1</version>
65                         </plugin>
66                 </plugins>
67         </reporting>
68
69         <distributionManagement>
70                 <!-- OpenDayLight Released artifact -->
71                 <repository>
72                         <id>opendaylight-release</id>
73                         <url>${nexusproxy}/repositories/opendaylight.release/</url>
74                 </repository>
75                 <!-- OpenDayLight Snapshot artifact -->
76                 <snapshotRepository>
77                         <id>opendaylight-snapshot</id>
78                         <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
79                 </snapshotRepository>
80                 <site>
81                         <id>${project.artifactId}-site</id>
82                         <url>./</url>
83                 </site>
84         </distributionManagement>
85
86         <build>
87                 <plugins>
88                         <plugin>
89                                 <groupId>org.apache.maven.plugins</groupId>
90                                 <artifactId>maven-compiler-plugin</artifactId>
91                                 <version>${maven.compiler.version}</version>
92                                 <configuration>
93                                         <source>${java.version.source}</source>
94                                         <target>${java.version.target}</target>
95                                         <testSource>${java.version.source}</testSource>
96                                         <testTarget>${java.version.target}</testTarget>
97                                 </configuration>
98                         </plugin>
99                         <plugin>
100                                 <groupId>org.apache.maven.plugins</groupId>
101                                 <artifactId>maven-surefire-plugin</artifactId>
102                                 <version>${surefire.version}</version>
103                                 <configuration>
104                                         <redirectTestOutputToFile>true</redirectTestOutputToFile>
105                                         <parallel>classes</parallel>
106                                         <forkCount>1C</forkCount>
107                                         <reuseForks>false</reuseForks>
108                                         <perCoreThreadCount>true</perCoreThreadCount>
109                                         <threadCount>2</threadCount>
110                                 </configuration>
111                         </plugin>
112
113                         <plugin>
114                                 <groupId>org.apache.maven.plugins</groupId>
115                                 <artifactId>maven-dependency-plugin</artifactId>
116                                 <version>${dependency.version}</version>
117                                 <configuration>
118                                         <failOnWarning>true</failOnWarning>
119                                         <ignoreNonCompile>true</ignoreNonCompile>
120                                 </configuration>
121                         </plugin>
122             <plugin>
123                 <!-- Let eclipse know about the generated sources -->
124                 <groupId>org.codehaus.mojo</groupId>
125                 <artifactId>build-helper-maven-plugin</artifactId>
126                                 <version>1.8</version>
127                 <executions>
128                     <execution>
129                         <phase>generate-sources</phase>
130                         <goals>
131                             <goal>add-source</goal>
132                         </goals>
133                         <configuration>
134                             <sources>
135                                 <source>target/generated-sources/sal</source>
136                             </sources>
137                         </configuration>
138                     </execution>
139                 </executions>
140             </plugin>
141                 </plugins>
142                 <pluginManagement>
143                         <plugins>
144                                 <!--This plugin's configuration is used to store Eclipse m2e settings
145                                         only. It has no influence on the Maven build itself. -->
146                                 <plugin>
147                                         <groupId>org.eclipse.m2e</groupId>
148                                         <artifactId>lifecycle-mapping</artifactId>
149                                         <version>1.0.0</version>
150                                         <configuration>
151                                                 <lifecycleMappingMetadata>
152                                                         <pluginExecutions>
153                                                                 <pluginExecution>
154                                                                         <pluginExecutionFilter>
155                                                                                 <groupId>pl.project13.maven</groupId>
156                                                                                 <artifactId>git-commit-id-plugin</artifactId>
157                                                                                 <versionRange>[2.1.4,)</versionRange>
158                                                                                 <goals>
159                                                                                         <goal>revision</goal>
160                                                                                 </goals>
161                                                                         </pluginExecutionFilter>
162                                                                         <action>
163                                                                                 <ignore></ignore>
164                                                                         </action>
165                                                                 </pluginExecution>
166                                 <pluginExecution>
167                                     <pluginExecutionFilter>
168                                         <groupId>org.opendaylight.controller</groupId>
169                                         <artifactId>yang-maven-plugin</artifactId>
170                                         <versionRange>[0.5,)</versionRange>
171                                         <goals>
172                                             <goal>generate-sources</goal>
173                                         </goals>
174                                     </pluginExecutionFilter>
175                                     <action>
176                                         <ignore></ignore>
177                                     </action>
178                                 </pluginExecution>
179                                                         </pluginExecutions>
180                                                 </lifecycleMappingMetadata>
181                                         </configuration>
182                                 </plugin>
183                         </plugins>
184                 </pluginManagement>
185         </build>
186
187         <repositories>
188                 <repository>
189                         <id>opendaylight-snapshot</id>
190                         <name>opendaylight-snapshot</name>
191                         <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
192                 </repository>
193         </repositories>
194
195         <pluginRepositories>
196                 <pluginRepository>
197                         <id>opendaylight-snapshot</id>
198                         <name>opendaylight-snapshot</name>
199                         <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
200                 </pluginRepository>
201         </pluginRepositories>
202 </project>