Skip to content

Commit

Permalink
FOP-3160: Rename tools to avoid conflicts with core module
Browse files Browse the repository at this point in the history
  • Loading branch information
simonsteiner1984 committed Mar 5, 2024
1 parent 3133a01 commit de9d1b1
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion fop-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@
</goals>
<configuration>
<target>
<taskdef name="collectEvents" classname="org.apache.fop.tools.EventProducerCollectorTask" classpathref="maven.compile.classpath"/>
<taskdef name="collectEvents" classname="org.apache.fop.eventtools.EventProducerCollectorTask" classpathref="maven.compile.classpath"/>
<collectEvents destdir="${project.build.outputDirectory}">
<fileset dir="${project.basedir}/src/main/java">
<include name="**/accessibility/AccessibilityEventProducer.java"/>
Expand Down
2 changes: 1 addition & 1 deletion fop-events/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
</goals>
<configuration>
<target>
<taskdef name="collectEvents" classname="org.apache.fop.tools.EventProducerCollectorTask">
<taskdef name="collectEvents" classname="org.apache.fop.eventtools.EventProducerCollectorTask">
<classpath>
<path refid="maven.compile.classpath"/>
<path refid="maven.test.classpath"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

/* $Id$ */

package org.apache.fop.tools;
package org.apache.fop.eventtools;

/**
* This exception is used to indicate a violation of the conventions for event producers.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

/* $Id$ */

package org.apache.fop.tools;
package org.apache.fop.eventtools;

import java.io.File;
import java.io.IOException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

/* $Id$ */

package org.apache.fop.tools;
package org.apache.fop.eventtools;

import java.io.File;
import java.io.FileNotFoundException;
Expand Down
2 changes: 1 addition & 1 deletion fop/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ list of possible build targets.
<include name="**/tools/*.xsl"/>
</fileset>
</copy>
<taskdef name="eventResourceGenerator" classname="org.apache.fop.tools.EventProducerCollectorTask">
<taskdef name="eventResourceGenerator" classname="org.apache.fop.eventtools.EventProducerCollectorTask">
<classpath>
<path refid="libs-tools-build-classpath"/>
<pathelement location="${build.classes.dir}"/>
Expand Down

0 comments on commit de9d1b1

Please sign in to comment.