├── .gitignore ├── JenkinsPluginResolver ├── JenkinsPluginResolver.py ├── __init__.py └── tests │ ├── test-update-center.json │ └── tests.py ├── LICENSE ├── README.md └── __init__.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypergig/jenkins-plugin-resolver/HEAD/.gitignore -------------------------------------------------------------------------------- /JenkinsPluginResolver/JenkinsPluginResolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypergig/jenkins-plugin-resolver/HEAD/JenkinsPluginResolver/JenkinsPluginResolver.py -------------------------------------------------------------------------------- /JenkinsPluginResolver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JenkinsPluginResolver/tests/test-update-center.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypergig/jenkins-plugin-resolver/HEAD/JenkinsPluginResolver/tests/test-update-center.json -------------------------------------------------------------------------------- /JenkinsPluginResolver/tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypergig/jenkins-plugin-resolver/HEAD/JenkinsPluginResolver/tests/tests.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypergig/jenkins-plugin-resolver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypergig/jenkins-plugin-resolver/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------