Fix declaration of annotation processor
diff --git a/maven_rt_plugin_config-master/pom.xml b/maven_rt_plugin_config-master/pom.xml
index 6bf8970..23c5d5f 100644
--- a/maven_rt_plugin_config-master/pom.xml
+++ b/maven_rt_plugin_config-master/pom.xml
@@ -1,7 +1,13 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
-  ~ Copyright (c) BSI Business Systems Integration AG. All rights reserved.
-  ~ http://www.bsiag.com/
+  ~ Copyright (c) 2010-2020 BSI Business Systems Integration AG.
+  ~ 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
+  ~ http://www.eclipse.org/legal/epl-v10.html
+  ~
+  ~ Contributors:
+  ~     BSI Business Systems Integration AG - initial API and implementation
   -->
 <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>
@@ -327,6 +333,13 @@
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-compiler-plugin</artifactId>
             <configuration>
+              <annotationProcessorPaths>
+                <path>
+                  <groupId>org.eclipse.scout.rt</groupId>
+                  <artifactId>org.eclipse.scout.jaxws.apt</artifactId>
+                  <version>${org.eclipse.scout.rt.version}</version>
+                </path>
+              </annotationProcessorPaths>
               <compilerArgs>
                 <arg>-AconsoleLog=${jaxws.apt.consoleLog}</arg>
                 <arg>-XprintProcessorInfo</arg>
@@ -385,7 +398,6 @@
               <!-- WSIMPORT artifacts -->
               <execution>
                 <id>copy-wsimport-artifacts</id>
-                <!-- must not be 'process-resources' because APT files are only generated in compile phase -->
                 <goals>
                   <goal>copy-resources</goal>
                 </goals>
@@ -405,7 +417,7 @@
               <!-- APT artifacts -->
               <execution>
                 <id>copy-apt-artifacts</id>
-                <!-- must not be 'process-resources' because APT files are only generated in compile phase -->
+                <!-- must not be 'process-classes' because APT files are only generated in compile phase -->
                 <goals>
                   <goal>copy-resources</goal>
                 </goals>
diff --git a/maven_sdk_plugin_config-master/pom.xml b/maven_sdk_plugin_config-master/pom.xml
index 894068a..1406f4d 100644
--- a/maven_sdk_plugin_config-master/pom.xml
+++ b/maven_sdk_plugin_config-master/pom.xml
@@ -199,7 +199,7 @@
             <artifactId>maven-jar-plugin</artifactId>
             <configuration>
               <archive>
-                <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
+                <manifestFile>${basedir}/META-INF/MANIFEST.MF</manifestFile>
               </archive>
             </configuration>
           </plugin>