playerglobal-source-gen: add to Maven build
diff --git a/playerglobal-source-gen/pom.xml b/playerglobal-source-gen/pom.xml
index 4926a6f..3550979 100644
--- a/playerglobal-source-gen/pom.xml
+++ b/playerglobal-source-gen/pom.xml
@@ -21,53 +21,33 @@
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
   <modelVersion>4.0.0</modelVersion>
 
-  <groupId>org.apache.royale</groupId>
+  <parent>
+    <groupId>org.apache.royale.compiler</groupId>
+    <artifactId>royale-compiler-parent</artifactId>
+    <version>0.9.8-SNAPSHOT</version>
+  </parent>
+
   <artifactId>playerglobal-source-gen</artifactId>
-  <name>playerglobal-source-gen</name>
-  <version>1.0.0</version>
+  <version>0.9.8-SNAPSHOT</version>
   
   <build>
     <finalName>${project.artifactId}</finalName>
     <plugins>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-compiler-plugin</artifactId>
-        <version>3.8.1</version>
-        <configuration>
-          <source>1.6</source>
-          <target>1.6</target>
-        </configuration>
-      </plugin>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-jar-plugin</artifactId>
-        <version>3.2.0</version>
         <configuration>
           <archive>
             <manifest>
               <mainClass>org.apache.royale.playerglobal.PlayerglobalSourceGen</mainClass>
-              <addClasspath>true</addClasspath>
             </manifest>
+            <manifestEntries>
+              <Sealed>false</Sealed>
+              <Class-Path>../../lib/external/commons-io.jar dom4j.jar</Class-Path>
+            </manifestEntries>
           </archive>
         </configuration>
       </plugin>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-dependency-plugin</artifactId>
-        <version>2.10</version>
-        <executions>
-          <execution>
-            <id>copy-dependencies</id>
-            <phase>package</phase>
-            <goals>
-              <goal>copy-dependencies</goal>
-            </goals>
-            <configuration>
-              <outputDirectory>${project.build.directory}</outputDirectory>
-            </configuration>
-          </execution>
-        </executions>
-      </plugin>
     </plugins>
   </build>
 
diff --git a/pom.xml b/pom.xml
index 961913e..84b4a2f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -106,6 +106,7 @@
     <module>swfutils</module>

     <module>debugger</module>

     <module>flex-compiler-oem</module>

+    <module>playerglobal-source-gen</module>

     <module>royale-ant-tasks</module>

     <module>royaleunit-ant-tasks</module>

     <!--<module>royale-maven-extension</module>-->