瀏覽代碼

FOP-3088: Remove duplicate classes from maven classpath

tags/2_9
Simon Steiner 9 月之前
父節點
當前提交
64585e4974
共有 1 個檔案被更改,包括 22 行新增21 行删除
  1. 22
    21
      fop/pom.xml

+ 22
- 21
fop/pom.xml 查看文件

@@ -43,32 +43,33 @@
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<mainClass>org.apache.fop.cli.Main</mainClass>
</manifest>
<manifestEntries>
<SpecificationTitle>XSL-FO - Extensible Stylesheet Language</SpecificationTitle>
<SpecificationVersion>1.1</SpecificationVersion>
<SpecificationVendor>World Wide Web Consortium</SpecificationVendor>
<SpecificationURL>http://www.w3.org/TR/xsl</SpecificationURL>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>package-all</id>
<phase>package</phase>
<phase>install</phase>
<goals>
<goal>single</goal>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<addMavenDescriptor>false</addMavenDescriptor>
<appendAssemblyId>false</appendAssemblyId>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<mainClass>org.apache.fop.cli.Main</mainClass>
</manifest>
<manifestEntries>
<SpecificationTitle>XSL-FO - Extensible Stylesheet Language</SpecificationTitle>
<SpecificationVersion>1.1</SpecificationVersion>
<SpecificationVendor>World Wide Web Consortium</SpecificationVendor>
<SpecificationURL>http://www.w3.org/TR/xsl</SpecificationURL>
</manifestEntries>
</archive>
<descriptors>
<descriptor>src/tools/resources/assembly/assembly.xml</descriptor>
</descriptors>
<outputDirectory>${project.build.directory}</outputDirectory>
<includeArtifactIds>fop-core,fop-util,fop-events</includeArtifactIds>
</configuration>
</execution>
</executions>

Loading…
取消
儲存