[526568] Ensuring examples zips are built and included.
diff --git a/examples/org.eclipse.uml2.examples.uml.ui/build-example-zips.xml b/examples/org.eclipse.uml2.examples.uml.ui/build-example-zips.xml
index c09dde7..b2a7389 100644
--- a/examples/org.eclipse.uml2.examples.uml.ui/build-example-zips.xml
+++ b/examples/org.eclipse.uml2.examples.uml.ui/build-example-zips.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
- Copyright (c) 2010, 2014 E.D.Willink, CEA, and others.
+ Copyright (c) 2010, 2017 E.D.Willink, CEA, and others.
  All rights reserved.   This program and the accompanying materials
  are made available under the terms of the Eclipse Public License v1.0
  which accompanies this distribution, and is available at
@@ -9,6 +9,7 @@
  Contributors: 
    E.D.Willink - initial API and implementation
    Christian W. Damus (CEA) - adapted from OCL project for 382342
+   Kenn Hussey - 526568
 -->
 <project name="org.eclipse.uml2.examples.uml.ui" default="zip.examples" basedir=".">
 	<target name="init">
@@ -19,13 +20,13 @@
 	
 	<target name="zip.examples" depends="init">
 		<!-- UML2 examples -->
-		<eclipse.convertPath resourcePath="org.eclipse.uml2.examples.gettingstarted" property="projectDir"/>
-		<zip destfile="zips/gettingstarted.zip" basedir="${projectDir}">
+		<!--eclipse.convertPath resourcePath="org.eclipse.uml2.examples.gettingstarted" property="projectDir"/-->
+		<zip destfile="zips/gettingstarted.zip" basedir="../org.eclipse.uml2.examples.gettingstarted">
 			<patternset refid="zip.excludes"/>
 		</zip>
 		
-        <eclipse.convertPath resourcePath="org.eclipse.uml2.examples.introtoprofiles" property="projectDir"/>
-        <zip destfile="zips/introtoprofiles.zip" basedir="${projectDir}">
+        <!--eclipse.convertPath resourcePath="org.eclipse.uml2.examples.introtoprofiles" property="projectDir"/-->
+        <zip destfile="zips/introtoprofiles.zip" basedir="../org.eclipse.uml2.examples.introtoprofiles">
             <patternset refid="zip.excludes"/>
         </zip>
 	</target>
diff --git a/examples/org.eclipse.uml2.examples.uml.ui/pom.xml b/examples/org.eclipse.uml2.examples.uml.ui/pom.xml
new file mode 100644
index 0000000..bddfbeb
--- /dev/null
+++ b/examples/org.eclipse.uml2.examples.uml.ui/pom.xml
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.eclipse.uml2</groupId>
+  <artifactId>org.eclipse.uml2.examples.uml.ui</artifactId>
+  <version>5.4.0-SNAPSHOT</version>
+  <packaging>eclipse-plugin</packaging>
+  <parent>
+    <groupId>org.eclipse.uml2.examples</groupId>
+    <artifactId>examples</artifactId>
+    <version>5.4.0-SNAPSHOT</version>
+  </parent>
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-antrun-plugin</artifactId>
+        <executions>
+          <execution>
+            <phase>generate-sources</phase>
+            <configuration>
+              <target>
+                <ant antfile="build-example-zips.xml"/>
+              </target>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+</project>
\ No newline at end of file
diff --git a/releng/org.eclipse.uml2.releng.tycho/pom.xml b/releng/org.eclipse.uml2.releng.tycho/pom.xml
index abd42a0..cbd0109 100644
--- a/releng/org.eclipse.uml2.releng.tycho/pom.xml
+++ b/releng/org.eclipse.uml2.releng.tycho/pom.xml
@@ -56,6 +56,7 @@
     <maven-install-version>2.5.1</maven-install-version>
     <maven-deploy-version>2.8.1</maven-deploy-version>
     <maven-site-version>3.4</maven-site-version>
+    <maven-antrun-version>1.7</maven-antrun-version>
     <maven-resources-version>2.6</maven-resources-version>
     <maven-surefire-version>2.17</maven-surefire-version>
 
@@ -220,6 +221,11 @@
         </plugin>
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-antrun-plugin</artifactId>
+          <version>${maven-antrun-version}</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-resources-plugin</artifactId>
           <version>${maven-resources-version}</version>
           <configuration>