You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@karaf.apache.org by jb...@apache.org on 2012/12/19 14:55:47 UTC

svn commit: r1423862 - in /karaf/site/trunk: .gitignore pom.xml

Author: jbonofre
Date: Wed Dec 19 13:55:45 2012
New Revision: 1423862

URL: http://svn.apache.org/viewvc?rev=1423862&view=rev
Log:
Update the parent POM, and add the first scmpubsub configuration

Modified:
    karaf/site/trunk/.gitignore
    karaf/site/trunk/pom.xml

Modified: karaf/site/trunk/.gitignore
URL: http://svn.apache.org/viewvc/karaf/site/trunk/.gitignore?rev=1423862&r1=1423861&r2=1423862&view=diff
==============================================================================
--- karaf/site/trunk/.gitignore (original)
+++ karaf/site/trunk/.gitignore Wed Dec 19 13:55:45 2012
@@ -1 +1,5 @@
 target
+.classpath
+.project
+.idea
+*.i??

Modified: karaf/site/trunk/pom.xml
URL: http://svn.apache.org/viewvc/karaf/site/trunk/pom.xml?rev=1423862&r1=1423861&r2=1423862&view=diff
==============================================================================
--- karaf/site/trunk/pom.xml (original)
+++ karaf/site/trunk/pom.xml Wed Dec 19 13:55:45 2012
@@ -25,7 +25,7 @@
     <parent>
         <groupId>org.apache.karaf</groupId>
         <artifactId>karaf</artifactId>
-        <version>2.2.5</version>
+        <version>2.2.9</version>
     </parent>
 
     <modelVersion>4.0.0</modelVersion>
@@ -276,6 +276,7 @@
                             org.apache.commons.logging;provider=paxlogging;resolution:=optional,
                             org.apache.log4j;provider=paxlogging;resolution:=optional,
                             org.slf4j;provider=paxlogging;resolution:=optional;version="[1.5,2)",
+                            *
                         </Import-Package>
                         <Bundle-ClassPath>.,WEB-INF/classes</Bundle-ClassPath>
                         <Embed-Directory>WEB-INF/lib</Embed-Directory>
@@ -285,6 +286,19 @@
                     </instructions>
                 </configuration>
             </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-scm-publish-plugin</artifactId>
+                <version>1.0-beta-2</version>
+                <configuration>
+                    <checkinComment>[scm-publish] Updating main website contents</checkinComment>
+                    <pubScmUrl>scm:svn:https://svn.apache.org/repos/asf/karaf/site/production</pubScmUrl>
+                    <content>${project.build.directory}/sitegen</content>
+                    <ignorePathsToDelete>
+                        <ignorePathToDelete>docs/**</ignorePathToDelete>
+                    </ignorePathsToDelete>
+                </configuration>
+            </plugin>
         </plugins>
     </build>