Simplify bundle plugin configuration
[bgpcep.git] / bgp / linkstate / pom.xml
index 48fa0a13fcdb2e7d665cc87ddf21ced9fea23774..984004d0aed197d70dbce88870e0f333a717d849 100644 (file)
@@ -4,9 +4,9 @@
        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 
        <parent>
-               <groupId>org.opendaylight.protocol</groupId>
+               <groupId>org.opendaylight.bgpcep</groupId>
                <artifactId>bgp-parent</artifactId>
-        <version>1.0</version>
+        <version>0.3.0-SNAPSHOT</version>
        </parent>
 
        <modelVersion>4.0.0</modelVersion>
     <dependencies>
                <dependency>
                        <groupId>${project.groupId}</groupId>
-                       <artifactId>concepts</artifactId>
-                       <version>1.0</version>
+                       <artifactId>bgp-concepts</artifactId>
                </dependency>
                <dependency>
                        <groupId>${project.groupId}</groupId>
-                       <artifactId>bgp-concepts</artifactId>
-                       <version>1.0</version>
+                       <artifactId>bgp-parser-api</artifactId>
+               </dependency>
+               <dependency>
+                       <groupId>${project.groupId}</groupId>
+                       <artifactId>bgp-parser-spi</artifactId>
+               </dependency>
+               <dependency>
+                       <groupId>${project.groupId}</groupId>
+                       <artifactId>bgp-rib-api</artifactId>
+               </dependency>
+               <dependency>
+                       <groupId>${project.groupId}</groupId>
+                       <artifactId>bgp-rib-spi</artifactId>
+        </dependency>
+
+               <dependency>
+                       <groupId>${project.groupId}</groupId>
+                       <artifactId>concepts</artifactId>
                </dependency>
                <dependency>
-                       <groupId>com.google.code.findbugs</groupId>
-                       <artifactId>jsr305</artifactId>
-                       <version>2.0.1</version>
+                       <groupId>${project.groupId}</groupId>
+                       <artifactId>rsvp-api</artifactId>
                </dependency>
+               <dependency>
+                       <groupId>${project.groupId}</groupId>
+                       <artifactId>util</artifactId>
+        </dependency>
+
+               <dependency>
+                       <groupId>org.slf4j</groupId>
+                       <artifactId>slf4j-api</artifactId>
+        </dependency>
+               <dependency>
+                       <groupId>com.google.guava</groupId>
+                       <artifactId>guava</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>org.opendaylight.yangtools</groupId>
+            <artifactId>yang-binding</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.opendaylight.yangtools</groupId>
+            <artifactId>yang-common</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.opendaylight.yangtools.model</groupId>
+            <artifactId>ietf-inet-types</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+         </dependency>
        </dependencies>
 
        <build>
                <plugins>
+                       <plugin>
+                <groupId>org.opendaylight.yangtools</groupId>
+                <artifactId>yang-maven-plugin</artifactId>
+            </plugin>
                        <plugin>
                                <groupId>org.apache.felix</groupId>
                                <artifactId>maven-bundle-plugin</artifactId>
-                               <version>${maven.bundle.version}</version>
                                <extensions>true</extensions>
                                <configuration>
                                        <instructions>
                                                <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
-                                               <Export-Package>
-                                                       org.opendaylight.protocol.bgp.linkstate
-                                               </Export-Package>
                                        </instructions>
                                </configuration>
                        </plugin>
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-checkstyle-plugin</artifactId>
-                               <version>${checkstyle.version}</version>
-                               <configuration>
-                                       <configLocation>build/checkstyle/checkstyle-checker-api.xml</configLocation>
-                                       <outputDirectory>${basedir}/target/checkstyle/report</outputDirectory>
-                               </configuration>
-                       </plugin>
                </plugins>
        </build>
-
-       <distributionManagement>
-               <site>
-                       <id>${project.artifactId}</id>
-                       <name>BGP-CONCEPTS Module site</name>
-                       <url>${basedir}/target/site/${project.artifactId}</url>
-               </site>
-       </distributionManagement>
-
 </project>