Index: manual/src/main/webapp/users-guide/kar.conf
===================================================================
--- manual/src/main/webapp/users-guide/kar.conf	(revision 1152491)
+++ manual/src/main/webapp/users-guide/kar.conf	(working copy)
@@ -1,5 +1,3 @@
-
-
 h1. Karaf Archives (KAR)
 
 Karaf provides a specific archive format named the KAR (Karaf ARchive).
@@ -18,71 +16,6 @@
 
 You can create a kar file by hand, just by zip compressing a directory representing the kar content.
 
-You can also use the Karaf features maven plugin. The features maven plugin provides an archive-kar goal.
-
-The kar-archive goal:
-1. Reads all features specified in the features descriptor.
-2. For each feature, it resolves the bundles defined in the feature.
-3. All bundles are packaged into the kar archive.
-
-For instance, you can use the following POM to create a kar:
-
-{code}
-<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
-
-    <modelVersion>4.0.0</modelVersion>
-
-    <groupId>my.groupId</groupId>
-    <artifactId>my-kar</artifactId>
-    <version>1.0</version>
-    <packaging>pom</packaging>
-
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.karaf.tooling</groupId>
-                <artifactId>features-maven-plugin</artifactId>
-                <version>2.1.99-SNAPSHOT</version>
-                <executions>
-                    <execution>
-                        <id>archive-kar</id>
-                        <goals>
-                            <goal>archive-kar</goal>
-                        </goals>
-                        <configuration>
-                            <featuresFile>src/main/resources/features.xml</featuresFile>
-                        </configuration>
-                    </execution>
-                </executions>
-            </plugin>
-        </plugins>
-    </build>
-
-</project>
-{code}
-
-For the example, the features descriptor is very simple:
-
-{code}
-<?xml version="1.0" encoding="UTF-8"?>
-<features>
-
-   <feature name="my" version="1.0">
-      <bundle>mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.commons-collections/3.2.1_1</bundle>
-   </feature>
-
-</features>
-{code}
-
-To create the kar archive, simply type:
-
-{code}
-mvn install
-{code}
-
-and you will have your kar in the {{target}} directory.
-
 h2. Deploy a kar archive
 
 Karaf provides a KAR deployer:
