Move the correct incap dependency to the AutoFactory `annotationProcessorPath`.

This is another stab at #1071. As noted by @tbroyer, the previous change moved the wrong dependency.

RELNOTES=n/a
PiperOrigin-RevId: 368884032
diff --git a/factory/pom.xml b/factory/pom.xml
index 4d61db8..1003bb2 100644
--- a/factory/pom.xml
+++ b/factory/pom.xml
@@ -85,7 +85,7 @@
     </dependency>
     <dependency>
       <groupId>net.ltgt.gradle.incap</groupId>
-      <artifactId>incap-processor</artifactId>
+      <artifactId>incap</artifactId>
       <version>0.3</version>
       <scope>provided</scope>
     </dependency>
@@ -161,7 +161,7 @@
             </path>
             <path>
               <groupId>net.ltgt.gradle.incap</groupId>
-              <artifactId>incap</artifactId>
+              <artifactId>incap-processor</artifactId>
               <version>0.3</version>
             </path>
           </annotationProcessorPaths>