Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Conflicts:
	docs/maven.md
	src/main/java/org/vafer/jdeb/producers/DataProducerFile.java
  • Loading branch information
Roman Kashitsyn committed Dec 16, 2013
commit bbf1c1ad25cd27b141e5973cc7d70575a951faf4
14 changes: 14 additions & 0 deletions docs/maven.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ type | Type of the data source. (archive, directory, file, link, man
missingSrc | Fail if src file/folder is missing (ignore or fail) | No; defaults to `fail`
includes | A comma seperated list of files to include from the directory or tarball | No; defaults to all files
excludes | A comma seperated list of files to exclude from the directory or tarball | No; defaults to no exclutions
conffile | A boolean value to define if the files should be included in the conffiles | No; defaults to `false`
mapper | The files to exclude from the directory or tarball | No
paths/(path..) | One or more string literal paths that will created in the package | No; Yes for type `template`

Expand Down Expand Up @@ -222,6 +223,19 @@ include a directory, a tarball, and a file in your deb package and then sign it
<type>man-page</type>
<src>/a/path/to/manpage.1</src>
</data>

<!-- Conffiles example -->
<data>
<src>${project.build.directory}/data</src>
<type>directory</type>
<includes/>
<excludes>**/.svn</excludes>
<conffile>true</conffile>
<mapper>
<type>ls</type>
<src>mapping.txt</src>
</mapper>
</data>
</dataSet>

</configuration>
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.