Skip to content

Commit

Permalink
tomcat service: bump default tomcat to 8.5
Browse files Browse the repository at this point in the history
See migration changelogs at
- 7.0 -> 8.0: https://tomcat.apache.org/migration-8.html
- 8.0 -> 8.5: https://tomcat.apache.org/migration-85.html
  • Loading branch information
danbst authored and bjornfor committed Sep 9, 2016
1 parent a01d4ee commit 63f9ef9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nixos/modules/services/web-servers/tomcat.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ in

package = mkOption {
type = types.package;
default = pkgs.tomcat7;
defaultText = "pkgs.tomcat7";
example = lib.literalExample "pkgs.tomcat8";
default = pkgs.tomcat85;
defaultText = "pkgs.tomcat85";
example = lib.literalExample "pkgs.tomcatUnstable";
description = ''
Which tomcat package to use.
'';
Expand Down

0 comments on commit 63f9ef9

Please sign in to comment.