I tried to update the S2 apps POM to bundle the source, as we do with
the S1 apps, but it didn't seem to work.

----

...

       </plugin>
        <!-- Include source code under WEB-INF/src/java -->
        <plugin>
           <artifactId>maven-antrun-plugin</artifactId>
           <executions>
              <execution>
                 <id>copy-sources</id>
                 <phase>process-sources</phase>
                 <configuration>
                    <tasks>
                       <copy
todir="${project.build.directory}/${pom.artifactId}/WEB-INF/src/java"
                             failonerror="false">
                          <fileset dir="${basedir}/src/main/java"/>
                       </copy>
                    </tasks>
                 </configuration>
                 <goals>
                    <goal>run</goal>
                 </goals>
              </execution>
           </executions>
        </plugin>
    </plugins>
 </build>

....

----

Is there something else we need to do?

-Ted.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to