- Added the config to make the servlet.war available to the examples in "edgent-samples-topology"
diff --git a/topology/pom.xml b/topology/pom.xml
index 76231e2..0a2581c 100644
--- a/topology/pom.xml
+++ b/topology/pom.xml
@@ -32,6 +32,36 @@
 
   <name>Apache Edgent: Samples: Topology</name>
 
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-dependency-plugin</artifactId>
+        <version>3.0.1</version>
+        <executions>
+          <execution>
+            <id>copy</id>
+            <phase>generate-test-resources</phase>
+            <goals>
+              <goal>copy</goal>
+            </goals>
+            <configuration>
+              <artifactItems>
+                <artifactItem>
+                  <groupId>org.apache.edgent.console</groupId>
+                  <artifactId>edgent-console-servlets</artifactId>
+                  <version>${project.version}</version>
+                  <type>war</type>
+                  <outputDirectory>${project.build.directory}/war-resources</outputDirectory>
+                  <destFileName>servlets.war</destFileName>
+                </artifactItem>
+              </artifactItems>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
   <dependencies>
     <!-- parent pom has Edgent provider and SLF4J dependencies -->