forked from Kong/kong-plugin-acme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkong-plugin-acme-0.2.11-1.rockspec
33 lines (33 loc) · 1.49 KB
/
kong-plugin-acme-0.2.11-1.rockspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package = "kong-plugin-acme"
-- The version '0.0.1' is the source code version, the trailing '1' is the version of this rockspec.
-- whenever the source version changes, the rockspec should be reset to 1. The rockspec version is only
-- updated (incremented) when this file changes, but the source remains the same.
version = "0.2.11-1"
source = {
url = "git+https://github.com/Kong/kong-plugin-acme.git",
tag = "0.2.10",
}
description = {
homepage = "https://github.com/Kong/kong-plugin-acme",
summary = "Let's Encrypt integration with Kong",
license = "Apache 2.0",
}
build = {
type = "builtin",
modules = {
["kong.plugins.acme.api"] = "kong/plugins/acme/api.lua",
["kong.plugins.acme.client"] = "kong/plugins/acme/client.lua",
["kong.plugins.acme.daos"] = "kong/plugins/acme/daos.lua",
["kong.plugins.acme.handler"] = "kong/plugins/acme/handler.lua",
["kong.plugins.acme.migrations.000_base_acme"] = "kong/plugins/acme/migrations/000_base_acme.lua",
["kong.plugins.acme.migrations.001_022_to_030"] = "kong/plugins/acme/migrations/001_022_to_030.lua",
["kong.plugins.acme.migrations.002_030_to_031"] = "kong/plugins/acme/migrations/002_030_to_031.lua",
["kong.plugins.acme.migrations.init"] = "kong/plugins/acme/migrations/init.lua",
["kong.plugins.acme.schema"] = "kong/plugins/acme/schema.lua",
["kong.plugins.acme.storage.kong"] = "kong/plugins/acme/storage/kong.lua"
}
}
dependencies = {
--"kong >= 1.2.0",
"lua-resty-acme ~> 0.5"
}