Skip to content
Open
Show file tree
Hide file tree
Changes from 4 commits
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
1 change: 1 addition & 0 deletions tomcat/available-versions
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
9.0.76
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

here you should list all the versions. For major version 9, you can get the list from here:
https://archive.apache.org/dist/tomcat/tomcat-9/ but you can omit the milestones (9.0.0.M*).

4 changes: 4 additions & 0 deletions tomcat/ext-mappings
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
windows=zip
mac=tar.gz
*=tar.gz

1 change: 1 addition & 0 deletions tomcat/urls
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
https://archive.apache.org/dist/tomcat/tomcat-${major}/v${version}/src/apache-tomcat-${version}-src.${ext}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Did you try to download tomcat manually, unpack and start it?
src stands for source(-code). Therefore this download URL leads to an archive containing the Java source code files of tomcat that need to be compiled and build before you can run them.
You should use bin instead of src and if I am not mistaken, you can use the regular zip distribution of tomcat that can run on all platforms so in ext-mappings you can just have one line *=.zip.

1 change: 1 addition & 0 deletions tomcat/versions-url
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
https://github.com/apache/tomcat/tags
1 change: 1 addition & 0 deletions tomcat/versions-url-op
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
grep "releases/tag/" | awk -F'/' '{print $6}' | awk -F '"' '{print $1}' | sort -rV