veye 0.2.1 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +48 -41
- data/README.md +36 -17
- data/bin/veye +176 -47
- data/bundle +0 -0
- data/changelogs.md +19 -0
- data/lib/veye/api/package.rb +16 -2
- data/lib/veye/api/project.rb +41 -6
- data/lib/veye/base_executor.rb +81 -16
- data/lib/veye/github/delete.rb +2 -4
- data/lib/veye/github/import.rb +3 -4
- data/lib/veye/package/follow.rb +9 -9
- data/lib/veye/package/info.rb +4 -4
- data/lib/veye/package/references.rb +4 -6
- data/lib/veye/package/search.rb +2 -1
- data/lib/veye/package/versions.rb +37 -0
- data/lib/veye/package.rb +2 -0
- data/lib/veye/project/check.rb +19 -9
- data/lib/veye/project.rb +86 -2
- data/lib/veye/version.rb +1 -1
- data/lib/veye/views/base_csv.rb +1 -1
- data/lib/veye/views/github/info_csv.rb +1 -1
- data/lib/veye/views/github/info_pretty.rb +1 -1
- data/lib/veye/views/github/info_table.rb +2 -2
- data/lib/veye/views/package/info_csv.rb +4 -3
- data/lib/veye/views/package/info_pretty.rb +4 -2
- data/lib/veye/views/package/info_table.rb +4 -1
- data/lib/veye/views/package/versions_csv.rb +24 -0
- data/lib/veye/views/package/versions_json.rb +15 -0
- data/lib/veye/views/package/versions_pretty.rb +23 -0
- data/lib/veye/views/package/versions_table.rb +27 -0
- data/lib/veye/views/package.rb +4 -0
- data/lib/veye/views/project/dependency_csv.rb +18 -10
- data/lib/veye/views/project/dependency_pretty.rb +13 -2
- data/lib/veye/views/project/dependency_table.rb +8 -2
- data/lib/veye/views/project/info_csv.rb +9 -3
- data/lib/veye/views/project/info_markdown.rb +7 -2
- data/lib/veye/views/project/info_pretty.rb +6 -1
- data/lib/veye/views/project/info_table.rb +8 -3
- data/lib/veye.rb +26 -3
- data/test/api/package_test.rb +15 -0
- data/test/api/project_test.rb +83 -19
- data/test/base/base_executor_test.rb +87 -0
- data/test/fixtures/vcr_cassettes/github_delete.yml +7 -7
- data/test/fixtures/vcr_cassettes/github_import.yml +11 -13
- data/test/fixtures/vcr_cassettes/github_info.yml +10 -10
- data/test/fixtures/vcr_cassettes/github_list.yml +12 -12
- data/test/fixtures/vcr_cassettes/github_sync.yml +7 -7
- data/test/fixtures/vcr_cassettes/package_follow.yml +10 -10
- data/test/fixtures/vcr_cassettes/package_follow_status.yml +7 -7
- data/test/fixtures/vcr_cassettes/package_info.yml +17 -18
- data/test/fixtures/vcr_cassettes/package_info_default.yml +54 -0
- data/test/fixtures/vcr_cassettes/package_info_versioned.yml +54 -0
- data/test/fixtures/vcr_cassettes/package_reference.yml +8 -8
- data/test/fixtures/vcr_cassettes/package_search.yml +8 -8
- data/test/fixtures/vcr_cassettes/package_unfollow.yml +7 -7
- data/test/fixtures/vcr_cassettes/package_versions.yml +44 -0
- data/test/fixtures/vcr_cassettes/project_check_new.yml +33 -30
- data/test/fixtures/vcr_cassettes/project_check_update.yml +29 -30
- data/test/fixtures/vcr_cassettes/project_delete.yml +8 -8
- data/test/fixtures/vcr_cassettes/project_delete_for_licenses.yml +48 -0
- data/test/fixtures/vcr_cassettes/project_delete_for_update.yml +46 -0
- data/test/fixtures/vcr_cassettes/project_delete_merge_child.yml +46 -0
- data/test/fixtures/vcr_cassettes/project_delete_merge_parent.yml +46 -0
- data/test/fixtures/vcr_cassettes/project_get.yml +11 -12
- data/test/fixtures/vcr_cassettes/project_license.yml +11 -12
- data/test/fixtures/vcr_cassettes/project_license_command.yml +49 -0
- data/test/fixtures/vcr_cassettes/project_list.yml +14 -14
- data/test/fixtures/vcr_cassettes/project_merge.yml +46 -0
- data/test/fixtures/vcr_cassettes/project_unmerge.yml +46 -0
- data/test/fixtures/vcr_cassettes/project_update.yml +15 -16
- data/test/fixtures/vcr_cassettes/project_upload.yml +17 -16
- data/test/fixtures/vcr_cassettes/project_upload_for_licenses.yml +107 -0
- data/test/fixtures/vcr_cassettes/project_upload_for_update.yml +105 -0
- data/test/fixtures/vcr_cassettes/project_upload_merge_child.yml +65 -0
- data/test/fixtures/vcr_cassettes/project_upload_merge_parent.yml +104 -0
- data/test/fixtures/vcr_cassettes/project_upload_with_args.yml +106 -0
- data/test/fixtures/vcr_cassettes/services_ping.yml +6 -8
- data/test/fixtures/vcr_cassettes/user_get_favorites.yml +10 -10
- data/test/fixtures/vcr_cassettes/user_get_profile.yml +10 -10
- data/test/github_delete_test.rb +5 -3
- data/test/github_import_test.rb +8 -15
- data/test/github_info_test.rb +2 -2
- data/test/package_follow_test.rb +3 -3
- data/test/package_info_test.rb +16 -15
- data/test/package_reference_test.rb +4 -4
- data/test/package_search_test.rb +4 -4
- data/test/package_versions_test.rb +73 -0
- data/test/project_check_test.rb +107 -79
- data/test/project_license_test.rb +29 -11
- data/test/project_test.rb +59 -0
- data/test/user_me_test.rb +4 -4
- data/veye.gemspec +10 -8
- data/veye.log +11 -0
- metadata +73 -20
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
http_interactions:
|
|
3
3
|
- request:
|
|
4
4
|
method: post
|
|
5
|
-
uri: https://www.versioneye.com/api/v2/projects/
|
|
5
|
+
uri: https://www.versioneye.com/api/v2/projects/57c5a1708647390010767c19
|
|
6
6
|
body:
|
|
7
7
|
encoding: ASCII-8BIT
|
|
8
|
-
string: "--
|
|
8
|
+
string: "--609718\r\nContent-Disposition: form-data; name=\"project_file\";
|
|
9
9
|
filename=\"Gemfile\"\r\nContent-Type: text/plain\r\n\r\nsource 'https://rubygems.org'\ngem
|
|
10
10
|
'rails', '3.2.9'\ngroup :assets do\n gem 'sass-rails', '~> 3.2.3'\n gem
|
|
11
11
|
'coffee-rails', '~> 3.2.1'\n gem 'uglifier', '>= 1.0.3'\nend\ngem 'jquery-rails'\ngem
|
|
@@ -16,8 +16,8 @@ http_interactions:
|
|
|
16
16
|
:test, :require => false\ngem \"launchy\", \">= 2.1.2\", :group => :test\ngem
|
|
17
17
|
\"capybara\", \">= 1.1.4\", :group => :test\ngem \"factory_girl_rails\", \">=
|
|
18
18
|
4.1.0\", :group => [:development, :test]\ngem \"omniauth\", \">= 1.1.1\"\ngem
|
|
19
|
-
\"omniauth-twitter\"\ngem \"quiet_assets\", \">= 1.0.1\", :group => :development\r\n--
|
|
20
|
-
form-data; name=\"api_key\"\r\n\r\
|
|
19
|
+
\"omniauth-twitter\"\ngem \"quiet_assets\", \">= 1.0.1\", :group => :development\r\n--609718\r\nContent-Disposition:
|
|
20
|
+
form-data; name=\"api_key\"\r\n\r\nf82943fbd363bc640782\r\n--609718--\r\n"
|
|
21
21
|
headers:
|
|
22
22
|
Accept:
|
|
23
23
|
- "*/*; q=0.5, application/xml"
|
|
@@ -26,7 +26,7 @@ http_interactions:
|
|
|
26
26
|
Content-Length:
|
|
27
27
|
- '961'
|
|
28
28
|
Content-Type:
|
|
29
|
-
- multipart/form-data; boundary=
|
|
29
|
+
- multipart/form-data; boundary=609718
|
|
30
30
|
User-Agent:
|
|
31
31
|
- Ruby
|
|
32
32
|
response:
|
|
@@ -35,36 +35,36 @@ http_interactions:
|
|
|
35
35
|
message: Created
|
|
36
36
|
headers:
|
|
37
37
|
Server:
|
|
38
|
-
- nginx/1.
|
|
38
|
+
- nginx/1.10.0 (Ubuntu)
|
|
39
39
|
Date:
|
|
40
|
-
-
|
|
40
|
+
- Tue, 30 Aug 2016 15:08:36 GMT
|
|
41
41
|
Content-Type:
|
|
42
42
|
- application/json
|
|
43
43
|
Content-Length:
|
|
44
|
-
- '
|
|
44
|
+
- '6609'
|
|
45
45
|
Connection:
|
|
46
46
|
- keep-alive
|
|
47
47
|
Set-Cookie:
|
|
48
|
-
- api_key=
|
|
48
|
+
- api_key=f82943fbd363bc640782
|
|
49
49
|
Etag:
|
|
50
|
-
- W/"
|
|
50
|
+
- W/"c65fcf1279a50ae17cef994d3f437597"
|
|
51
51
|
Cache-Control:
|
|
52
52
|
- max-age=0, private, must-revalidate
|
|
53
53
|
X-Request-Id:
|
|
54
|
-
-
|
|
54
|
+
- f623bb3f-1cf8-445d-8da8-7edf585a0277
|
|
55
55
|
X-Runtime:
|
|
56
|
-
- '
|
|
56
|
+
- '1.043992'
|
|
57
57
|
body:
|
|
58
58
|
encoding: UTF-8
|
|
59
|
-
string: '{"id":"
|
|
59
|
+
string: '{"id":"57c5a1708647390010767c19","name":"Gemfile","project_type":"RubyGem","organisation":{"name":"private","company":"private","location":""},"public":true,"private_scm":false,"period":"daily","source":"API","dep_number":17,"out_number":3,"licenses_red":0,"licenses_unknown":1,"sv_count":0,"created_at":"2016-08-30T15:08:33.237Z","updated_at":"2016-08-30T15:08:35.565Z","license_whitelist":null,"dependencies":[{"name":"rails","prod_key":"rails","group_id":null,"artifact_id":null,"language":"ruby","version_current":"5.0.0.1","version_requested":"3.2.9","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"MIT","url":"http://oldwiki.rubyonrails.org/rails/pages/License","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"sass-rails","prod_key":"sass-rails","group_id":null,"artifact_id":null,"language":"ruby","version_current":"5.0.6","version_requested":"3.2.6","comparator":"~\u003e","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"MIT","url":"http://opensource.org/licenses/mit-license.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"coffee-rails","prod_key":"coffee-rails","group_id":null,"artifact_id":null,"language":"ruby","version_current":"4.2.1","version_requested":"3.2.2","comparator":"~\u003e","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"MIT","url":"http://opensource.org/licenses/mit-license.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"uglifier","prod_key":"uglifier","group_id":null,"artifact_id":null,"language":"ruby","version_current":"3.0.2","version_requested":"3.0.2","comparator":"\u003e=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"MIT","url":"http://spdx.org/licenses/MIT.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"jquery-rails","prod_key":"jquery-rails","group_id":null,"artifact_id":null,"language":"ruby","version_current":"4.2.1","version_requested":"4.2.1","comparator":"=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"MIT","url":"http://spdx.org/licenses/MIT.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"mongoid","prod_key":"mongoid","group_id":null,"artifact_id":null,"language":"ruby","version_current":"5.1.4","version_requested":"5.1.4","comparator":"\u003e=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"MIT","url":"http://spdx.org/licenses/MIT.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"rspec-rails","prod_key":"rspec-rails","group_id":null,"artifact_id":null,"language":"ruby","version_current":"3.5.2","version_requested":"3.5.2","comparator":"\u003e=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"MIT","url":"http://spdx.org/licenses/MIT.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"database_cleaner","prod_key":"database_cleaner","group_id":null,"artifact_id":null,"language":"ruby","version_current":"1.5.3","version_requested":"1.5.3","comparator":"\u003e=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"MIT","url":"http://spdx.org/licenses/MIT.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"mongoid-rspec","prod_key":"mongoid-rspec","group_id":null,"artifact_id":null,"language":"ruby","version_current":"3.0.0","version_requested":"3.0.0","comparator":"\u003e=","unknown":false,"outdated":false,"stable":true,"licenses":[],"security_vulnerabilities":null},{"name":"email_spec","prod_key":"email_spec","group_id":null,"artifact_id":null,"language":"ruby","version_current":"2.1.0","version_requested":"2.1.0","comparator":"\u003e=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"MIT","url":"http://spdx.org/licenses/MIT.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"cucumber-rails","prod_key":"cucumber-rails","group_id":null,"artifact_id":null,"language":"ruby","version_current":"1.4.4","version_requested":"1.4.4","comparator":"\u003e=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"MIT","url":"http://spdx.org/licenses/MIT.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"launchy","prod_key":"launchy","group_id":null,"artifact_id":null,"language":"ruby","version_current":"2.4.3","version_requested":"2.4.3","comparator":"\u003e=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"ISC","url":"http://spdx.org/licenses/ISC.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"capybara","prod_key":"capybara","group_id":null,"artifact_id":null,"language":"ruby","version_current":"2.8.1","version_requested":"2.8.1","comparator":"\u003e=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"MIT","url":"http://spdx.org/licenses/MIT.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"factory_girl_rails","prod_key":"factory_girl_rails","group_id":null,"artifact_id":null,"language":"ruby","version_current":"4.7.0","version_requested":"4.7.0","comparator":"\u003e=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"MIT","url":"http://spdx.org/licenses/MIT.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"omniauth","prod_key":"omniauth","group_id":null,"artifact_id":null,"language":"ruby","version_current":"1.3.1","version_requested":"1.3.1","comparator":"\u003e=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"MIT","url":"http://spdx.org/licenses/MIT.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"omniauth-twitter","prod_key":"omniauth-twitter","group_id":null,"artifact_id":null,"language":"ruby","version_current":"1.2.1","version_requested":"1.2.1","comparator":"=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"MIT","url":"http://spdx.org/licenses/MIT.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"quiet_assets","prod_key":"quiet_assets","group_id":null,"artifact_id":null,"language":"ruby","version_current":"1.1.0","version_requested":"1.1.0","comparator":"\u003e=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"MIT","url":"http://spdx.org/licenses/MIT.html","on_whitelist":null,"on_cwl":null},{"name":"GPL","url":"http://spdx.org/licenses/GPL.html","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null}],"child_ids":[],"parent_id":null}'
|
|
60
60
|
http_version:
|
|
61
|
-
recorded_at:
|
|
61
|
+
recorded_at: Tue, 30 Aug 2016 15:08:36 GMT
|
|
62
62
|
- request:
|
|
63
63
|
method: post
|
|
64
|
-
uri: https://www.versioneye.com/api/v2/projects/
|
|
64
|
+
uri: https://www.versioneye.com/api/v2/projects/57c5a17212b5260012114394
|
|
65
65
|
body:
|
|
66
66
|
encoding: ASCII-8BIT
|
|
67
|
-
string: "--
|
|
67
|
+
string: "--525506\r\nContent-Disposition: form-data; name=\"project_file\";
|
|
68
68
|
filename=\"maven-1.0.1.pom.xml\"\r\nContent-Type: application/xml\r\n\r\n<?xml
|
|
69
69
|
version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n Licensed to the Apache Software
|
|
70
70
|
Foundation (ASF) under one or more\n contributor license agreements. See
|
|
@@ -115,8 +115,8 @@ http_interactions:
|
|
|
115
115
|
\ </configuration>\n </plugin>\n </plugins>\n </build>\n\n
|
|
116
116
|
\ <reporting>\n <plugins>\n <plugin>\n <groupId>org.apache.maven.plugins</groupId>\n
|
|
117
117
|
\ <artifactId>maven-plugin-plugin</artifactId>\n <version>3.0</version>\n
|
|
118
|
-
\ </plugin>\n </plugins>\n </reporting>\n</project>\n\r\n--
|
|
119
|
-
form-data; name=\"api_key\"\r\n\r\
|
|
118
|
+
\ </plugin>\n </plugins>\n </reporting>\n</project>\n\r\n--525506\r\nContent-Disposition:
|
|
119
|
+
form-data; name=\"api_key\"\r\n\r\nf82943fbd363bc640782\r\n--525506--\r\n"
|
|
120
120
|
headers:
|
|
121
121
|
Accept:
|
|
122
122
|
- "*/*; q=0.5, application/xml"
|
|
@@ -125,7 +125,7 @@ http_interactions:
|
|
|
125
125
|
Content-Length:
|
|
126
126
|
- '4461'
|
|
127
127
|
Content-Type:
|
|
128
|
-
- multipart/form-data; boundary=
|
|
128
|
+
- multipart/form-data; boundary=525506
|
|
129
129
|
User-Agent:
|
|
130
130
|
- Ruby
|
|
131
131
|
response:
|
|
@@ -134,29 +134,28 @@ http_interactions:
|
|
|
134
134
|
message: Created
|
|
135
135
|
headers:
|
|
136
136
|
Server:
|
|
137
|
-
- nginx/1.
|
|
137
|
+
- nginx/1.10.0 (Ubuntu)
|
|
138
138
|
Date:
|
|
139
|
-
-
|
|
139
|
+
- Tue, 30 Aug 2016 15:08:36 GMT
|
|
140
140
|
Content-Type:
|
|
141
141
|
- application/json
|
|
142
142
|
Content-Length:
|
|
143
|
-
- '
|
|
143
|
+
- '4915'
|
|
144
144
|
Connection:
|
|
145
145
|
- keep-alive
|
|
146
146
|
Set-Cookie:
|
|
147
|
-
- api_key=
|
|
147
|
+
- api_key=f82943fbd363bc640782
|
|
148
148
|
Etag:
|
|
149
|
-
- W/"
|
|
149
|
+
- W/"7a98e9dcd36d773c32da3b9381f054b4"
|
|
150
150
|
Cache-Control:
|
|
151
151
|
- max-age=0, private, must-revalidate
|
|
152
152
|
X-Request-Id:
|
|
153
|
-
-
|
|
153
|
+
- 400778d3-b3b0-45fb-9d57-30d4d962b725
|
|
154
154
|
X-Runtime:
|
|
155
|
-
- '0.
|
|
155
|
+
- '0.440966'
|
|
156
156
|
body:
|
|
157
157
|
encoding: UTF-8
|
|
158
|
-
string: '{"id":"
|
|
159
|
-
:: Maven Plugins","project_type":"Maven2","public":true,"private_scm":false,"period":"daily","source":"API","dep_number":11,"out_number":10,"licenses_red":0,"licenses_unknown":3,"created_at":"2015-11-08T16:39:38.621Z","updated_at":"2015-11-08T16:39:39.032Z","license_whitelist":null,"dependencies":[{"name":"openejb-client","prod_key":"org.apache.openejb/openejb-client","group_id":"org.apache.openejb","artifact_id":"openejb-client","language":"java","version_current":"4.7.2","version_requested":"${openejb.version}","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[],"security_vulnerabilities":null},{"name":"openejb-core","prod_key":"org.apache.openejb/openejb-core","group_id":"org.apache.openejb","artifact_id":"openejb-core","language":"java","version_current":"4.7.2","version_requested":"${openejb.version}","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[],"security_vulnerabilities":null},{"name":"aether-api","prod_key":"org.sonatype.aether/aether-api","group_id":"org.sonatype.aether","artifact_id":"aether-api","language":"java","version_current":"1.13.1","version_requested":"${aether.version}","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[],"security_vulnerabilities":null},{"name":"maven-artifact","prod_key":"org.apache.maven/maven-artifact","group_id":"org.apache.maven","artifact_id":"maven-artifact","language":"java","version_current":"3.3.3","version_requested":"2.2.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-plugin-plugin","prod_key":"org.apache.maven.plugins/maven-plugin-plugin","group_id":"org.apache.maven.plugins","artifact_id":"maven-plugin-plugin","language":"java","version_current":"3.4","version_requested":"3.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-plugin-plugin","prod_key":"org.apache.maven.plugins/maven-plugin-plugin","group_id":"org.apache.maven.plugins","artifact_id":"maven-plugin-plugin","language":"java","version_current":"3.4","version_requested":"3.0","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"plexus-utils","prod_key":"org.codehaus.plexus/plexus-utils","group_id":"org.codehaus.plexus","artifact_id":"plexus-utils","language":"java","version_current":"3.0.22","version_requested":"3.0.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-core","prod_key":"org.apache.maven/maven-core","group_id":"org.apache.maven","artifact_id":"maven-core","language":"java","version_current":"3.3.3","version_requested":"2.2.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-project","prod_key":"org.apache.maven/maven-project","group_id":"org.apache.maven","artifact_id":"maven-project","language":"java","version_current":"2.2.1","version_requested":"2.2.1","comparator":"=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-plugin-api","prod_key":"org.apache.maven/maven-plugin-api","group_id":"org.apache.maven","artifact_id":"maven-plugin-api","language":"java","version_current":"3.3.3","version_requested":"2.2.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-plugin-annotations","prod_key":"org.apache.maven.plugin-tools/maven-plugin-annotations","group_id":"org.apache.maven.plugin-tools","artifact_id":"maven-plugin-annotations","language":"java","version_current":"3.4","version_requested":"3.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null}]}'
|
|
158
|
+
string: '{"id":"57c5a17212b5260012114394","name":"OpenEJB :: Maven Plugins","project_type":"Maven2","organisation":{"name":"private","company":"private","location":""},"public":true,"private_scm":false,"period":"daily","source":"API","dep_number":11,"out_number":10,"licenses_red":0,"licenses_unknown":3,"sv_count":0,"created_at":"2016-08-30T15:08:34.354Z","updated_at":"2016-08-30T15:08:36.478Z","license_whitelist":null,"dependencies":[{"name":"maven-plugin-annotations","prod_key":"org.apache.maven.plugin-tools/maven-plugin-annotations","group_id":"org.apache.maven.plugin-tools","artifact_id":"maven-plugin-annotations","language":"java","version_current":"3.4","version_requested":"3.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"plexus-utils","prod_key":"org.codehaus.plexus/plexus-utils","group_id":"org.codehaus.plexus","artifact_id":"plexus-utils","language":"java","version_current":"3.0.24","version_requested":"3.0.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-plugin-api","prod_key":"org.apache.maven/maven-plugin-api","group_id":"org.apache.maven","artifact_id":"maven-plugin-api","language":"java","version_current":"3.3.9","version_requested":"2.2.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-project","prod_key":"org.apache.maven/maven-project","group_id":"org.apache.maven","artifact_id":"maven-project","language":"java","version_current":"2.2.1","version_requested":"2.2.1","comparator":"=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-core","prod_key":"org.apache.maven/maven-core","group_id":"org.apache.maven","artifact_id":"maven-core","language":"java","version_current":"3.3.9","version_requested":"2.2.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-artifact","prod_key":"org.apache.maven/maven-artifact","group_id":"org.apache.maven","artifact_id":"maven-artifact","language":"java","version_current":"3.3.9","version_requested":"2.2.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"aether-api","prod_key":"org.sonatype.aether/aether-api","group_id":"org.sonatype.aether","artifact_id":"aether-api","language":"java","version_current":"1.13.1","version_requested":"${aether.version}","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[],"security_vulnerabilities":null},{"name":"openejb-core","prod_key":"org.apache.openejb/openejb-core","group_id":"org.apache.openejb","artifact_id":"openejb-core","language":"java","version_current":"4.7.4","version_requested":"${openejb.version}","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[],"security_vulnerabilities":null},{"name":"openejb-client","prod_key":"org.apache.openejb/openejb-client","group_id":"org.apache.openejb","artifact_id":"openejb-client","language":"java","version_current":"4.7.4","version_requested":"${openejb.version}","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[],"security_vulnerabilities":null},{"name":"maven-plugin-plugin","prod_key":"org.apache.maven.plugins/maven-plugin-plugin","group_id":"org.apache.maven.plugins","artifact_id":"maven-plugin-plugin","language":"java","version_current":"3.4","version_requested":"3.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-plugin-plugin","prod_key":"org.apache.maven.plugins/maven-plugin-plugin","group_id":"org.apache.maven.plugins","artifact_id":"maven-plugin-plugin","language":"java","version_current":"3.4","version_requested":"3.0","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null}],"child_ids":[],"parent_id":null}'
|
|
160
159
|
http_version:
|
|
161
|
-
recorded_at:
|
|
162
|
-
recorded_with: VCR
|
|
160
|
+
recorded_at: Tue, 30 Aug 2016 15:08:36 GMT
|
|
161
|
+
recorded_with: VCR 3.0.1
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
http_interactions:
|
|
3
3
|
- request:
|
|
4
4
|
method: delete
|
|
5
|
-
uri: https://www.versioneye.com/api/v2/projects/
|
|
5
|
+
uri: https://www.versioneye.com/api/v2/projects/57c59b4812b526000ee32df7?api_key=f82943fbd363bc640782
|
|
6
6
|
body:
|
|
7
7
|
encoding: US-ASCII
|
|
8
8
|
string: ''
|
|
@@ -19,9 +19,9 @@ http_interactions:
|
|
|
19
19
|
message: OK
|
|
20
20
|
headers:
|
|
21
21
|
Server:
|
|
22
|
-
- nginx/1.
|
|
22
|
+
- nginx/1.10.0 (Ubuntu)
|
|
23
23
|
Date:
|
|
24
|
-
-
|
|
24
|
+
- Tue, 30 Aug 2016 14:42:18 GMT
|
|
25
25
|
Content-Type:
|
|
26
26
|
- application/json
|
|
27
27
|
Content-Length:
|
|
@@ -29,18 +29,18 @@ http_interactions:
|
|
|
29
29
|
Connection:
|
|
30
30
|
- keep-alive
|
|
31
31
|
Set-Cookie:
|
|
32
|
-
- api_key=
|
|
32
|
+
- api_key=f82943fbd363bc640782
|
|
33
33
|
Etag:
|
|
34
34
|
- W/"75b42f14626fd9c08be1551bde4fd46c"
|
|
35
35
|
Cache-Control:
|
|
36
36
|
- max-age=0, private, must-revalidate
|
|
37
37
|
X-Request-Id:
|
|
38
|
-
-
|
|
38
|
+
- 9c6ecac4-0b51-4655-b8a1-b00f60046d4d
|
|
39
39
|
X-Runtime:
|
|
40
|
-
- '0.
|
|
40
|
+
- '0.078280'
|
|
41
41
|
body:
|
|
42
42
|
encoding: UTF-8
|
|
43
43
|
string: '{"success":true,"message":"Project deleted successfully."}'
|
|
44
44
|
http_version:
|
|
45
|
-
recorded_at:
|
|
46
|
-
recorded_with: VCR
|
|
45
|
+
recorded_at: Tue, 30 Aug 2016 14:42:18 GMT
|
|
46
|
+
recorded_with: VCR 3.0.1
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: delete
|
|
5
|
+
uri: https://www.versioneye.com/api/v2/projects/57c83cd512b52600121e9161?api_key=f82943fbd363bc640782
|
|
6
|
+
body:
|
|
7
|
+
encoding: US-ASCII
|
|
8
|
+
string: ''
|
|
9
|
+
headers:
|
|
10
|
+
Accept:
|
|
11
|
+
- "*/*"
|
|
12
|
+
Accept-Encoding:
|
|
13
|
+
- gzip, deflate
|
|
14
|
+
User-Agent:
|
|
15
|
+
- rest-client/2.0.0 (darwin14.4.0 x86_64) ruby/2.2.1p85
|
|
16
|
+
Host:
|
|
17
|
+
- www.versioneye.com
|
|
18
|
+
response:
|
|
19
|
+
status:
|
|
20
|
+
code: 200
|
|
21
|
+
message: OK
|
|
22
|
+
headers:
|
|
23
|
+
Server:
|
|
24
|
+
- nginx/1.10.0 (Ubuntu)
|
|
25
|
+
Date:
|
|
26
|
+
- Thu, 01 Sep 2016 14:36:06 GMT
|
|
27
|
+
Content-Type:
|
|
28
|
+
- application/json
|
|
29
|
+
Content-Length:
|
|
30
|
+
- '58'
|
|
31
|
+
Connection:
|
|
32
|
+
- keep-alive
|
|
33
|
+
Set-Cookie:
|
|
34
|
+
- api_key=f82943fbd363bc640782
|
|
35
|
+
Etag:
|
|
36
|
+
- W/"75b42f14626fd9c08be1551bde4fd46c"
|
|
37
|
+
Cache-Control:
|
|
38
|
+
- max-age=0, private, must-revalidate
|
|
39
|
+
X-Request-Id:
|
|
40
|
+
- 3d532281-42b9-4be5-bdc6-74b3f2cd0f7c
|
|
41
|
+
X-Runtime:
|
|
42
|
+
- '0.069503'
|
|
43
|
+
body:
|
|
44
|
+
encoding: UTF-8
|
|
45
|
+
string: '{"success":true,"message":"Project deleted successfully."}'
|
|
46
|
+
http_version:
|
|
47
|
+
recorded_at: Thu, 01 Sep 2016 14:36:06 GMT
|
|
48
|
+
recorded_with: VCR 3.0.3
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: delete
|
|
5
|
+
uri: https://www.versioneye.com/api/v2/projects/57c5a71e12b526000ee359e1?api_key=f82943fbd363bc640782
|
|
6
|
+
body:
|
|
7
|
+
encoding: US-ASCII
|
|
8
|
+
string: ''
|
|
9
|
+
headers:
|
|
10
|
+
Accept:
|
|
11
|
+
- "*/*; q=0.5, application/xml"
|
|
12
|
+
Accept-Encoding:
|
|
13
|
+
- gzip, deflate
|
|
14
|
+
User-Agent:
|
|
15
|
+
- Ruby
|
|
16
|
+
response:
|
|
17
|
+
status:
|
|
18
|
+
code: 200
|
|
19
|
+
message: OK
|
|
20
|
+
headers:
|
|
21
|
+
Server:
|
|
22
|
+
- nginx/1.10.0 (Ubuntu)
|
|
23
|
+
Date:
|
|
24
|
+
- Tue, 30 Aug 2016 15:32:48 GMT
|
|
25
|
+
Content-Type:
|
|
26
|
+
- application/json
|
|
27
|
+
Content-Length:
|
|
28
|
+
- '58'
|
|
29
|
+
Connection:
|
|
30
|
+
- keep-alive
|
|
31
|
+
Set-Cookie:
|
|
32
|
+
- api_key=f82943fbd363bc640782
|
|
33
|
+
Etag:
|
|
34
|
+
- W/"75b42f14626fd9c08be1551bde4fd46c"
|
|
35
|
+
Cache-Control:
|
|
36
|
+
- max-age=0, private, must-revalidate
|
|
37
|
+
X-Request-Id:
|
|
38
|
+
- 02a4bc29-72f3-4dd6-ad9f-4b59888116f4
|
|
39
|
+
X-Runtime:
|
|
40
|
+
- '0.086069'
|
|
41
|
+
body:
|
|
42
|
+
encoding: UTF-8
|
|
43
|
+
string: '{"success":true,"message":"Project deleted successfully."}'
|
|
44
|
+
http_version:
|
|
45
|
+
recorded_at: Tue, 30 Aug 2016 15:32:48 GMT
|
|
46
|
+
recorded_with: VCR 3.0.1
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: delete
|
|
5
|
+
uri: https://www.versioneye.com/api/v2/projects/57c82a438647390016710be2?api_key=f82943fbd363bc640782
|
|
6
|
+
body:
|
|
7
|
+
encoding: US-ASCII
|
|
8
|
+
string: ''
|
|
9
|
+
headers:
|
|
10
|
+
Accept:
|
|
11
|
+
- "*/*; q=0.5, application/xml"
|
|
12
|
+
Accept-Encoding:
|
|
13
|
+
- gzip, deflate
|
|
14
|
+
User-Agent:
|
|
15
|
+
- Ruby
|
|
16
|
+
response:
|
|
17
|
+
status:
|
|
18
|
+
code: 200
|
|
19
|
+
message: OK
|
|
20
|
+
headers:
|
|
21
|
+
Server:
|
|
22
|
+
- nginx/1.10.0 (Ubuntu)
|
|
23
|
+
Date:
|
|
24
|
+
- Thu, 01 Sep 2016 13:17:42 GMT
|
|
25
|
+
Content-Type:
|
|
26
|
+
- application/json
|
|
27
|
+
Content-Length:
|
|
28
|
+
- '57'
|
|
29
|
+
Connection:
|
|
30
|
+
- keep-alive
|
|
31
|
+
Set-Cookie:
|
|
32
|
+
- api_key=f82943fbd363bc640782
|
|
33
|
+
Etag:
|
|
34
|
+
- W/"29c49200d627f34e11dbd0421e9f58a1"
|
|
35
|
+
Cache-Control:
|
|
36
|
+
- max-age=0, private, must-revalidate
|
|
37
|
+
X-Request-Id:
|
|
38
|
+
- 34634c29-8250-4a4e-9989-5d72e212a10b
|
|
39
|
+
X-Runtime:
|
|
40
|
+
- '0.036091'
|
|
41
|
+
body:
|
|
42
|
+
encoding: UTF-8
|
|
43
|
+
string: '{"success":true,"message":"Project was removed already."}'
|
|
44
|
+
http_version:
|
|
45
|
+
recorded_at: Thu, 01 Sep 2016 13:17:42 GMT
|
|
46
|
+
recorded_with: VCR 3.0.1
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: delete
|
|
5
|
+
uri: https://www.versioneye.com/api/v2/projects/57c82a4312b526001687878e?api_key=f82943fbd363bc640782
|
|
6
|
+
body:
|
|
7
|
+
encoding: US-ASCII
|
|
8
|
+
string: ''
|
|
9
|
+
headers:
|
|
10
|
+
Accept:
|
|
11
|
+
- "*/*; q=0.5, application/xml"
|
|
12
|
+
Accept-Encoding:
|
|
13
|
+
- gzip, deflate
|
|
14
|
+
User-Agent:
|
|
15
|
+
- Ruby
|
|
16
|
+
response:
|
|
17
|
+
status:
|
|
18
|
+
code: 200
|
|
19
|
+
message: OK
|
|
20
|
+
headers:
|
|
21
|
+
Server:
|
|
22
|
+
- nginx/1.10.0 (Ubuntu)
|
|
23
|
+
Date:
|
|
24
|
+
- Thu, 01 Sep 2016 13:17:42 GMT
|
|
25
|
+
Content-Type:
|
|
26
|
+
- application/json
|
|
27
|
+
Content-Length:
|
|
28
|
+
- '58'
|
|
29
|
+
Connection:
|
|
30
|
+
- keep-alive
|
|
31
|
+
Set-Cookie:
|
|
32
|
+
- api_key=f82943fbd363bc640782
|
|
33
|
+
Etag:
|
|
34
|
+
- W/"75b42f14626fd9c08be1551bde4fd46c"
|
|
35
|
+
Cache-Control:
|
|
36
|
+
- max-age=0, private, must-revalidate
|
|
37
|
+
X-Request-Id:
|
|
38
|
+
- 174c4716-0c76-405b-8c28-e79efd0d6d9b
|
|
39
|
+
X-Runtime:
|
|
40
|
+
- '0.139680'
|
|
41
|
+
body:
|
|
42
|
+
encoding: UTF-8
|
|
43
|
+
string: '{"success":true,"message":"Project deleted successfully."}'
|
|
44
|
+
http_version:
|
|
45
|
+
recorded_at: Thu, 01 Sep 2016 13:17:42 GMT
|
|
46
|
+
recorded_with: VCR 3.0.1
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
http_interactions:
|
|
3
3
|
- request:
|
|
4
4
|
method: get
|
|
5
|
-
uri: https://www.versioneye.com/api/v2/projects/
|
|
5
|
+
uri: https://www.versioneye.com/api/v2/projects/57c59b4812b526000ee32df7?api_key=f82943fbd363bc640782
|
|
6
6
|
body:
|
|
7
7
|
encoding: US-ASCII
|
|
8
8
|
string: ''
|
|
@@ -19,29 +19,28 @@ http_interactions:
|
|
|
19
19
|
message: OK
|
|
20
20
|
headers:
|
|
21
21
|
Server:
|
|
22
|
-
- nginx/1.
|
|
22
|
+
- nginx/1.10.0 (Ubuntu)
|
|
23
23
|
Date:
|
|
24
|
-
-
|
|
24
|
+
- Tue, 30 Aug 2016 14:42:18 GMT
|
|
25
25
|
Content-Type:
|
|
26
26
|
- application/json
|
|
27
27
|
Content-Length:
|
|
28
|
-
- '
|
|
28
|
+
- '4915'
|
|
29
29
|
Connection:
|
|
30
30
|
- keep-alive
|
|
31
31
|
Set-Cookie:
|
|
32
|
-
- api_key=
|
|
32
|
+
- api_key=f82943fbd363bc640782
|
|
33
33
|
Etag:
|
|
34
|
-
- W/"
|
|
34
|
+
- W/"844ea883d733fc29d5168d8359a305b0"
|
|
35
35
|
Cache-Control:
|
|
36
36
|
- max-age=0, private, must-revalidate
|
|
37
37
|
X-Request-Id:
|
|
38
|
-
-
|
|
38
|
+
- 82350554-de57-41ed-8303-c7ab5e508646
|
|
39
39
|
X-Runtime:
|
|
40
|
-
- '0.
|
|
40
|
+
- '0.052769'
|
|
41
41
|
body:
|
|
42
42
|
encoding: UTF-8
|
|
43
|
-
string: '{"id":"
|
|
44
|
-
:: Maven Plugins","project_type":"Maven2","public":true,"private_scm":false,"period":"daily","source":"API","dep_number":11,"out_number":10,"licenses_red":0,"licenses_unknown":3,"created_at":"2015-11-08T16:37:44.353Z","updated_at":"2015-11-08T16:37:44.834Z","license_whitelist":null,"dependencies":[{"name":"openejb-client","prod_key":"org.apache.openejb/openejb-client","group_id":"org.apache.openejb","artifact_id":"openejb-client","language":"java","version_current":"4.7.2","version_requested":"${openejb.version}","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[],"security_vulnerabilities":null},{"name":"openejb-core","prod_key":"org.apache.openejb/openejb-core","group_id":"org.apache.openejb","artifact_id":"openejb-core","language":"java","version_current":"4.7.2","version_requested":"${openejb.version}","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[],"security_vulnerabilities":null},{"name":"aether-api","prod_key":"org.sonatype.aether/aether-api","group_id":"org.sonatype.aether","artifact_id":"aether-api","language":"java","version_current":"1.13.1","version_requested":"${aether.version}","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[],"security_vulnerabilities":null},{"name":"maven-plugin-plugin","prod_key":"org.apache.maven.plugins/maven-plugin-plugin","group_id":"org.apache.maven.plugins","artifact_id":"maven-plugin-plugin","language":"java","version_current":"3.4","version_requested":"3.0","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-project","prod_key":"org.apache.maven/maven-project","group_id":"org.apache.maven","artifact_id":"maven-project","language":"java","version_current":"2.2.1","version_requested":"2.2.1","comparator":"=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"plexus-utils","prod_key":"org.codehaus.plexus/plexus-utils","group_id":"org.codehaus.plexus","artifact_id":"plexus-utils","language":"java","version_current":"3.0.22","version_requested":"3.0.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-plugin-api","prod_key":"org.apache.maven/maven-plugin-api","group_id":"org.apache.maven","artifact_id":"maven-plugin-api","language":"java","version_current":"3.3.3","version_requested":"2.2.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-core","prod_key":"org.apache.maven/maven-core","group_id":"org.apache.maven","artifact_id":"maven-core","language":"java","version_current":"3.3.3","version_requested":"2.2.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-artifact","prod_key":"org.apache.maven/maven-artifact","group_id":"org.apache.maven","artifact_id":"maven-artifact","language":"java","version_current":"3.3.3","version_requested":"2.2.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-plugin-plugin","prod_key":"org.apache.maven.plugins/maven-plugin-plugin","group_id":"org.apache.maven.plugins","artifact_id":"maven-plugin-plugin","language":"java","version_current":"3.4","version_requested":"3.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-plugin-annotations","prod_key":"org.apache.maven.plugin-tools/maven-plugin-annotations","group_id":"org.apache.maven.plugin-tools","artifact_id":"maven-plugin-annotations","language":"java","version_current":"3.4","version_requested":"3.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null}]}'
|
|
43
|
+
string: '{"id":"57c59b4812b526000ee32df7","name":"OpenEJB :: Maven Plugins","project_type":"Maven2","organisation":{"name":"private","company":"private","location":""},"public":true,"private_scm":false,"period":"daily","source":"API","dep_number":11,"out_number":10,"licenses_red":0,"licenses_unknown":3,"sv_count":0,"created_at":"2016-08-30T14:42:17.261Z","updated_at":"2016-08-30T14:42:17.688Z","license_whitelist":null,"dependencies":[{"name":"maven-plugin-annotations","prod_key":"org.apache.maven.plugin-tools/maven-plugin-annotations","group_id":"org.apache.maven.plugin-tools","artifact_id":"maven-plugin-annotations","language":"java","version_current":"3.4","version_requested":"3.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"plexus-utils","prod_key":"org.codehaus.plexus/plexus-utils","group_id":"org.codehaus.plexus","artifact_id":"plexus-utils","language":"java","version_current":"3.0.24","version_requested":"3.0.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-plugin-api","prod_key":"org.apache.maven/maven-plugin-api","group_id":"org.apache.maven","artifact_id":"maven-plugin-api","language":"java","version_current":"3.3.9","version_requested":"2.2.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-project","prod_key":"org.apache.maven/maven-project","group_id":"org.apache.maven","artifact_id":"maven-project","language":"java","version_current":"2.2.1","version_requested":"2.2.1","comparator":"=","unknown":false,"outdated":false,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-core","prod_key":"org.apache.maven/maven-core","group_id":"org.apache.maven","artifact_id":"maven-core","language":"java","version_current":"3.3.9","version_requested":"2.2.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-artifact","prod_key":"org.apache.maven/maven-artifact","group_id":"org.apache.maven","artifact_id":"maven-artifact","language":"java","version_current":"3.3.9","version_requested":"2.2.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"aether-api","prod_key":"org.sonatype.aether/aether-api","group_id":"org.sonatype.aether","artifact_id":"aether-api","language":"java","version_current":"1.13.1","version_requested":"${aether.version}","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[],"security_vulnerabilities":null},{"name":"openejb-core","prod_key":"org.apache.openejb/openejb-core","group_id":"org.apache.openejb","artifact_id":"openejb-core","language":"java","version_current":"4.7.4","version_requested":"${openejb.version}","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[],"security_vulnerabilities":null},{"name":"openejb-client","prod_key":"org.apache.openejb/openejb-client","group_id":"org.apache.openejb","artifact_id":"openejb-client","language":"java","version_current":"4.7.4","version_requested":"${openejb.version}","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[],"security_vulnerabilities":null},{"name":"maven-plugin-plugin","prod_key":"org.apache.maven.plugins/maven-plugin-plugin","group_id":"org.apache.maven.plugins","artifact_id":"maven-plugin-plugin","language":"java","version_current":"3.4","version_requested":"3.1","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null},{"name":"maven-plugin-plugin","prod_key":"org.apache.maven.plugins/maven-plugin-plugin","group_id":"org.apache.maven.plugins","artifact_id":"maven-plugin-plugin","language":"java","version_current":"3.4","version_requested":"3.0","comparator":"=","unknown":false,"outdated":true,"stable":true,"licenses":[{"name":"Apache-2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","on_whitelist":null,"on_cwl":null}],"security_vulnerabilities":null}],"child_ids":[],"parent_id":null}'
|
|
45
44
|
http_version:
|
|
46
|
-
recorded_at:
|
|
47
|
-
recorded_with: VCR
|
|
45
|
+
recorded_at: Tue, 30 Aug 2016 14:42:18 GMT
|
|
46
|
+
recorded_with: VCR 3.0.1
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
http_interactions:
|
|
3
3
|
- request:
|
|
4
4
|
method: get
|
|
5
|
-
uri: https://www.versioneye.com/api/v2/projects/
|
|
5
|
+
uri: https://www.versioneye.com/api/v2/projects/57c59b4812b526000ee32df7/licenses?api_key=f82943fbd363bc640782
|
|
6
6
|
body:
|
|
7
7
|
encoding: US-ASCII
|
|
8
8
|
string: ''
|
|
@@ -19,30 +19,29 @@ http_interactions:
|
|
|
19
19
|
message: OK
|
|
20
20
|
headers:
|
|
21
21
|
Server:
|
|
22
|
-
- nginx/1.
|
|
22
|
+
- nginx/1.10.0 (Ubuntu)
|
|
23
23
|
Date:
|
|
24
|
-
-
|
|
24
|
+
- Tue, 30 Aug 2016 15:45:40 GMT
|
|
25
25
|
Content-Type:
|
|
26
26
|
- application/json
|
|
27
27
|
Content-Length:
|
|
28
|
-
- '
|
|
28
|
+
- '906'
|
|
29
29
|
Connection:
|
|
30
30
|
- keep-alive
|
|
31
31
|
Set-Cookie:
|
|
32
|
-
- api_key=
|
|
32
|
+
- api_key=f82943fbd363bc640782
|
|
33
33
|
Etag:
|
|
34
|
-
- W/"
|
|
34
|
+
- W/"bcc3569705470ce364b2bb0a0fa008d1"
|
|
35
35
|
Cache-Control:
|
|
36
36
|
- max-age=0, private, must-revalidate
|
|
37
37
|
X-Request-Id:
|
|
38
|
-
-
|
|
38
|
+
- ce5b6a4c-8a13-4e2e-9652-190c981b5e92
|
|
39
39
|
X-Runtime:
|
|
40
|
-
- '0.
|
|
40
|
+
- '0.092914'
|
|
41
41
|
body:
|
|
42
42
|
encoding: UTF-8
|
|
43
|
-
string: '{"success":true,"licenses":{"
|
|
44
|
-
|
|
45
|
-
BSD-3-Clause, MPL-1.1, GPL-2.0, LGPL-2.1":[{"name":"domain_name","prod_key":"domain_name"}],"Ruby":[{"name":"json","prod_key":"json"},{"name":"rdoc","prod_key":"rdoc"}]}}'
|
|
43
|
+
string: '{"success":true,"licenses":{"Apache-2.0":[{"name":"maven-plugin-annotations","prod_key":"org.apache.maven.plugin-tools/maven-plugin-annotations"},{"name":"plexus-utils","prod_key":"org.codehaus.plexus/plexus-utils"},{"name":"maven-plugin-api","prod_key":"org.apache.maven/maven-plugin-api"},{"name":"maven-project","prod_key":"org.apache.maven/maven-project"},{"name":"maven-core","prod_key":"org.apache.maven/maven-core"},{"name":"maven-artifact","prod_key":"org.apache.maven/maven-artifact"},{"name":"openejb-core","prod_key":"org.apache.openejb/openejb-core"},{"name":"openejb-client","prod_key":"org.apache.openejb/openejb-client"},{"name":"maven-plugin-plugin","prod_key":"org.apache.maven.plugins/maven-plugin-plugin"},{"name":"maven-plugin-plugin","prod_key":"org.apache.maven.plugins/maven-plugin-plugin"}],"EPL-1.0,
|
|
44
|
+
Apache-2.0":[{"name":"aether-api","prod_key":"org.sonatype.aether/aether-api"}]}}'
|
|
46
45
|
http_version:
|
|
47
|
-
recorded_at:
|
|
46
|
+
recorded_at: Tue, 30 Aug 2016 15:45:40 GMT
|
|
48
47
|
recorded_with: VCR 3.0.1
|