- add support for importing tarballs
- show list of files in a tarball in the web UI - show more information about archive files, if it's available
This commit is contained in:
parent
862c88ab6b
commit
ec58365837
4 changed files with 100 additions and 11 deletions
|
|
@ -652,6 +652,7 @@ CREATE TABLE archivetypes (
|
|||
insert into archivetypes (name, description, extensions) values ('jar', 'Jar files', 'jar war rar ear');
|
||||
insert into archivetypes (name, description, extensions) values ('zip', 'Zip archives', 'zip');
|
||||
insert into archivetypes (name, description, extensions) values ('pom', 'Maven Project Object Management files', 'pom');
|
||||
insert into archivetypes (name, description, extensions) values ('tar', 'Tar files', 'tar tar.gz tar.bz2');
|
||||
|
||||
-- Do we want to enforce a constraint that a build can only generate one
|
||||
-- archive with a given name?
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue