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
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: get
|
|
5
|
+
uri: https://www.versioneye.com/api/v2/projects/57c83cd512b52600121e9161/licenses?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
|
+
- '906'
|
|
31
|
+
Connection:
|
|
32
|
+
- keep-alive
|
|
33
|
+
Set-Cookie:
|
|
34
|
+
- api_key=f82943fbd363bc640782
|
|
35
|
+
Etag:
|
|
36
|
+
- W/"bcc3569705470ce364b2bb0a0fa008d1"
|
|
37
|
+
Cache-Control:
|
|
38
|
+
- max-age=0, private, must-revalidate
|
|
39
|
+
X-Request-Id:
|
|
40
|
+
- d947a521-970c-4cc1-9f3d-60c50cab0ba2
|
|
41
|
+
X-Runtime:
|
|
42
|
+
- '0.107967'
|
|
43
|
+
body:
|
|
44
|
+
encoding: UTF-8
|
|
45
|
+
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,
|
|
46
|
+
Apache-2.0":[{"name":"aether-api","prod_key":"org.sonatype.aether/aether-api"}]}}'
|
|
47
|
+
http_version:
|
|
48
|
+
recorded_at: Thu, 01 Sep 2016 14:36:06 GMT
|
|
49
|
+
recorded_with: VCR 3.0.3
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
http_interactions:
|
|
3
3
|
- request:
|
|
4
4
|
method: get
|
|
5
|
-
uri: https://www.versioneye.com/api/v2/projects?api_key=
|
|
5
|
+
uri: https://www.versioneye.com/api/v2/projects?api_key=f82943fbd363bc640782&orga_name=veye_test
|
|
6
6
|
body:
|
|
7
7
|
encoding: US-ASCII
|
|
8
8
|
string: ''
|
|
@@ -19,30 +19,30 @@ 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:10:39 GMT
|
|
25
25
|
Content-Type:
|
|
26
26
|
- application/json
|
|
27
27
|
Content-Length:
|
|
28
|
-
- '
|
|
28
|
+
- '2160'
|
|
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/"6d21f7c07a35fbfb69c011070425be00"
|
|
35
35
|
Cache-Control:
|
|
36
36
|
- max-age=0, private, must-revalidate
|
|
37
37
|
X-Request-Id:
|
|
38
|
-
-
|
|
38
|
+
- 2946d10e-de8d-44af-a231-2548a8491aec
|
|
39
39
|
X-Runtime:
|
|
40
|
-
- '0.
|
|
40
|
+
- '0.390203'
|
|
41
41
|
body:
|
|
42
42
|
encoding: UTF-8
|
|
43
|
-
string: '[{"id":
|
|
44
|
-
:: Maven Plugins","project_type":"Maven2","public":
|
|
45
|
-
:: Maven Plugins","project_type":"Maven2","
|
|
46
|
-
http_version:
|
|
47
|
-
recorded_at:
|
|
48
|
-
recorded_with: VCR
|
|
43
|
+
string: '[{"id":{"$oid":"57c05d11864739001066e3f1"},"ids":"57c05d11864739001066e3f1","name":"OpenEJB
|
|
44
|
+
:: Maven Plugins","project_type":"Maven2","organisation":{"name":"veye_test","company":"VersionEye","location":"Mannheim"},"public":false,"private_scm":false,"period":"daily","source":"API","dep_number":11,"out_number":10,"licenses_red":0,"licenses_unknown":3,"dep_number_sum":11,"out_number_sum":10,"licenses_red_sum":0,"licenses_unknown_sum":3,"license_whitelist_name":null,"created_at":"2016-08-26T15:15:30.021Z","updated_at":"2016-08-26T15:15:30.427Z"},{"id":{"$oid":"57c59f6a864739000ed5cfbb"},"ids":"57c59f6a864739000ed5cfbb","name":"OpenEJB
|
|
45
|
+
:: Maven Plugins","project_type":"Maven2","organisation":{"name":"veye_test","company":"VersionEye","location":"Mannheim"},"public":true,"private_scm":false,"period":"daily","source":"API","dep_number":11,"out_number":10,"licenses_red":0,"licenses_unknown":3,"dep_number_sum":11,"out_number_sum":10,"licenses_red_sum":0,"licenses_unknown_sum":3,"license_whitelist_name":null,"created_at":"2016-08-30T14:59:54.255Z","updated_at":"2016-08-30T14:59:54.638Z"}]'
|
|
46
|
+
http_version:
|
|
47
|
+
recorded_at: Tue, 30 Aug 2016 15:10:40 GMT
|
|
48
|
+
recorded_with: VCR 3.0.1
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: get
|
|
5
|
+
uri: https://www.versioneye.com/api/v2/projects/57c82a4312b526001687878e/merge/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:16:53 GMT
|
|
25
|
+
Content-Type:
|
|
26
|
+
- application/json
|
|
27
|
+
Content-Length:
|
|
28
|
+
- '16'
|
|
29
|
+
Connection:
|
|
30
|
+
- keep-alive
|
|
31
|
+
Set-Cookie:
|
|
32
|
+
- api_key=f82943fbd363bc640782
|
|
33
|
+
Etag:
|
|
34
|
+
- W/"7363e85fe9edee6f053a4b319588c086"
|
|
35
|
+
Cache-Control:
|
|
36
|
+
- max-age=0, private, must-revalidate
|
|
37
|
+
X-Request-Id:
|
|
38
|
+
- edd87651-c5dd-43f4-b532-d77fb647cc5b
|
|
39
|
+
X-Runtime:
|
|
40
|
+
- '0.118601'
|
|
41
|
+
body:
|
|
42
|
+
encoding: UTF-8
|
|
43
|
+
string: '{"success":true}'
|
|
44
|
+
http_version:
|
|
45
|
+
recorded_at: Thu, 01 Sep 2016 13:16:53 GMT
|
|
46
|
+
recorded_with: VCR 3.0.1
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: get
|
|
5
|
+
uri: https://www.versioneye.com/api/v2/projects/57c82a4312b526001687878e/unmerge/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:16:53 GMT
|
|
25
|
+
Content-Type:
|
|
26
|
+
- application/json
|
|
27
|
+
Content-Length:
|
|
28
|
+
- '16'
|
|
29
|
+
Connection:
|
|
30
|
+
- keep-alive
|
|
31
|
+
Set-Cookie:
|
|
32
|
+
- api_key=f82943fbd363bc640782
|
|
33
|
+
Etag:
|
|
34
|
+
- W/"7363e85fe9edee6f053a4b319588c086"
|
|
35
|
+
Cache-Control:
|
|
36
|
+
- max-age=0, private, must-revalidate
|
|
37
|
+
X-Request-Id:
|
|
38
|
+
- 99f3f568-13dc-4b03-98cc-0b624a2da13f
|
|
39
|
+
X-Runtime:
|
|
40
|
+
- '0.036295'
|
|
41
|
+
body:
|
|
42
|
+
encoding: UTF-8
|
|
43
|
+
string: '{"success":true}'
|
|
44
|
+
http_version:
|
|
45
|
+
recorded_at: Thu, 01 Sep 2016 13:16:53 GMT
|
|
46
|
+
recorded_with: VCR 3.0.1
|
|
@@ -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/57c5a71e12b526000ee359e1
|
|
6
6
|
body:
|
|
7
7
|
encoding: ASCII-8BIT
|
|
8
|
-
string: "--
|
|
8
|
+
string: "--923754\r\nContent-Disposition: form-data; name=\"project_file\";
|
|
9
9
|
filename=\"maven-1.0.1.pom.xml\"\r\nContent-Type: application/xml\r\n\r\n<?xml
|
|
10
10
|
version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n Licensed to the Apache Software
|
|
11
11
|
Foundation (ASF) under one or more\n contributor license agreements. See
|
|
@@ -56,8 +56,8 @@ http_interactions:
|
|
|
56
56
|
\ </configuration>\n </plugin>\n </plugins>\n </build>\n\n
|
|
57
57
|
\ <reporting>\n <plugins>\n <plugin>\n <groupId>org.apache.maven.plugins</groupId>\n
|
|
58
58
|
\ <artifactId>maven-plugin-plugin</artifactId>\n <version>3.0</version>\n
|
|
59
|
-
\ </plugin>\n </plugins>\n </reporting>\n</project>\n\r\n--
|
|
60
|
-
form-data; name=\"api_key\"\r\n\r\
|
|
59
|
+
\ </plugin>\n </plugins>\n </reporting>\n</project>\n\r\n--923754\r\nContent-Disposition:
|
|
60
|
+
form-data; name=\"api_key\"\r\n\r\nf82943fbd363bc640782\r\n--923754--\r\n"
|
|
61
61
|
headers:
|
|
62
62
|
Accept:
|
|
63
63
|
- "*/*; q=0.5, application/xml"
|
|
@@ -66,7 +66,7 @@ http_interactions:
|
|
|
66
66
|
Content-Length:
|
|
67
67
|
- '4461'
|
|
68
68
|
Content-Type:
|
|
69
|
-
- multipart/form-data; boundary=
|
|
69
|
+
- multipart/form-data; boundary=923754
|
|
70
70
|
User-Agent:
|
|
71
71
|
- Ruby
|
|
72
72
|
response:
|
|
@@ -75,29 +75,28 @@ http_interactions:
|
|
|
75
75
|
message: Created
|
|
76
76
|
headers:
|
|
77
77
|
Server:
|
|
78
|
-
- nginx/1.
|
|
78
|
+
- nginx/1.10.0 (Ubuntu)
|
|
79
79
|
Date:
|
|
80
|
-
-
|
|
80
|
+
- Tue, 30 Aug 2016 15:32:47 GMT
|
|
81
81
|
Content-Type:
|
|
82
82
|
- application/json
|
|
83
83
|
Content-Length:
|
|
84
|
-
- '
|
|
84
|
+
- '4928'
|
|
85
85
|
Connection:
|
|
86
86
|
- keep-alive
|
|
87
87
|
Set-Cookie:
|
|
88
|
-
- api_key=
|
|
88
|
+
- api_key=f82943fbd363bc640782
|
|
89
89
|
Etag:
|
|
90
|
-
- W/"
|
|
90
|
+
- W/"9654fa149c36a2d589a7b3c80fcc404a"
|
|
91
91
|
Cache-Control:
|
|
92
92
|
- max-age=0, private, must-revalidate
|
|
93
93
|
X-Request-Id:
|
|
94
|
-
-
|
|
94
|
+
- 071b07fb-06b7-4305-a1ae-3a2dcde6495a
|
|
95
95
|
X-Runtime:
|
|
96
|
-
- '
|
|
96
|
+
- '0.501289'
|
|
97
97
|
body:
|
|
98
98
|
encoding: UTF-8
|
|
99
|
-
string: '{"id":"
|
|
100
|
-
:: 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}]}'
|
|
99
|
+
string: '{"id":"57c5a71e12b526000ee359e1","name":"OpenEJB :: Maven Plugins","project_type":"Maven2","organisation":{"name":"veye_test","company":"VersionEye","location":"Mannheim"},"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:32:46.403Z","updated_at":"2016-08-30T15:32:47.380Z","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}'
|
|
101
100
|
http_version:
|
|
102
|
-
recorded_at:
|
|
103
|
-
recorded_with: VCR
|
|
101
|
+
recorded_at: Tue, 30 Aug 2016 15:32:47 GMT
|
|
102
|
+
recorded_with: VCR 3.0.1
|
|
@@ -5,7 +5,7 @@ http_interactions:
|
|
|
5
5
|
uri: https://www.versioneye.com/api/v2/projects
|
|
6
6
|
body:
|
|
7
7
|
encoding: ASCII-8BIT
|
|
8
|
-
string: "--
|
|
8
|
+
string: "--288086\r\nContent-Disposition: form-data; name=\"upload\"; filename=\"maven-1.0.1.pom.xml\"\r\nContent-Type:
|
|
9
9
|
application/xml\r\n\r\n<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n
|
|
10
10
|
\ Licensed to the Apache Software Foundation (ASF) under one or more\n contributor
|
|
11
11
|
license agreements. See the NOTICE file distributed with\n this work for
|
|
@@ -55,17 +55,19 @@ http_interactions:
|
|
|
55
55
|
\ </configuration>\n </plugin>\n </plugins>\n </build>\n\n
|
|
56
56
|
\ <reporting>\n <plugins>\n <plugin>\n <groupId>org.apache.maven.plugins</groupId>\n
|
|
57
57
|
\ <artifactId>maven-plugin-plugin</artifactId>\n <version>3.0</version>\n
|
|
58
|
-
\ </plugin>\n </plugins>\n </reporting>\n</project>\n\r\n--
|
|
59
|
-
form-data; name=\"api_key\"\r\n\r\
|
|
58
|
+
\ </plugin>\n </plugins>\n </reporting>\n</project>\n\r\n--288086\r\nContent-Disposition:
|
|
59
|
+
form-data; name=\"api_key\"\r\n\r\nf82943fbd363bc640782\r\n--288086\r\nContent-Disposition:
|
|
60
|
+
form-data; name=\"temporary\"\r\n\r\ntrue\r\n--288086\r\nContent-Disposition:
|
|
61
|
+
form-data; name=\"visibility\"\r\n\r\npublic\r\n--288086--\r\n"
|
|
60
62
|
headers:
|
|
61
63
|
Accept:
|
|
62
64
|
- "*/*; q=0.5, application/xml"
|
|
63
65
|
Accept-Encoding:
|
|
64
66
|
- gzip, deflate
|
|
65
67
|
Content-Length:
|
|
66
|
-
- '
|
|
68
|
+
- '4594'
|
|
67
69
|
Content-Type:
|
|
68
|
-
- multipart/form-data; boundary=
|
|
70
|
+
- multipart/form-data; boundary=288086
|
|
69
71
|
User-Agent:
|
|
70
72
|
- Ruby
|
|
71
73
|
response:
|
|
@@ -74,29 +76,28 @@ http_interactions:
|
|
|
74
76
|
message: Created
|
|
75
77
|
headers:
|
|
76
78
|
Server:
|
|
77
|
-
- nginx/1.
|
|
79
|
+
- nginx/1.10.0 (Ubuntu)
|
|
78
80
|
Date:
|
|
79
|
-
-
|
|
81
|
+
- Tue, 30 Aug 2016 14:42:17 GMT
|
|
80
82
|
Content-Type:
|
|
81
83
|
- application/json
|
|
82
84
|
Content-Length:
|
|
83
|
-
- '
|
|
85
|
+
- '4915'
|
|
84
86
|
Connection:
|
|
85
87
|
- keep-alive
|
|
86
88
|
Set-Cookie:
|
|
87
|
-
- api_key=
|
|
89
|
+
- api_key=f82943fbd363bc640782
|
|
88
90
|
Etag:
|
|
89
|
-
- W/"
|
|
91
|
+
- W/"844ea883d733fc29d5168d8359a305b0"
|
|
90
92
|
Cache-Control:
|
|
91
93
|
- max-age=0, private, must-revalidate
|
|
92
94
|
X-Request-Id:
|
|
93
|
-
-
|
|
95
|
+
- fb0a7b31-1db6-4a4e-a254-01586c3d95c5
|
|
94
96
|
X-Runtime:
|
|
95
|
-
- '0.
|
|
97
|
+
- '0.840966'
|
|
96
98
|
body:
|
|
97
99
|
encoding: UTF-8
|
|
98
|
-
string: '{"id":"
|
|
99
|
-
:: 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":"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.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-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.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":"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.2","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.2","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}]}'
|
|
100
|
+
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}'
|
|
100
101
|
http_version:
|
|
101
|
-
recorded_at:
|
|
102
|
-
recorded_with: VCR
|
|
102
|
+
recorded_at: Tue, 30 Aug 2016 14:42:17 GMT
|
|
103
|
+
recorded_with: VCR 3.0.1
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: post
|
|
5
|
+
uri: https://www.versioneye.com/api/v2/projects
|
|
6
|
+
body:
|
|
7
|
+
encoding: ASCII-8BIT
|
|
8
|
+
string: "------RubyFormBoundary31N6KWfgloqMhYJ6\r\nContent-Disposition: form-data;
|
|
9
|
+
name=\"upload\"; filename=\"maven-1.0.1.pom.xml\"\r\nContent-Type: application/xml\r\n\r\n<?xml
|
|
10
|
+
version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n Licensed to the Apache Software
|
|
11
|
+
Foundation (ASF) under one or more\n contributor license agreements. See
|
|
12
|
+
the NOTICE file distributed with\n this work for additional information
|
|
13
|
+
regarding copyright ownership.\n The ASF licenses this file to You under
|
|
14
|
+
the Apache License, Version 2.0\n (the \"License\"); you may not use this
|
|
15
|
+
file except in compliance with\n the License. You may obtain a copy of
|
|
16
|
+
the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless
|
|
17
|
+
required by applicable law or agreed to in writing, software\n distributed
|
|
18
|
+
under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES
|
|
19
|
+
OR CONDITIONS OF ANY KIND, either express or implied.\n See the License
|
|
20
|
+
for the specific language governing permissions and\n limitations under
|
|
21
|
+
the License.\n -->\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n
|
|
22
|
+
\ xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0
|
|
23
|
+
http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n <modelVersion>4.0.0</modelVersion>\n\n
|
|
24
|
+
\ <parent>\n <artifactId>openejb</artifactId>\n <groupId>org.apache.openejb</groupId>\n
|
|
25
|
+
\ <version>4.5.1</version>\n </parent>\n\n <groupId>org.apache.openejb.maven</groupId>\n
|
|
26
|
+
\ <version>1.0.1</version>\n <artifactId>maven</artifactId>\n <packaging>pom</packaging>\n
|
|
27
|
+
\ <name>OpenEJB :: Maven Plugins</name>\n\n <modules>\n <module>tomee-maven-plugin</module>\n
|
|
28
|
+
\ <module>tomee-embedded-maven-plugin</module>\n <module>openejb-embedded-maven-plugin</module>\n
|
|
29
|
+
\ <module>maven-util</module>\n <module>tomee-webapp-archetype</module>\n
|
|
30
|
+
\ </modules>\n\n <dependencyManagement>\n <dependencies>\n <dependency>\n
|
|
31
|
+
\ <groupId>org.apache.maven.plugin-tools</groupId>\n <artifactId>maven-plugin-annotations</artifactId>\n
|
|
32
|
+
\ <version>3.1</version>\n </dependency>\n <dependency>\n
|
|
33
|
+
\ <groupId>org.codehaus.plexus</groupId>\n <artifactId>plexus-utils</artifactId>\n
|
|
34
|
+
\ <version>3.0.1</version>\n </dependency>\n <dependency>\n
|
|
35
|
+
\ <groupId>org.apache.maven</groupId>\n <artifactId>maven-plugin-api</artifactId>\n
|
|
36
|
+
\ <version>${maven.version}</version>\n </dependency>\n <dependency>\n
|
|
37
|
+
\ <groupId>org.apache.maven</groupId>\n <artifactId>maven-project</artifactId>\n
|
|
38
|
+
\ <version>${maven.version}</version>\n </dependency>\n <dependency>\n
|
|
39
|
+
\ <groupId>org.apache.maven</groupId>\n <artifactId>maven-core</artifactId>\n
|
|
40
|
+
\ <version>${maven.version}</version>\n </dependency>\n <dependency>\n
|
|
41
|
+
\ <groupId>org.apache.maven</groupId>\n <artifactId>maven-artifact</artifactId>\n
|
|
42
|
+
\ <version>${maven.version}</version>\n </dependency>\n <dependency>\n
|
|
43
|
+
\ <groupId>org.sonatype.aether</groupId>\n <artifactId>aether-api</artifactId>\n
|
|
44
|
+
\ <version>${aether.version}</version>\n </dependency>\n <dependency>\n
|
|
45
|
+
\ <groupId>org.apache.openejb</groupId>\n <artifactId>openejb-core</artifactId>\n
|
|
46
|
+
\ <version>${openejb.version}</version>\n </dependency>\n <dependency>\n
|
|
47
|
+
\ <groupId>org.apache.openejb</groupId>\n <artifactId>openejb-client</artifactId>\n
|
|
48
|
+
\ <version>${openejb.version}</version>\n </dependency>\n </dependencies>\n
|
|
49
|
+
\ </dependencyManagement>\n\n <properties>\n <maven.version>2.2.1</maven.version>\n
|
|
50
|
+
\ </properties>\n\n <build>\n <plugins>\n <plugin>\n <groupId>org.apache.maven.plugins</groupId>\n
|
|
51
|
+
\ <artifactId>maven-plugin-plugin</artifactId>\n <version>3.1</version>\n
|
|
52
|
+
\ <executions>\n <execution>\n <id>mojo-descriptor</id>\n
|
|
53
|
+
\ <goals>\n <goal>descriptor</goal>\n </goals>\n
|
|
54
|
+
\ </execution>\n </executions>\n <configuration>\n <goalPrefix>${maven-plugin.prefix}</goalPrefix>\n
|
|
55
|
+
\ <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>\n
|
|
56
|
+
\ </configuration>\n </plugin>\n </plugins>\n </build>\n\n
|
|
57
|
+
\ <reporting>\n <plugins>\n <plugin>\n <groupId>org.apache.maven.plugins</groupId>\n
|
|
58
|
+
\ <artifactId>maven-plugin-plugin</artifactId>\n <version>3.0</version>\n
|
|
59
|
+
\ </plugin>\n </plugins>\n </reporting>\n</project>\n\r\n------RubyFormBoundary31N6KWfgloqMhYJ6\r\nContent-Disposition:
|
|
60
|
+
form-data; name=\"api_key\"\r\n\r\nf82943fbd363bc640782\r\n------RubyFormBoundary31N6KWfgloqMhYJ6\r\nContent-Disposition:
|
|
61
|
+
form-data; name=\"orga_name\"\r\n\r\nveye_test\r\n------RubyFormBoundary31N6KWfgloqMhYJ6\r\nContent-Disposition:
|
|
62
|
+
form-data; name=\"temporary\"\r\n\r\nfalse\r\n------RubyFormBoundary31N6KWfgloqMhYJ6\r\nContent-Disposition:
|
|
63
|
+
form-data; name=\"visibility\"\r\n\r\npublic\r\n------RubyFormBoundary31N6KWfgloqMhYJ6--\r\n"
|
|
64
|
+
headers:
|
|
65
|
+
Accept:
|
|
66
|
+
- "*/*"
|
|
67
|
+
Accept-Encoding:
|
|
68
|
+
- gzip, deflate
|
|
69
|
+
User-Agent:
|
|
70
|
+
- rest-client/2.0.0 (darwin14.4.0 x86_64) ruby/2.2.1p85
|
|
71
|
+
Content-Length:
|
|
72
|
+
- '4848'
|
|
73
|
+
Content-Type:
|
|
74
|
+
- multipart/form-data; boundary=----RubyFormBoundary31N6KWfgloqMhYJ6
|
|
75
|
+
Host:
|
|
76
|
+
- www.versioneye.com
|
|
77
|
+
response:
|
|
78
|
+
status:
|
|
79
|
+
code: 201
|
|
80
|
+
message: Created
|
|
81
|
+
headers:
|
|
82
|
+
Server:
|
|
83
|
+
- nginx/1.10.0 (Ubuntu)
|
|
84
|
+
Date:
|
|
85
|
+
- Thu, 01 Sep 2016 14:36:06 GMT
|
|
86
|
+
Content-Type:
|
|
87
|
+
- application/json
|
|
88
|
+
Content-Length:
|
|
89
|
+
- '4928'
|
|
90
|
+
Connection:
|
|
91
|
+
- keep-alive
|
|
92
|
+
Set-Cookie:
|
|
93
|
+
- api_key=f82943fbd363bc640782
|
|
94
|
+
Etag:
|
|
95
|
+
- W/"4a99f9af4de177fa6a91b36eaddacf99"
|
|
96
|
+
Cache-Control:
|
|
97
|
+
- max-age=0, private, must-revalidate
|
|
98
|
+
X-Request-Id:
|
|
99
|
+
- 5f58fbca-7810-4f07-ba36-d67520284c92
|
|
100
|
+
X-Runtime:
|
|
101
|
+
- '0.591875'
|
|
102
|
+
body:
|
|
103
|
+
encoding: UTF-8
|
|
104
|
+
string: '{"id":"57c83cd512b52600121e9161","name":"OpenEJB :: Maven Plugins","project_type":"Maven2","organisation":{"name":"veye_test","company":"VersionEye","location":"Mannheim"},"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-09-01T14:36:05.900Z","updated_at":"2016-09-01T14:36:06.271Z","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}'
|
|
105
|
+
http_version:
|
|
106
|
+
recorded_at: Thu, 01 Sep 2016 14:36:06 GMT
|
|
107
|
+
recorded_with: VCR 3.0.3
|