-
Notifications
You must be signed in to change notification settings - Fork 0
/
kong-plugin-auth-providers-util-0.1.0-1.rockspec
36 lines (31 loc) · 1.46 KB
/
kong-plugin-auth-providers-util-0.1.0-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
34
35
36
package = "kong-plugin-auth-providers-util"
version = "0.1.0-1"
-- The version '0.1.0' 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.
-- Here we extract it from the package name.
local pluginName = package:match("^kong%-plugin%-(.+)$") -- "oauth2-social-login"
supported_platforms = {"linux", "macosx"}
source = {
-- these are initially not required to make it work
url = "git://github.com/shiva2991/kong-plugin-auth-providers-util",
tag = "v0.0"
}
description = {
summary = "A plugin which provide common functionality shared other authentication plugins.",
homepage = "http://rahogata.co.in",
license = "MIT"
}
dependencies = {
}
build = {
type = "builtin",
modules = {
["kong.plugins."..pluginName..".daos"] = "kong/plugins/"..pluginName.."/daos.lua",
["kong.plugins."..pluginName..".utils"] = "kong/plugins/"..pluginName.."/utils.lua",
["kong.plugins."..pluginName..".cassandra"] = "kong/plugins/"..pluginName.."/migrations/cassandra.lua",
["kong.plugins."..pluginName..".postgres"] = "kong/plugins/"..pluginName.."/migrations/postgres.lua",
["kong.plugins."..pluginName..".handler"] = "kong/plugins/"..pluginName.."/handler.lua",
["kong.plugins."..pluginName..".schema"] = "kong/plugins/"..pluginName.."/schema.lua"
}
}