Skip to content

Commit

Permalink
Fix documentation assembly descriptor
Browse files Browse the repository at this point in the history
  • Loading branch information
fmbenhassine committed Sep 8, 2023
1 parent b2d76c7 commit 51417e1
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 39 deletions.
2 changes: 1 addition & 1 deletion spring-batch-docs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<version>${maven-assembly-plugin.version}</version>
<configuration>
<descriptors>
<descriptor>src/assembly/docs.xml</descriptor>
<descriptor>src/assembly/javadocs.xml</descriptor>
<descriptor>src/assembly/schemas.xml</descriptor>
</descriptors>
<finalName>spring-batch-${project.version}</finalName>
Expand Down
38 changes: 0 additions & 38 deletions spring-batch-docs/src/assembly/docs.xml

This file was deleted.

15 changes: 15 additions & 0 deletions spring-batch-docs/src/assembly/javadocs.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.1.0 http://maven.apache.org/xsd/assembly-2.1.0.xsd">
<id>javadocs</id>
<formats>
<format>zip</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<fileSets>
<fileSet>
<directory>../target/site/apidocs</directory>
<outputDirectory>api</outputDirectory>
</fileSet>
</fileSets>
</assembly>

0 comments on commit 51417e1

Please sign in to comment.