Release yangtools
[yangtools.git] / xpath / yang-xpath-impl / pom.xml
index d23a5d4a65fb0ea21bc33356c760626c6713984e..c78603c6c98ee6527af5f6240af276fca4913942 100644 (file)
     <modelVersion>4.0.0</modelVersion>
     <parent>
         <groupId>org.opendaylight.yangtools</groupId>
-        <artifactId>bundle-parent</artifactId>
-        <version>7.0.4-SNAPSHOT</version>
-        <relativePath>../../bundle-parent</relativePath>
+        <artifactId>bnd-parent</artifactId>
+        <version>8.0.0</version>
+        <relativePath>../../bnd-parent</relativePath>
     </parent>
 
     <artifactId>yang-xpath-impl</artifactId>
-    <version>7.0.4-SNAPSHOT</version>
-    <packaging>bundle</packaging>
+    <version>8.0.0</version>
+    <packaging>jar</packaging>
     <name>${project.artifactId}</name>
     <description>YANG XPath parser</description>
 
             <groupId>org.opendaylight.yangtools</groupId>
             <artifactId>yang-xpath-api</artifactId>
         </dependency>
-        <dependency>
-            <groupId>org.opendaylight.yangtools</groupId>
-            <artifactId>yang-xpath-antlr</artifactId>
-        </dependency>
 
         <dependency>
             <groupId>org.kohsuke.metainf-services</groupId>
             <artifactId>javax.inject</artifactId>
             <optional>true</optional>
         </dependency>
-        <dependency>
-            <groupId>org.osgi</groupId>
-            <artifactId>org.osgi.service.component.annotations</artifactId>
-        </dependency>
     </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.antlr</groupId>
+                <artifactId>antlr4-maven-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>antlr4</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <configuration>
+                    <listener>false</listener>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
 </project>