diff options
author | Glenn Adams <gadams@apache.org> | 2016-03-12 05:39:53 +0000 |
---|---|---|
committer | Glenn Adams <gadams@apache.org> | 2016-03-12 05:39:53 +0000 |
commit | 6a719897d6f98ba89aa08e2f97b2b801be066cbf (patch) | |
tree | bcce1bb7e9c6bde85e1167cff6218948f5be9f0a /fop-transcoder-allinone | |
parent | 2184238c210288138b6703bd63ccb2c8c40300f0 (diff) | |
download | xmlgraphics-fop-6a719897d6f98ba89aa08e2f97b2b801be066cbf.tar.gz xmlgraphics-fop-6a719897d6f98ba89aa08e2f97b2b801be066cbf.zip |
Configure fop-{sandbox,servlet,transcoder}, checkstyle, findbugs; fixups for ant targets.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/maven@1734671 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'fop-transcoder-allinone')
-rw-r--r-- | fop-transcoder-allinone/pom.xml | 93 | ||||
-rw-r--r-- | fop-transcoder-allinone/src/tools/resources/assembly/assembly.xml | 78 |
2 files changed, 171 insertions, 0 deletions
diff --git a/fop-transcoder-allinone/pom.xml b/fop-transcoder-allinone/pom.xml new file mode 100644 index 000000000..64d465182 --- /dev/null +++ b/fop-transcoder-allinone/pom.xml @@ -0,0 +1,93 @@ +<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/maven-v4_0_0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <groupId>org.apache.xmlgraphics</groupId> + <artifactId>fop-transcoder-allinone</artifactId> + <name>Apache FOP Transcoder All-In-One</name> + <description>XML Graphics Format Object Processor Transcoder All-In-One</description> + + <parent> + <groupId>org.apache.xmlgraphics</groupId> + <artifactId>fop-parent</artifactId> + <version>2.2.0-SNAPSHOT</version> + </parent> + + <dependencies> + <!-- fop deps --> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>fop-util</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>fop-events</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>fop-core</artifactId> + <version>${project.version}</version> + </dependency> + <!-- external deps --> + <dependency> + <groupId>commons-io</groupId> + <artifactId>commons-io</artifactId> + <version>${commons.io.version}</version> + </dependency> + <dependency> + <groupId>commons-logging</groupId> + <artifactId>commons-logging</artifactId> + <version>${commons.logging.version}</version> + </dependency> + <dependency> + <groupId>org.apache.avalon.framework</groupId> + <artifactId>avalon-framework-api</artifactId> + <version>${avalon.version}</version> + </dependency> + <dependency> + <groupId>org.apache.avalon.framework</groupId> + <artifactId>avalon-framework-impl</artifactId> + <version>${avalon.version}</version> + </dependency> + <!-- test deps --> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>${junit.version}</version> + <scope>test</scope> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-assembly-plugin</artifactId> + <executions> + <execution> + <id>package-all</id> + <phase>package</phase> + <goals> + <goal>single</goal> + </goals> + <configuration> + <addMavenDescriptor>false</addMavenDescriptor> + <appendAssemblyId>false</appendAssemblyId> + <archive> + <manifest> + <addDefaultImplementationEntries>true</addDefaultImplementationEntries> + </manifest> + </archive> + <descriptors> + <descriptor>src/tools/resources/assembly/assembly.xml</descriptor> + </descriptors> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + +</project> diff --git a/fop-transcoder-allinone/src/tools/resources/assembly/assembly.xml b/fop-transcoder-allinone/src/tools/resources/assembly/assembly.xml new file mode 100644 index 000000000..9913561e6 --- /dev/null +++ b/fop-transcoder-allinone/src/tools/resources/assembly/assembly.xml @@ -0,0 +1,78 @@ +<?xml version="1.0"?> +<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd"> + <id>all</id> + <formats> + <format>jar</format> + </formats> + <includeBaseDirectory>false</includeBaseDirectory> + <files> + <file> + <source>../LICENSE</source> + <outputDirectory>META-INF</outputDirectory> + </file> + <file> + <source>../NOTICE</source> + <outputDirectory>META-INF</outputDirectory> + </file> + </files> + <dependencySets> + <dependencySet> + <unpack>true</unpack> + <unpackOptions> + <includes> + <include>org/apache/avalon/framework/*</include> + <include>org/apache/avalon/framework/activity/*</include> + <include>org/apache/avalon/framework/configuration/*</include> + <include>org/apache/avalon/framework/container/*</include> + <include>org/apache/commons/io/*.class</include> + <include>org/apache/commons/io/filefilter/*.class</include> + <include>org/apache/commons/io/output/*.class</include> + <include>org/apache/commons/logging/**</include> + <include>org/apache/fop/Version.class</include> + <include>org/apache/fop/accessibility/StructureTreeElement.class</include> + <include>org/apache/fop/apps/FOPException.class</include> + <include>org/apache/fop/apps/Fop.class</include> + <include>org/apache/fop/apps/io/**</include> + <include>org/apache/fop/area/AreaTreeControl*</include> + <include>org/apache/fop/complexscripts/bidi/BidiClass.class</include> + <include>org/apache/fop/complexscripts/bidi/BidiConstants.class</include> + <include>org/apache/fop/complexscripts/bidi/UnicodeBidiAlgorithm.class</include> + <include>org/apache/fop/complexscripts/fonts/*.class</include> + <include>org/apache/fop/complexscripts/util/GlyphTester.class</include> + <include>org/apache/fop/events/EventProducer.class</include> + <include>org/apache/fop/fo/Constants.class</include> + <include>org/apache/fop/fo/FOTreeBuilder.class</include> + <include>org/apache/fop/fonts/**</include> + <include>org/apache/fop/image/loader/batik/BatikImageFlavors*.class</include> + <include>org/apache/fop/pdf/**</include> + <include>org/apache/fop/render/**Config**</include> + <include>org/apache/fop/render/gradient/**</include> + <include>org/apache/fop/render/intermediate/IFDocumentHandlerConfigurator.class</include> + <include>org/apache/fop/render/pdf/**</include> + <include>org/apache/fop/render/ps/**</include> + <include>org/apache/fop/svg/**</include> + <include>org/apache/fop/traits/Direction.class</include> + <include>org/apache/fop/traits/MinOptMax.class</include> + <include>org/apache/fop/traits/TraitEnum.class</include> + <include>org/apache/fop/util/*OutputStream.class</include> + <include>org/apache/fop/util/ASCII*.class</include> + <include>org/apache/fop/util/AbstractPaintingState**</include> + <include>org/apache/fop/util/CMYKColorSpace*.class</include> + <include>org/apache/fop/util/CharUtilities.class</include> + <include>org/apache/fop/util/Color*.class</include> + <include>org/apache/fop/util/DecimalFormatCache*.class</include> + <include>org/apache/fop/util/Finalizable.class</include> + <include>org/apache/fop/util/ImageObject.class</include> + <include>org/apache/fop/util/SubInputStream.class</include> + </includes> + <excludes> + <exclude>org/apache/fop/render/pdf/PSRenderer.class</exclude> + <exclude>org/apache/fop/render/pdf/PSXMLHandler*</exclude> + </excludes> + </unpackOptions> + <useTransitiveDependencies>false</useTransitiveDependencies> + </dependencySet> + </dependencySets> +</assembly> |