Revert "Bump all artifacts to 0.6.0-SNAPSHOT"
[yangtools.git] / restconf / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3
4     <parent>
5         <groupId>org.opendaylight.yangtools</groupId>
6         <artifactId>yangtools</artifactId>
7         <version>0.1.1-SNAPSHOT</version>
8     </parent>
9
10     <modelVersion>4.0.0</modelVersion>
11     <artifactId>restconf-parent</artifactId>
12     <packaging>pom</packaging>
13
14     <modules>
15         <module>restconf-client-api</module>
16     </modules>
17
18     <dependencyManagement>
19         <dependencies>
20             <dependency>
21                 <groupId>org.opendaylight.yangtools</groupId>
22                 <artifactId>yang-common</artifactId>
23                 <version>0.5.9-SNAPSHOT</version>
24             </dependency>
25             <dependency>
26                 <groupId>org.opendaylight.yangtools</groupId>
27                 <artifactId>yang-data-api</artifactId>
28                 <version>0.5.9-SNAPSHOT</version>
29             </dependency>
30             <dependency>
31                 <groupId>org.opendaylight.yangtools</groupId>
32                 <artifactId>yang-data-impl</artifactId>
33                 <version>0.5.9-SNAPSHOT</version>
34             </dependency>
35             <dependency>
36                 <groupId>org.opendaylight.yangtools</groupId>
37                 <artifactId>yang-model-api</artifactId>
38                 <version>${project.version}</version>
39             </dependency>
40             <dependency>
41                 <groupId>org.opendaylight.yangtools</groupId>
42                 <artifactId>yang-binding</artifactId>
43                 <version>0.6.0-SNAPSHOT</version>
44             </dependency>
45         </dependencies>
46     </dependencyManagement>
47
48     <build>
49         <plugins>
50             <plugin>
51                 <groupId>org.apache.maven.plugins</groupId>
52                 <artifactId>maven-compiler-plugin</artifactId>
53                 <version>2.0</version>
54                 <inherited>true</inherited>
55                 <configuration>
56                     <source>1.7</source>
57                     <target>1.7</target>
58                 </configuration>
59             </plugin>
60             <plugin>
61                     <groupId>org.apache.felix</groupId>
62                     <artifactId>maven-bundle-plugin</artifactId>
63                 </plugin>
64             <plugin>
65                 <groupId>org.apache.maven.plugins</groupId>
66                 <artifactId>maven-javadoc-plugin</artifactId>
67                 <configuration>
68                     <stylesheet>maven</stylesheet>
69                 </configuration>
70                 <executions>
71                     <execution>
72                         <goals>
73                             <goal>aggregate</goal>
74                         </goals>
75                         <phase>site</phase>
76                     </execution>
77                 </executions>
78             </plugin>
79         </plugins>
80         <pluginManagement>
81             <plugins>
82                 <plugin>
83                     <groupId>org.apache.felix</groupId>
84                     <artifactId>maven-bundle-plugin</artifactId>
85                     <version>${maven.bundle.version}</version>
86                     <extensions>true</extensions>
87                 </plugin>
88                 <plugin>
89                     <groupId>org.eclipse.m2e</groupId>
90                     <artifactId>lifecycle-mapping</artifactId>
91                     <version>1.0.0</version>
92                     <configuration>
93                         <lifecycleMappingMetadata>
94                             <pluginExecutions>
95                                 <pluginExecution>
96                                     <pluginExecutionFilter>
97                                         <groupId>org.apache.felix</groupId>
98                                         <artifactId>maven-bundle-plugin</artifactId>
99                                         <versionRange>[1.0,)</versionRange>
100                                         <goals>
101                                             <goal>manifest</goal>
102                                         </goals>
103                                     </pluginExecutionFilter>
104                                     <action>
105                                         <execute></execute>
106                                     </action>
107                                 </pluginExecution>
108                             </pluginExecutions>
109                         </lifecycleMappingMetadata>
110                     </configuration>
111                 </plugin>
112             </plugins>
113         </pluginManagement>
114     </build>
115
116     <reporting>
117         <plugins>
118             <plugin>
119                 <groupId>org.codehaus.mojo</groupId>
120                 <artifactId>findbugs-maven-plugin</artifactId>
121                 <version>2.4.0</version>
122                 <configuration>
123                     <effort>Max</effort>
124                     <threshold>Low</threshold>
125                     <goal>site</goal>
126                 </configuration>
127             </plugin>
128             <plugin>
129                 <groupId>org.codehaus.mojo</groupId>
130                 <artifactId>jdepend-maven-plugin</artifactId>
131                 <version>2.0-beta-2</version>
132             </plugin>
133         </plugins>
134     </reporting>
135
136     <version>0.2.0-SNAPSHOT</version>
137 </project>
138