Skip site generation for karaf-maven-plugin 64/52064/1
authorStephen Kitt <skitt@redhat.com>
Mon, 20 Feb 2017 09:19:34 +0000 (10:19 +0100)
committerStephen Kitt <skitt@redhat.com>
Mon, 20 Feb 2017 09:20:19 +0000 (10:20 +0100)
Change-Id: I58f384df87542bb7b9318da7990ca92093255e50
Signed-off-by: Stephen Kitt <skitt@redhat.com>
karaf/karaf-maven-plugin/pom.xml

index 30e1d95cf4a3dd1d3586ddf131b4cf0f40c3085f..20dbb0b3c8087e48c0750fac2c4e5c647ee41112 100644 (file)
     <properties>
         <!-- This doesn't react too well with our build setup -->
         <invoker.skip>true</invoker.skip>
-
-        <!-- Variables required for Maven Site generation -->
-        <nexus.site.url>file:${user.dir}/target/staged-site</nexus.site.url>
-        <odl.site.url>https://nexus.opendaylight.org/content/sites/site/</odl.site.url>
-        <stream>latest</stream><!-- CI should pass in -Dstream={stream} -->
     </properties>
 
     <build>
                     </execution>
                 </executions>
             </plugin>
+            <plugin>
+                <artifactId>maven-site-plugin</artifactId>
+                <configuration>
+                    <skip>true</skip>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
 
         </plugins>
     </reporting>
 
-    <!--
-        Maven Site Configuration
-
-        The following configuration is necessary for maven-site-plugin to
-        correctly identify the correct deployment path for OpenDaylight Maven
-        sites.
-    -->
-    <url>${odl.site.url}/${project.groupId}/${stream}/</url>
-
-    <distributionManagement>
-        <site>
-            <id>opendaylight-site</id>
-            <url>${nexus.site.url}/</url>
-        </site>
-    </distributionManagement>
-
 </project>