artrest 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (61) hide show
  1. checksums.yaml +15 -0
  2. data/.gitignore +20 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +29 -0
  6. data/Rakefile +31 -0
  7. data/artrest.gemspec +30 -0
  8. data/bin/artrest +194 -0
  9. data/lib/artrest.rb +81 -0
  10. data/lib/artrest/build.rb +31 -0
  11. data/lib/artrest/buildnumber.rb +26 -0
  12. data/lib/artrest/builds.rb +46 -0
  13. data/lib/artrest/dir_entry.rb +115 -0
  14. data/lib/artrest/repositories.rb +61 -0
  15. data/lib/artrest/repository.rb +42 -0
  16. data/lib/artrest/resource.rb +366 -0
  17. data/lib/artrest/resources.rb +54 -0
  18. data/lib/artrest/system.rb +74 -0
  19. data/lib/artrest/system_general_configuration.rb +45 -0
  20. data/lib/artrest/version.rb +3 -0
  21. data/spec/artrest/build_spec.rb +62 -0
  22. data/spec/artrest/buildnumber_spec.rb +45 -0
  23. data/spec/artrest/builds_spec.rb +69 -0
  24. data/spec/artrest/folder_spec.rb +88 -0
  25. data/spec/artrest/repositories_spec.rb +47 -0
  26. data/spec/artrest/repository_spec.rb +63 -0
  27. data/spec/artrest/resource_spec.rb +385 -0
  28. data/spec/artrest/resources_spec.rb +66 -0
  29. data/spec/artrest/system_general_configuration_spec.rb +72 -0
  30. data/spec/artrest/system_spec.rb +50 -0
  31. data/spec/artrest_spec.rb +30 -0
  32. data/spec/fixtures/build/build_response_correct.txt +7 -0
  33. data/spec/fixtures/buildnumber/buildnumber_25_response.txt +7 -0
  34. data/spec/fixtures/builds/build_api_response_correct.txt +7 -0
  35. data/spec/fixtures/folder/pom_file_response_1.txt +7 -0
  36. data/spec/fixtures/folder/sub_folder_response.txt +7 -0
  37. data/spec/fixtures/folder/top_folder_response.txt +7 -0
  38. data/spec/fixtures/repositories/libs_snapshot_local_folder_response.txt +7 -0
  39. data/spec/fixtures/repositories/repositories_response.txt +7 -0
  40. data/spec/fixtures/repository/libs_snapshot_local_response.txt +7 -0
  41. data/spec/fixtures/resource/artifact_response.txt +7 -0
  42. data/spec/fixtures/resource/build_response.txt +7 -0
  43. data/spec/fixtures/resource/buildnumber_response.txt +7 -0
  44. data/spec/fixtures/resource/builds_response.txt +7 -0
  45. data/spec/fixtures/resource/folder_response.txt +7 -0
  46. data/spec/fixtures/resource/json_response.txt +7 -0
  47. data/spec/fixtures/resource/repositories_response.txt +7 -0
  48. data/spec/fixtures/resource/repository_not_found_response.txt +7 -0
  49. data/spec/fixtures/resource/repository_response.txt +7 -0
  50. data/spec/fixtures/resource/repository_unauthorized_response.txt +8 -0
  51. data/spec/fixtures/resource/string_response.txt +188 -0
  52. data/spec/fixtures/resource/sub_response.txt +188 -0
  53. data/spec/fixtures/resource/system_general_configuration_response.txt +654 -0
  54. data/spec/fixtures/resource/system_response.txt +188 -0
  55. data/spec/fixtures/resources/resources_response.txt +7 -0
  56. data/spec/fixtures/system/200_OK_ping_response.txt +7 -0
  57. data/spec/fixtures/system/general_configuration_response.txt +654 -0
  58. data/spec/fixtures/system/system_response.txt +188 -0
  59. data/spec/spec.opts +5 -0
  60. data/spec/spec_helper.rb +38 -0
  61. metadata +269 -0
@@ -0,0 +1,66 @@
1
+ require File.expand_path("../../spec_helper", __FILE__)
2
+
3
+ describe ArtRest::Resources do
4
+
5
+ before(:each) do
6
+ @resources_path = "api/builds";
7
+ @resources_url = "#{ARTIFACTORY_URL}/#{@resources_path}"
8
+ @resources_res = ResourcesSample.new(@resources_url, OPTIONS)
9
+ register_stub_request('./resources/resources_response.txt', @resources_path)
10
+ end
11
+
12
+ describe "#content" do
13
+ it "should return json content as Ruby hash" do
14
+ content = @resources_res.content
15
+ content.should_not be_nil
16
+ content.should be_an_instance_of Hash
17
+ end
18
+ end
19
+
20
+ describe "#each" do
21
+ it "should iterate over all included resources" do
22
+ @resources_res.each do |res|
23
+ res.should_not be_nil
24
+ res.should be_an_instance_of ResourcesSample::Resource
25
+ end
26
+ end
27
+ end
28
+ end
29
+
30
+ class ResourcesSample < ArtRest::Resources
31
+
32
+ class Resource < ArtRest::Resource
33
+
34
+ class << self
35
+
36
+ protected
37
+
38
+ def matches_path(path, options)
39
+ path =~ %r|^/artifactory/api/builds/\w+$|
40
+ end
41
+ end
42
+
43
+ def initialize(resource_url, options, &block)
44
+ super(resource_url, options, &block)
45
+ end
46
+ end
47
+
48
+ self.mime_type = MIME::Types['application/json']
49
+ self.resources_creator = Proc.new do |content, options|
50
+ self_url = content['uri']
51
+ content['builds'].map { |build| ResourcesSample::Resource.new("#{self_url}#{build['uri']}", OPTIONS) }
52
+ end
53
+
54
+ class << self
55
+
56
+ protected
57
+
58
+ def matches_path(path, options)
59
+ path =~ %r|^/artifactory/api/builds$|
60
+ end
61
+ end
62
+
63
+ def initialize(url, options, &block)
64
+ super(url, options, &block)
65
+ end
66
+ end
@@ -0,0 +1,72 @@
1
+ require File.expand_path("../../spec_helper", __FILE__)
2
+
3
+ describe ArtRest::System::GeneralConfiguration do
4
+
5
+ before(:each) do
6
+ @artsys_config_url = "#{ARTIFACTORY_URL}/api/system/configuration"
7
+ @artsys_config = ArtRest::System::GeneralConfiguration.new(@artsys_config_url, OPTIONS)
8
+ register_stub_request('./system/general_configuration_response.txt', "api/system/configuration")
9
+ end
10
+
11
+ describe "::get" do
12
+ it "should allow a shortcut to access Artifactory's general configuration" do
13
+ general_config = ArtRest::System::GeneralConfiguration.get(ARTIFACTORY_URL, OPTIONS)
14
+ general_config.should be_an_instance_of ArtRest::System::GeneralConfiguration
15
+ end
16
+ end
17
+
18
+ describe "#content" do
19
+ it "should return configuration as a String" do
20
+ content = @artsys_config.content
21
+ content.should be_an_instance_of String
22
+ end
23
+ end
24
+
25
+ describe "#update!" do
26
+
27
+ before(:each) do
28
+ @authenticated_artsys_config_url = @artsys_config_url.
29
+ gsub('http://', "http://#{ARTIFACTORY_USER}:#{ARTIFACTORY_PWD}@")
30
+ @updated_configuration = 'UPDATED'
31
+ stub_request(:post, @authenticated_artsys_config_url).
32
+ with(:body => @updated_configuration).
33
+ to_return(:status => 200, :body => "", :headers => {})
34
+ end
35
+
36
+ after(:each) do
37
+ a_request(:post, @authenticated_artsys_config_url).
38
+ with(:body => @updated_configuration).should have_been_made.once
39
+ end
40
+
41
+ it "should post updated system configuration" do
42
+ @artsys_config.content = @updated_configuration
43
+ @artsys_config.update!
44
+ end
45
+ end
46
+
47
+ describe "#update_with!" do
48
+
49
+ before(:each) do
50
+ @authenticated_artsys_config_url = @artsys_config_url.
51
+ gsub('http://', "http://#{ARTIFACTORY_USER}:#{ARTIFACTORY_PWD}@")
52
+ @updated_configuration = 'UPDATED'
53
+ stub_request(:post, @authenticated_artsys_config_url).
54
+ with(:body => @updated_configuration).
55
+ to_return(:status => 200, :body => "", :headers => {})
56
+ end
57
+
58
+ after(:each) do
59
+ a_request(:post, @authenticated_artsys_config_url).
60
+ with(:body => @updated_configuration).should have_been_made.once
61
+ end
62
+
63
+ it "should accept provided content as resource's new content" do
64
+ @artsys_config.update_with!(@updated_configuration)
65
+ @artsys_config.content.should == @updated_configuration
66
+ end
67
+
68
+ it "should post updated system configuration" do
69
+ @artsys_config.update_with!(@updated_configuration)
70
+ end
71
+ end
72
+ end
@@ -0,0 +1,50 @@
1
+ require File.expand_path("../../spec_helper", __FILE__)
2
+
3
+ describe ArtRest::System do
4
+
5
+ before(:each) do
6
+ @artsys_url = "#{ARTIFACTORY_URL}/api/system"
7
+ @artsys = ArtRest::System.new(@artsys_url, OPTIONS)
8
+ register_stub_request('./system/system_response.txt', "api/system")
9
+ end
10
+
11
+ describe "::get" do
12
+ it "should allow a shortcut to access system info" do
13
+ system_info = ArtRest::System.get(ARTIFACTORY_URL, OPTIONS)
14
+ system_info.should be_an_instance_of ArtRest::System
15
+ end
16
+ end
17
+
18
+ describe "#to_s" do
19
+ it "should output system info as text" do
20
+ @artsys.to_s.should be_an_instance_of String
21
+ end
22
+ end
23
+
24
+ describe "#ping" do
25
+
26
+ context "when server is healthy" do
27
+ before(:each) do
28
+ register_stub_request('./system/200_OK_ping_response.txt', "api/system/ping")
29
+ end
30
+
31
+ it "should return response carrying HTTP code 200" do
32
+ ping_response = @artsys.ping
33
+ ping_response.code.should eq 200
34
+ end
35
+ end
36
+ end
37
+
38
+ describe "#configuration" do
39
+
40
+ before(:each) do
41
+ @artsys_config_url = "#{ARTIFACTORY_URL}/api/system/configuration"
42
+ @artsys_config = ArtRest::System::GeneralConfiguration.new(@artsys_config_url, OPTIONS)
43
+ register_stub_request('./system/general_configuration_response.txt', "api/system/configuration")
44
+ end
45
+
46
+ it "should return Artifactory's general configuration as an ArtRest::System::GeneralConfiguration instance" do
47
+ @artsys.configuration.should be_an_instance_of ArtRest::System::GeneralConfiguration
48
+ end
49
+ end
50
+ end
@@ -0,0 +1,30 @@
1
+ require File.expand_path("../spec_helper", __FILE__)
2
+
3
+ describe ArtRest do
4
+
5
+ before(:each) do
6
+ ArtRest.connect(ARTIFACTORY_URL, ARTIFACTORY_USER, ARTIFACTORY_PWD)
7
+ end
8
+
9
+ describe "::system" do
10
+ before(:each) do
11
+ register_stub_request('./system/system_response.txt', "api/system")
12
+ end
13
+
14
+ it "should allow a shortcut access to system info" do
15
+ system_info = ArtRest.system
16
+ system_info.should be_an_instance_of ArtRest::System
17
+ end
18
+ end
19
+
20
+ describe "::builds" do
21
+ before(:each) do
22
+ register_stub_request('./builds/build_api_response_correct.txt', "api/builds")
23
+ end
24
+
25
+ it "should allow a shortcut access to builds" do
26
+ builds = ArtRest.builds
27
+ builds.should be_an_instance_of ArtRest::Builds
28
+ end
29
+ end
30
+ end
@@ -0,0 +1,7 @@
1
+ HTTP/1.1 200 OK
2
+ Server: Artifactory/2.4.2
3
+ Content-Type: application/vnd.org.jfrog.build.BuildsByName+json
4
+ Transfer-Encoding: chunked
5
+ Date: Sun, 04 Nov 2012 20:35:37 GMT
6
+
7
+ {"uri":"http://dev.vhost.net:8081/artifactory/api/build/vnet.sms.common.shell","buildsNumbers":[{"uri":"/25","started":"2012-04-11T19:34:25.116+0200"},{"uri":"/60","started":"2012-04-13T05:35:17.847+0200"},{"uri":"/58","started":"2012-04-13T04:33:04.051+0200"},{"uri":"/23","started":"2012-04-11T18:33:03.677+0200"},{"uri":"/27","started":"2012-04-11T20:34:57.180+0200"},{"uri":"/64","started":"2012-04-13T07:35:34.888+0200"},{"uri":"/39","started":"2012-04-12T01:32:51.245+0200"},{"uri":"/12","started":"2012-04-11T13:02:36.447+0200"},{"uri":"/38","started":"2012-04-12T01:18:19.439+0200"},{"uri":"/15","started":"2012-04-11T14:33:16.176+0200"},{"uri":"/32","started":"2012-04-11T23:04:50.203+0200"},{"uri":"/2","started":"2012-04-03T07:02:21.113+0200"},{"uri":"/47","started":"2012-04-12T05:40:56.672+0200"},{"uri":"/51","started":"2012-04-12T07:37:12.284+0200"},{"uri":"/29","started":"2012-04-11T21:33:42.991+0200"},{"uri":"/62","started":"2012-04-13T06:35:26.097+0200"},{"uri":"/5","started":"2012-04-10T17:51:54.820+0200"},{"uri":"/43","started":"2012-04-12T03:35:44.379+0200"},{"uri":"/45","started":"2012-04-12T04:35:09.350+0200"},{"uri":"/37","started":"2012-04-12T01:03:26.341+0200"},{"uri":"/4","started":"2012-04-10T17:34:39.562+0200"},{"uri":"/36","started":"2012-04-12T00:58:28.903+0200"},{"uri":"/7","started":"2012-04-10T18:54:39.594+0200"},{"uri":"/55","started":"2012-04-13T03:31:03.056+0200"},{"uri":"/63","started":"2012-04-13T07:03:15.106+0200"},{"uri":"/16","started":"2012-04-11T15:02:39.076+0200"},{"uri":"/28","started":"2012-04-11T21:04:15.522+0200"},{"uri":"/20","started":"2012-04-11T17:05:39.028+0200"},{"uri":"/24","started":"2012-04-11T19:05:22.198+0200"},{"uri":"/61","started":"2012-04-13T06:05:05.454+0200"},{"uri":"/22","started":"2012-04-11T18:02:52.830+0200"},{"uri":"/44","started":"2012-04-12T04:05:38.742+0200"},{"uri":"/34","started":"2012-04-12T00:05:54.455+0200"},{"uri":"/26","started":"2012-04-11T20:04:39.283+0200"},{"uri":"/42","started":"2012-04-12T03:03:42.665+0200"},{"uri":"/50","started":"2012-04-12T07:04:03.780+0200"},{"uri":"/35","started":"2012-04-12T00:33:59.636+0200"},{"uri":"/30","started":"2012-04-11T22:03:04.004+0200"},{"uri":"/19","started":"2012-04-11T16:32:41.724+0200"},{"uri":"/11","started":"2012-04-11T12:33:59.958+0200"},{"uri":"/33","started":"2012-04-11T23:38:01.033+0200"},{"uri":"/40","started":"2012-04-12T02:05:40.885+0200"},{"uri":"/17","started":"2012-04-11T15:32:56.494+0200"},{"uri":"/13","started":"2012-04-11T13:33:10.408+0200"},{"uri":"/41","started":"2012-04-12T02:35:58.155+0200"},{"uri":"/48","started":"2012-04-12T06:05:24.040+0200"},{"uri":"/8","started":"2012-04-11T11:00:01.579+0200"},{"uri":"/57","started":"2012-04-13T04:05:02.750+0200"},{"uri":"/3","started":"2012-04-10T16:15:23.794+0200"},{"uri":"/6","started":"2012-04-10T18:33:49.174+0200"},{"uri":"/56","started":"2012-04-13T03:33:25.201+0200"},{"uri":"/14","started":"2012-04-11T14:04:01.988+0200"},{"uri":"/18","started":"2012-04-11T16:03:32.950+0200"},{"uri":"/52","started":"2012-04-12T08:39:55.633+0200"},{"uri":"/53","started":"2012-04-12T09:03:42.378+0200"},{"uri":"/9","started":"2012-04-11T11:04:17.841+0200"},{"uri":"/54","started":"2012-04-12T09:35:13.359+0200"},{"uri":"/46","started":"2012-04-12T05:05:16.538+0200"},{"uri":"/21","started":"2012-04-11T17:33:41.426+0200"},{"uri":"/59","started":"2012-04-13T05:05:24.888+0200"},{"uri":"/49","started":"2012-04-12T06:35:54.058+0200"},{"uri":"/31","started":"2012-04-11T22:35:14.946+0200"},{"uri":"/10","started":"2012-04-11T11:32:31.065+0200"}]}
@@ -0,0 +1,7 @@
1
+ HTTP/1.1 200 OK
2
+ Server: Artifactory/2.4.2
3
+ Content-Type: application/vnd.org.jfrog.build.BuildInfo+json
4
+ Transfer-Encoding: chunked
5
+ Date: Thu, 22 Nov 2012 20:42:16 GMT
6
+
7
+ {"uri":"http://dev.vhost.net:8081/artifactory/api/build/vnet.sms.common.shell/25","buildInfo":{"name":"vnet.sms.common.shell","type":"MAVEN","number":"25","version":"1.0.1","principal":"auto","parentName":"vnet.sms.common","url":"http://jenkins.vhost.net:8080/job/vnet.sms.common.shell/25/","started":"2012-04-11T19:34:25.116+0200","modules":[{"id":"vnet.sms.common:shell:1.0.0-SNAPSHOT","artifacts":[{"name":"shell-1.0.0-SNAPSHOT.pom","type":"pom","sha1":"722c85addd59e860615e8a543ca8c8022e7fc1c4","md5":"2f010b3bbea9cb2f97f8644141d4686a"}],"dependencies":[{"id":"org.objenesis:objenesis:1.2","scopes":["test"],"type":"jar","sha1":"bfcb0539a071a4c5a30690388903ac48c0667f2a","md5":"bee117291d50b41b8e8cf0ac5435df1d"},{"id":"org.easymock:easymock:3.1","scopes":["test"],"type":"jar","sha1":"3e127311a86fc2e8f550ef8ee4abe094bbcf7e7e","md5":"dfeff8c4114c01ef435ec74e228e5f91"},{"id":"com.google.guava:guava:11.0.2","scopes":["runtime"],"type":"jar","sha1":"35a3c69e19d72743cac83778aecbee68680f63eb","md5":"bed5977336ea1279d2bad3bb258dc8c3"},{"id":"junit:junit:4.10","scopes":["test"],"type":"jar","sha1":"e4f1766ce7404a08f45d859fb9c226fc9e41a861","md5":"68380001b88006ebe49be50cef5bb23a"},{"id":"com.google.code.findbugs:jsr305:1.3.9","scopes":["runtime"],"type":"jar","sha1":"40719ea6961c0cb6afaeb6a921eaa1f6afd4cfdf","md5":"1d5a772e400b04bb67a7ef4a0e0996d8"},{"id":"cglib:cglib-nodep:2.2.2","scopes":["test"],"type":"jar","sha1":"00d456bb230c70c0b95c76fb28e429d42f275941","md5":"af93e373d7ddf35db0e9612480d9ed13"},{"id":"javax.inject:javax.inject:1","scopes":["compile"],"type":"jar","sha1":"6975da39a7040257bd51d21a231b76c915872d38","md5":"289075e48b909e9e74e6c915b3631d2e"},{"id":"org.hamcrest:hamcrest-core:1.1","scopes":["test"],"type":"jar","sha1":"860340562250678d1a344907ac75754e259cdb14","md5":"b66d0c48e1f1dc54d4227db52512c15b"},{"id":"javax.annotation:jsr250-api:1.0","scopes":["compile"],"type":"jar","sha1":"5025422767732a1ab45d93abfea846513d742dcf","md5":"4cd56b2e4977e541186de69f5126b4a6"},{"id":"ch.qos.logback:logback-core:1.0.5","scopes":["runtime"],"type":"jar","sha1":"75bd856accdff2512437b93f034ef50585535dfa","md5":"7f83388919dcf2fd9eb11709500d104b"},{"id":"org.springframework:spring-test:3.1.1.RELEASE","scopes":["test"],"type":"jar","sha1":"de2889e5d2d6f22e1590dcab846e938827e1a936","md5":"c8c8878b3adc71db31e3868a4d3d8ef5"},{"id":"commons-lang:commons-lang:2.6","scopes":["compile"],"type":"jar","sha1":"0ce1edb914c94ebc388f086c6827e8bdeec71ac2","md5":"4d5c1693079575b362edf41500630bbd"},{"id":"org.slf4j:jcl-over-slf4j:1.6.6","scopes":["runtime"],"type":"jar","sha1":"ec497945fdcaf7fd970ae9931b9bbfaf735d385e","md5":"fad4e4da2493bd7971dc2356285b1f67"},{"id":"ch.qos.logback:logback-classic:1.0.5","scopes":["runtime"],"type":"jar","sha1":"918e81a9685ce8ef10c0262e43e8d0a8e547a2b6","md5":"e032f3e16b6fe8fdd8de01f1d821f076"},{"id":"me.moocar:logback-gelf:0.9.6","scopes":["runtime"],"type":"jar","sha1":"3caab533428ba16b3d5f8d975474e6697edf5e19","md5":"1090dba68429d3ce705be505cfe2726c"},{"id":"com.google.code.gson:gson:1.4","scopes":["runtime"],"type":"jar","sha1":"c2c2d342e134a390723e4802891c0df1bf749171","md5":"47e5c393ee0566dc0fe145565bd589b1"},{"id":"org.slf4j:slf4j-api:1.6.6","scopes":["compile"],"type":"jar","sha1":"ce53b0a0e2cfbb27e8a59d38f79a18a5c6a8d2b0","md5":"17ba6715f5defd50b2e781201f57b408"}],"properties":{"compiler.debug":"true","deps.ehcache.version":"2.5.2","deps.yammer-metrics.version":"2.1.2","deps.osgi-core.version":"4.3.0","module.gateway.netty-gateway-support.version":"1.0.0-SNAPSHOT","deps.sshd.version":"0.6.0","module.gateway.version":"1.0.0-SNAPSHOT","module.routing-engine.log4j-gelf-appender-fragment.version":"1.0.0-SNAPSHOT","deps.felix-configadmin.version":"1.2.8","module.common.shell.clamshell-ssh-server.version":"1.0.0-SNAPSHOT","plugins.license.version":"1.8.0","deps.xbean.version":"2.8","parsedVersion.nextMinorVersion":"1","plugins.plugin.version":"2.9","parsedVersion.incrementalVersion":"0","deps.slf4j.version":"1.6.6","deps.jta.version":"1.1","project.build.sourceEncoding":"UTF-8","plugins.project-info-reports.version":"2.4","deps.astyanax.version":"1.0.3","compiler.compilerVersion":"1.6","plugins.assembly.version":"2.3","plugins.gmaven.version":"1.4","plugins.surefire.version":"2.12","module.routing-engine.blueprint-test-support.version":"1.0.0-SNAPSHOT","compiler.showWarnings":"true","deps.pax-swissbox-tinybundles.version":"1.3.1","compiler.target":"1.6","compiler.showDeprecation":"true","module.routing-engine.platform.version":"1.0.0-SNAPSHOT","module.common.shell.version":"1.0.0-SNAPSHOT","parsedVersion.qualifier":"SNAPSHOT","buildNumber":"1","plugins.install.version":"2.3.1","plugins.buildnumber.version":"1.0","parsedVersion.majorVersion":"1","module.gateway.server.server-framework.version":"1.0.0-SNAPSHOT","module.gateway.transport-plugin-support.version":"1.0.0-SNAPSHOT","plugins.exec.version":"1.2.1","deps.arquillian.version":"1.0.0.CR7","module.common.version":"1.0.0-SNAPSHOT","plugins.failsafe.version":"2.12","module.gateway.netty-test-support.version":"1.0.0-SNAPSHOT","module.routing-engine.branding.version":"1.0.0-SNAPSHOT","plugins.javadoc.version":"2.8.1","deps.junit.version":"4.10","plugins.compiler.version":"2.3.2","plugins.surefire-reports.version":"2.12","deps.mockrunner.version":"0.3.1","deps.spring.version":"3.1.1.RELEASE","plugins.pmd.version":"2.7.1","plugins.resources.version":"2.5","compiler.verbose":"true","project.reporting.outputEncoding":"UTF-8","deps.aries.version":"0.3","module.common.shell.spring-shell-sshd.version":"1.0.0-SNAPSHOT","module.infrastructure.rpm-elasticsearch.version":"1.0.0-SNAPSHOT","plugins.jxr.version":"2.3","module.infrastructure.version":"1.0.0-SNAPSHOT","module.notification-cluster.cassandra-cachewriter.version":"1.0.0-SNAPSHOT","module.common.shell.spring-shell.version":"1.0.0-SNAPSHOT","module.common.shell.clamshell-spring.version":"1.0.0-SNAPSHOT","plugins.deploy.version":"2.7","parsedVersion.osgiVersion":"1.0.0.SNAPSHOT","deps.osgi-compendium.version":"4.2.0","deps.camel.version":"2.9.0","deps.spring-security.version":"3.1.0.RELEASE","parsedVersion.minorVersion":"0","plugins.dependency.version":"2.4","deps.logback-gelf.version":"0.9.6","compiler.source":"1.6","module.gateway.transports.serialization-transport.version":"1.0.0-SNAPSHOT","deps.logback.version":"1.0.5","module.routing-engine.distribution.version":"1.0.0-SNAPSHOT","deps.groovy.version":"1.7.8","deps.spring-shell.version":"1.0.0.BUILD-SNAPSHOT","module.common.executor-support.version":"1.0.0-SNAPSHOT","timestamp":"1334165669963","plugins.site.version":"3.0","module.gateway.server.version":"1.0.0-SNAPSHOT","module.gateway.transport-spi.version":"1.0.0-SNAPSHOT","module.routing-engine.core.version":"1.0.0-SNAPSHOT","plugins.clean.version":"2.4.1","module.common.spring-extensions.version":"1.0.0-SNAPSHOT","deps.pojosr.version":"0.1.8","deps.easymock.version":"3.1","module.notification-cluster.version":"1.0.0-SNAPSHOT","plugins.karaf.version":"2.2.5","deps.netty.version":"3.5.0.Final","deps.karaf.version":"2.2.5","module.common.windowed-message-event-library.version":"1.0.0-SNAPSHOT","parsedVersion.buildNumber":"0","module.routing-engine.jms-broker.version":"1.0.0-SNAPSHOT","parsedVersion.nextMajorVersion":"2","plugins.source.version":"2.1.2","plugins.bundle.version":"2.3.7","deps.google-guava.version":"11.0.2","module.routing-engine.version":"1.0.0-SNAPSHOT","deps.xbean-spring.version":"3.5","module.gateway.server.serialization-server-minimal.version":"1.0.0-SNAPSHOT","parsedVersion.nextIncrementalVersion":"1","deps.jms.version":"1.1","scmBranch":"UNKNOWN","module.common.message-library.version":"1.0.0-SNAPSHOT","plugins.build-helper.version":"1.7","deps.jsr250-api.version":"1.0","deps.activemq.version":"5.5.1","deps.cassandra-unit.version":"1.0.3.1","plugins.cobertura.version":"2.5","module.gateway.transports.version":"1.0.0-SNAPSHOT","deps.javax-inject.version":"1"}}],"buildAgent":{"name":"Maven","version":"3.0.3"},"buildRetention":{"count":-1,"deleteBuildArtifacts":true,"buildNumbersNotToBeDiscarded":[]},"parentNumber":"108","vcsRevision":"0c53e568c4881dc5c7a7e5acdc55c4bbd470cb62","agent":{"name":"Jenkins","version":"1.473"},"durationMillis":13229,"artifactoryPrincipal":"admin","licenseControl":{"runChecks":false,"includePublishedArtifacts":false,"autoDiscover":true,"scopesList":"","licenseViolationsRecipientsList":""},"properties":{"buildInfo.env.os.version":"2.6.32-220.7.1.el6.x86_64","buildInfo.env.JENKINS_HOME":"/var/lib/jenkins","buildInfo.env.java.vm.specification.name":"Java Virtual Machine Specification","buildInfo.env.java.vm.info":"mixed mode","buildInfo.env.GIT_COMMITTER_NAME":"obergner","buildInfo.env.JAVA_HOME":"/usr/java/jdk1.6.0_30","buildInfo.env.GIT_BRANCH":"origin/HEAD","buildInfo.env.JOB_NAME":"vnet.sms.common.shell","buildInfo.env.GIT_COMMITTER_EMAIL":"olaf.bergner@gmx.de","buildInfo.env.java.vm.name":"Java HotSpot(TM) 64-Bit Server VM","buildInfo.env.CLASSPATH":"","buildInfo.env.JOB_URL":"http://jenkins.vhost.net:8080/job/vnet.sms.common.shell/","buildInfo.env.HUDSON_HOME":"/var/lib/jenkins","buildInfo.env.GIT_AUTHOR_EMAIL":"olaf.bergner@gmx.de","buildInfo.env.EXECUTOR_NUMBER":"1","buildInfo.env.GIT_COMMIT":"0c53e568c4881dc5c7a7e5acdc55c4bbd470cb62","buildInfo.env.BUILD_TAG":"jenkins-vnet.sms.common.shell-25","buildInfo.env.classworlds.conf":"/tmp/classworlds4276472836054108964conf","buildInfo.env.java.vm.vendor":"Sun Microsystems Inc.","buildInfo.env.WORKSPACE":"/var/lib/jenkins/jobs/vnet.sms.common.shell/workspace","buildInfo.env.HUDSON_SERVER_COOKIE":"bddfba65cd1124b3cf17d3ae138fcc26","buildInfo.env.NODE_LABELS":"master","buildInfo.env.HUDSON_URL":"http://jenkins.vhost.net:8080/","buildInfo.env.BUILD_NUMBER":"25","buildInfo.env.extractor.used":"true","buildInfo.env.BUILD_URL":"http://jenkins.vhost.net:8080/job/vnet.sms.common.shell/25/","buildInfo.env.PATH+JDK":"/usr/java/jdk1.6.0_30/bin","buildInfo.env.JENKINS_SERVER_COOKIE":"bddfba65cd1124b3cf17d3ae138fcc26","buildInfo.env.os.name":"Linux","buildInfo.env.os.arch":"amd64","buildInfo.env.BUILD_ID":"2012-04-11_19-34-07","buildInfo.env.JENKINS_URL":"http://jenkins.vhost.net:8080/","buildInfo.env.GIT_AUTHOR_NAME":"obergner","buildInfo.env.java.version":"1.6.0_30","buildInfo.env.NODE_NAME":"master"}}}
@@ -0,0 +1,7 @@
1
+ HTTP/1.1 200 OK
2
+ Server: Artifactory/2.4.2
3
+ Content-Type: application/vnd.org.jfrog.build.Builds+json
4
+ Transfer-Encoding: chunked
5
+ Date: Sun, 04 Nov 2012 19:13:02 GMT
6
+
7
+ {"uri":"http://dev.vhost.net:8081/artifactory/api/build","builds":[{"uri":"/vnet.sms.gateway.netty-gateway-support","lastStarted":"2012-04-13T07:43:51.929+0200"},{"uri":"/vnet.sms.common.shell","lastStarted":"2012-04-13T07:35:34.888+0200"},{"uri":"/vnet.sms.notification-cluster","lastStarted":"2012-04-13T07:32:57.352+0200"},{"uri":"/vnet.sms.common.message-library","lastStarted":"2012-04-13T07:35:59.679+0200"},{"uri":"/cd.vnet.sms.gateway.committest-stage","lastStarted":"2012-09-01T20:45:59.815+0200"},{"uri":"/vnet.sms.common.shell.spring-shell","lastStarted":"2012-04-13T07:39:30.150+0200"},{"uri":"/vnet.sms.gateway.server.server-framework","lastStarted":"2012-04-13T06:52:30.196+0200"},{"uri":"/vnet.sms.routing-engine.distribution","lastStarted":"2012-04-12T02:51:55.549+0200"},{"uri":"/VNET+-+SMS+-+Gateway+-+Server+-+Server+Framework","lastStarted":"2012-03-06T01:46:47.854+0100"},{"uri":"/VNET+-+SMS+-+Common+-+Message+Library","lastStarted":"2012-03-06T01:33:20.855+0100"},{"uri":"/vnet.sms.routing-engine.log4j-gelf-appender-fragment","lastStarted":"2012-04-13T07:37:54.410+0200"},{"uri":"/cd.vnet.sms.common.committest-stage","lastStarted":"2012-09-01T20:33:07.228+0200"},{"uri":"/VNET+-+SMS+-+Gateway+-+Server+-+Minimal+Serialization+Server","lastStarted":"2012-03-06T01:49:16.339+0100"},{"uri":"/vnet.sms.gateway.transports","lastStarted":"2012-04-13T07:33:18.937+0200"},{"uri":"/vnet.sms.routing-engine.blueprint-test-support","lastStarted":"2012-04-13T07:38:38.723+0200"},{"uri":"/VNET+-+SMS+-+Routing+Engine+-+JMS+Broker","lastStarted":"2012-03-06T01:38:16.313+0100"},{"uri":"/VNET+-+SMS+-+Routing+Engine","lastStarted":"2012-03-06T01:32:46.610+0100"},{"uri":"/VNET+-+SMS+-+Routing","lastStarted":"2012-02-21T05:01:41.297+0100"},{"uri":"/cd.vnet.sms.routing-engine.committest-stage","lastStarted":"2012-09-01T20:39:36.115+0200"},{"uri":"/VNET+-+SMS+-+Routing+Engine+-+Log4J+GELF+Appender+Fragment","lastStarted":"2012-03-06T01:37:35.507+0100"},{"uri":"/cd.vnet.sms.committest-stage","lastStarted":"2012-08-12T15:34:24.696+0200"},{"uri":"/VNET+-+SMS+-+Routing+Engine+-+Blueprint+Test+Support","lastStarted":"2012-03-06T01:36:58.051+0100"},{"uri":"/vnet.sms.common.spring-extensions","lastStarted":"2012-04-13T07:34:20.451+0200"},{"uri":"/vnet.sms.routing-engine.core","lastStarted":"2012-04-13T07:16:07.681+0200"},{"uri":"/VNET+-SMS+-+Common+-+Spring+Extensions","lastStarted":"2012-03-06T01:34:31.586+0100"},{"uri":"/VNET+-+SMS+-+Routing+Engine+-+Core","lastStarted":"2012-03-06T01:39:09.745+0100"},{"uri":"/vnet.sms.gateway.transport-plugin-support","lastStarted":"2012-04-13T07:21:37.355+0200"},{"uri":"/vnet.sms.notification-cluster.cassandra-cachewriter","lastStarted":"2012-04-13T07:38:47.595+0200"},{"uri":"/VNET+-+SMS+-+Routing+Engine+-+Distribution","lastStarted":"2012-03-06T01:41:13.207+0100"},{"uri":"/VNET+-+SMS+-+Gateway+-+Server","lastStarted":"2012-03-06T01:36:19.575+0100"},{"uri":"/vnet.sms.gateway.server.minimal-serialization-server","lastStarted":"2012-04-13T07:25:16.983+0200"},{"uri":"/cd.vnet.sms.parent.no-stage","lastStarted":"2012-09-01T20:30:04.133+0200"},{"uri":"/VNET+-+SMS+-+Gateway+-+Transport+Plugin+Support","lastStarted":"2012-03-06T01:45:37.366+0100"},{"uri":"/VNET+-+SMS+-+Gateway+-+Netty+Gateway+Support","lastStarted":"2012-03-06T01:40:06.497+0100"},{"uri":"/cd.vnet.sms.notification-cluster.committest-stage","lastStarted":"2012-09-01T20:38:25.403+0200"},{"uri":"/vnet.sms.common.windowed-message-event-library","lastStarted":"2012-04-13T07:40:48.012+0200"},{"uri":"/VNET+-+SMS+-+Gateway+-+Netty+Test+Support","lastStarted":"2012-03-06T01:35:12.705+0100"},{"uri":"/vnet.sms.infrastructure","lastStarted":"2012-04-12T09:32:06.491+0200"},{"uri":"/vnet.sms.common.executor-support","lastStarted":"2012-04-13T07:36:10.950+0200"},{"uri":"/vnet.sms.common.shell.spring-shell-sshd","lastStarted":"2012-04-13T07:42:45.884+0200"},{"uri":"/vnet.sms.gateway.server","lastStarted":"2012-04-13T07:33:47.000+0200"},{"uri":"/vnet.sms.routing-engine.platform","lastStarted":"2012-04-13T07:16:22.439+0200"},{"uri":"/VNET+-+SMS+-+Gateway+-+Transports","lastStarted":"2012-03-06T01:36:50.535+0100"},{"uri":"/vnet.sms.parent","lastStarted":"2012-04-13T07:31:28.746+0200"},{"uri":"/vnet.sms.routing-engine.branding","lastStarted":"2012-04-13T07:37:52.160+0200"},{"uri":"/VNET+-+SMS+-+Routing+Engine+-+Platform","lastStarted":"2012-03-06T01:39:28.489+0100"},{"uri":"/VNET+-+SMS+-+Common+-+Windowed+Message+Event+Library","lastStarted":"2012-03-06T01:37:43.762+0100"},{"uri":"/vnet.sms.gateway.transports.serialization-transport","lastStarted":"2012-04-13T07:18:55.911+0200"},{"uri":"/vnet.sms.common.shell.clamshell-spring","lastStarted":"2012-04-03T07:07:30.264+0200"},{"uri":"/vnet.sms.common","lastStarted":"2012-04-13T07:32:01.951+0200"},{"uri":"/VNET+-+SMS+-+Common+-+Executor+Support","lastStarted":"2012-03-06T01:32:51.830+0100"},{"uri":"/vnet.sms.gateway","lastStarted":"2012-04-13T07:31:59.665+0200"},{"uri":"/VNET+-+SMS+-+Parent","lastStarted":"2012-03-06T01:31:42.172+0100"},{"uri":"/vnet.sms.gateway.transport-spi","lastStarted":"2012-04-13T07:17:05.096+0200"},{"uri":"/VNET+-+SMS+-+Gateway+-+Transports+-+Serialization","lastStarted":"2012-03-06T01:44:26.671+0100"},{"uri":"/vnet.sms.routing-engine.jms-broker","lastStarted":"2012-04-13T07:42:38.885+0200"},{"uri":"/VNET+-+SMS+-+Gateway+-+Transport+SPI","lastStarted":"2012-03-06T01:43:16.617+0100"},{"uri":"/vnet.sms.gateway.netty-test-support","lastStarted":"2012-04-13T07:33:35.348+0200"},{"uri":"/VNET+-+SMS+-+Routing+Engine+-+Branding","lastStarted":"2012-03-06T01:37:15.187+0100"},{"uri":"/vnet.sms.routing-engine","lastStarted":"2012-04-13T07:32:40.475+0200"},{"uri":"/vnet.sms.infrastructure.rpm-elasticsearch","lastStarted":"2012-04-11T18:02:33.285+0200"},{"uri":"/VNET+-+SMS+-+Common","lastStarted":"2012-03-06T01:32:11.899+0100"},{"uri":"/VNET+-+SMS+-+Routing+-+Routing+Engine","lastStarted":"2012-02-21T05:07:57.346+0100"},{"uri":"/VNET+-+SMS+-+Gateway","lastStarted":"2012-03-06T01:32:11.671+0100"}]}
@@ -0,0 +1,7 @@
1
+ HTTP/1.1 200 OK
2
+ Server: Artifactory/2.4.2
3
+ Content-Type: application/vnd.org.jfrog.artifactory.storage.FileInfo+json
4
+ Transfer-Encoding: chunked
5
+ Date: Tue, 06 Nov 2012 21:51:58 GMT
6
+
7
+ {"uri":"http://dev.vhost.net:8081/artifactory/api/storage/ext-snapshot-local/vnet/sms/infrastructure/rpm-elasticsearch/1.0.0-SNAPSHOT//rpm-elasticsearch-1.0.0-20120411.155423-1.pom","metadataUri":"http://dev.vhost.net:8081/artifactory/api/storage/ext-snapshot-local/vnet/sms/infrastructure/rpm-elasticsearch/1.0.0-SNAPSHOT//rpm-elasticsearch-1.0.0-20120411.155423-1.pom?mdns","repo":"ext-snapshot-local","path":"/vnet/sms/infrastructure/rpm-elasticsearch/1.0.0-SNAPSHOT/rpm-elasticsearch-1.0.0-20120411.155423-1.pom","created":"2012-04-11T17:54:43.997+02:00","createdBy":"admin","lastModified":"2012-04-11T17:54:43.954+02:00","modifiedBy":"admin","lastUpdated":"2012-04-11T17:54:44.044+02:00","downloadUri":"http://dev.vhost.net:8081/artifactory/ext-snapshot-local/vnet/sms/infrastructure/rpm-elasticsearch/1.0.0-SNAPSHOT//rpm-elasticsearch-1.0.0-20120411.155423-1.pom","mimeType":"application/x-maven-pom+xml","size":3852,"checksums":{"sha1":"b1d68353af20aeb0d4b23163fb210baabb20d382","md5":"1ba2b460d1b51de16a647444b16ec4a6"},"originalChecksums":{"sha1":"b1d68353af20aeb0d4b23163fb210baabb20d382","md5":"1ba2b460d1b51de16a647444b16ec4a6"}}
@@ -0,0 +1,7 @@
1
+ HTTP/1.1 200 OK
2
+ Server: Artifactory/2.4.2
3
+ Content-Type: application/vnd.org.jfrog.artifactory.storage.FolderInfo+json
4
+ Transfer-Encoding: chunked
5
+ Date: Tue, 06 Nov 2012 21:46:38 GMT
6
+
7
+ {"uri":"http://dev.vhost.net:8081/artifactory/api/storage/ext-snapshot-local/vnet/sms/infrastructure/rpm-elasticsearch/1.0.0-SNAPSHOT","metadataUri":"http://dev.vhost.net:8081/artifactory/api/storage/ext-snapshot-local/vnet/sms/infrastructure/rpm-elasticsearch/1.0.0-SNAPSHOT?mdns","repo":"ext-snapshot-local","path":"/vnet/sms/infrastructure/rpm-elasticsearch/1.0.0-SNAPSHOT","created":"2012-04-11T17:54:44.000+02:00","createdBy":"admin","lastModified":"2012-04-11T17:54:44.043+02:00","modifiedBy":"admin","lastUpdated":"2012-04-11T17:54:44.043+02:00","children":[{"uri":"/rpm-elasticsearch-1.0.0-20120411.155423-1.pom","folder":false},{"uri":"/rpm-elasticsearch-1.0.0-20120411.155848-2.pom","folder":false},{"uri":"/rpm-elasticsearch-1.0.0-20120411.160218-3.pom","folder":false}]}
@@ -0,0 +1,7 @@
1
+ HTTP/1.1 200 OK
2
+ Server: Artifactory/2.4.2
3
+ Content-Type: application/vnd.org.jfrog.artifactory.storage.FolderInfo+json
4
+ Transfer-Encoding: chunked
5
+ Date: Tue, 06 Nov 2012 21:45:51 GMT
6
+
7
+ {"uri":"http://dev.vhost.net:8081/artifactory/api/storage/ext-snapshot-local/vnet/sms/infrastructure/rpm-elasticsearch","metadataUri":"http://dev.vhost.net:8081/artifactory/api/storage/ext-snapshot-local/vnet/sms/infrastructure/rpm-elasticsearch?mdns","repo":"ext-snapshot-local","path":"/vnet/sms/infrastructure/rpm-elasticsearch","created":"2012-04-11T17:54:44.042+02:00","createdBy":"admin","lastModified":"2012-04-11T17:54:44.043+02:00","modifiedBy":"admin","lastUpdated":"2012-04-11T17:54:44.043+02:00","children":[{"uri":"/1.0.0-SNAPSHOT","folder":true}]}
@@ -0,0 +1,7 @@
1
+ HTTP/1.1 200 OK
2
+ Server: Artifactory/2.4.2
3
+ Content-Type: application/vnd.org.jfrog.artifactory.storage.FolderInfo+json
4
+ Transfer-Encoding: chunked
5
+ Date: Sun, 04 Nov 2012 21:54:47 GMT
6
+
7
+ {"uri":"http://dev.vhost.net:8081/artifactory/api/storage/libs-snapshot-local","metadataUri":"http://dev.vhost.net:8081/artifactory/api/storage/libs-snapshot-local?mdns","repo":"libs-snapshot-local","path":"/","created":"2011-12-15T00:35:15.064+01:00","createdBy":"_system_","lastModified":"2011-12-15T00:35:15.065+01:00","modifiedBy":"_system_","lastUpdated":"2011-12-15T00:35:15.065+01:00","children":[{"uri":"/vnet","folder":true}]}
@@ -0,0 +1,7 @@
1
+ HTTP/1.1 200 OK
2
+ Server: Artifactory/2.4.2
3
+ Content-Type: application/vnd.org.jfrog.artifactory.repositories.RepositoryDetailsList+json
4
+ Transfer-Encoding: chunked
5
+ Date: Sun, 04 Nov 2012 21:58:50 GMT
6
+
7
+ [{"key":"libs-release-local","type":"LOCAL","description":"Local repository for in-house libraries","url":"http://dev.vhost.net:8081/artifactory/libs-release-local"},{"key":"libs-snapshot-local","type":"LOCAL","description":"Local repository for in-house snapshots","url":"http://dev.vhost.net:8081/artifactory/libs-snapshot-local"},{"key":"plugins-release-local","type":"LOCAL","description":"Local repository for plugins","url":"http://dev.vhost.net:8081/artifactory/plugins-release-local"},{"key":"plugins-snapshot-local","type":"LOCAL","description":"Local repository for plugins snapshots","url":"http://dev.vhost.net:8081/artifactory/plugins-snapshot-local"},{"key":"ext-release-local","type":"LOCAL","description":"Local repository for third party libraries","url":"http://dev.vhost.net:8081/artifactory/ext-release-local"},{"key":"ext-snapshot-local","type":"LOCAL","description":"Local repository for third party snapshots","url":"http://dev.vhost.net:8081/artifactory/ext-snapshot-local"},{"key":"repo1","type":"REMOTE","description":"Central Maven 2 repository","url":"http://repo1.maven.org/maven2"},{"key":"java.net.m2","type":"REMOTE","description":"java.net Maven2 Format","url":"http://download.java.net/maven/2"},{"key":"java.net.m1","type":"REMOTE","description":"java.net Maven1 Format","url":"http://download.java.net/maven/1"},{"key":"jfrog-libs","type":"REMOTE","description":"JFrog libraries releases","url":"http://repo.jfrog.org/artifactory/libs-releases-local"},{"key":"jfrog-plugins","type":"REMOTE","description":"JFrog plugins releases","url":"http://repo.jfrog.org/artifactory/plugins-releases-local"},{"key":"jboss","type":"REMOTE","description":"JBoss Maven2 releases","url":"http://repository.jboss.org/nexus/content/groups/public-jboss"},{"key":"codehaus","type":"REMOTE","description":"Codehaus Maven2 releases","url":"http://repository.codehaus.org"},{"key":"spring-milestone","type":"REMOTE","description":"SpringSource in milestone version","url":"http://repository.springsource.com/maven/bundles/milestone"},{"key":"spring-release","type":"REMOTE","description":"SpringSource releases","url":"http://repository.springsource.com/maven/bundles/release"},{"key":"google-code","type":"REMOTE","description":"Google's open source releases","url":"http://google-maven-repository.googlecode.com/svn/repository"},{"key":"gradle-libs","type":"REMOTE","description":"Gradle libraries","url":"http://gradle.artifactoryonline.com/gradle/libs"},{"key":"gradle-plugins","type":"REMOTE","description":"Gradle plugins","url":"http://gradle.artifactoryonline.com/gradle/plugins"},{"key":"repo","type":"VIRTUAL","url":"http://dev.vhost.net:8081/artifactory/repo"},{"key":"remote-repos","type":"VIRTUAL","url":"http://dev.vhost.net:8081/artifactory/remote-repos"},{"key":"libs-release","type":"VIRTUAL","url":"http://dev.vhost.net:8081/artifactory/libs-release"},{"key":"plugins-release","type":"VIRTUAL","url":"http://dev.vhost.net:8081/artifactory/plugins-release"},{"key":"libs-snapshot","type":"VIRTUAL","url":"http://dev.vhost.net:8081/artifactory/libs-snapshot"},{"key":"plugins-snapshot","type":"VIRTUAL","url":"http://dev.vhost.net:8081/artifactory/plugins-snapshot"}]
@@ -0,0 +1,7 @@
1
+ HTTP/1.1 200 OK
2
+ Server: Artifactory/2.4.2
3
+ Content-Type: application/vnd.org.jfrog.artifactory.storage.FolderInfo+json
4
+ Transfer-Encoding: chunked
5
+ Date: Sun, 04 Nov 2012 21:54:47 GMT
6
+
7
+ {"uri":"http://dev.vhost.net:8081/artifactory/api/storage/libs-snapshot-local","metadataUri":"http://dev.vhost.net:8081/artifactory/api/storage/libs-snapshot-local?mdns","repo":"libs-snapshot-local","path":"/","created":"2011-12-15T00:35:15.064+01:00","createdBy":"_system_","lastModified":"2011-12-15T00:35:15.065+01:00","modifiedBy":"_system_","lastUpdated":"2011-12-15T00:35:15.065+01:00","children":[{"uri":"/vnet","folder":true}]}
@@ -0,0 +1,7 @@
1
+ HTTP/1.1 200 OK
2
+ Server: Artifactory/2.4.2
3
+ Content-Type: application/vnd.org.jfrog.artifactory.storage.FileInfo+json
4
+ Transfer-Encoding: chunked
5
+ Date: Tue, 06 Nov 2012 21:51:58 GMT
6
+
7
+ {"uri":"http://dev.vhost.net:8081/artifactory/api/storage/ext-snapshot-local/vnet/sms/infrastructure/rpm-elasticsearch/1.0.0-SNAPSHOT//rpm-elasticsearch-1.0.0-20120411.155423-1.pom","metadataUri":"http://dev.vhost.net:8081/artifactory/api/storage/ext-snapshot-local/vnet/sms/infrastructure/rpm-elasticsearch/1.0.0-SNAPSHOT//rpm-elasticsearch-1.0.0-20120411.155423-1.pom?mdns","repo":"ext-snapshot-local","path":"/vnet/sms/infrastructure/rpm-elasticsearch/1.0.0-SNAPSHOT/rpm-elasticsearch-1.0.0-20120411.155423-1.pom","created":"2012-04-11T17:54:43.997+02:00","createdBy":"admin","lastModified":"2012-04-11T17:54:43.954+02:00","modifiedBy":"admin","lastUpdated":"2012-04-11T17:54:44.044+02:00","downloadUri":"http://dev.vhost.net:8081/artifactory/ext-snapshot-local/vnet/sms/infrastructure/rpm-elasticsearch/1.0.0-SNAPSHOT//rpm-elasticsearch-1.0.0-20120411.155423-1.pom","mimeType":"application/x-maven-pom+xml","size":3852,"checksums":{"sha1":"b1d68353af20aeb0d4b23163fb210baabb20d382","md5":"1ba2b460d1b51de16a647444b16ec4a6"},"originalChecksums":{"sha1":"b1d68353af20aeb0d4b23163fb210baabb20d382","md5":"1ba2b460d1b51de16a647444b16ec4a6"}}
@@ -0,0 +1,7 @@
1
+ HTTP/1.1 200 OK
2
+ Server: Artifactory/2.4.2
3
+ Content-Type: application/vnd.org.jfrog.build.BuildsByName+json
4
+ Transfer-Encoding: chunked
5
+ Date: Sun, 04 Nov 2012 20:35:37 GMT
6
+
7
+ {"uri":"http://dev.vhost.net:8081/artifactory/api/build/vnet.sms.common.shell","buildsNumbers":[{"uri":"/25","started":"2012-04-11T19:34:25.116+0200"},{"uri":"/60","started":"2012-04-13T05:35:17.847+0200"},{"uri":"/58","started":"2012-04-13T04:33:04.051+0200"},{"uri":"/23","started":"2012-04-11T18:33:03.677+0200"},{"uri":"/27","started":"2012-04-11T20:34:57.180+0200"},{"uri":"/64","started":"2012-04-13T07:35:34.888+0200"},{"uri":"/39","started":"2012-04-12T01:32:51.245+0200"},{"uri":"/12","started":"2012-04-11T13:02:36.447+0200"},{"uri":"/38","started":"2012-04-12T01:18:19.439+0200"},{"uri":"/15","started":"2012-04-11T14:33:16.176+0200"},{"uri":"/32","started":"2012-04-11T23:04:50.203+0200"},{"uri":"/2","started":"2012-04-03T07:02:21.113+0200"},{"uri":"/47","started":"2012-04-12T05:40:56.672+0200"},{"uri":"/51","started":"2012-04-12T07:37:12.284+0200"},{"uri":"/29","started":"2012-04-11T21:33:42.991+0200"},{"uri":"/62","started":"2012-04-13T06:35:26.097+0200"},{"uri":"/5","started":"2012-04-10T17:51:54.820+0200"},{"uri":"/43","started":"2012-04-12T03:35:44.379+0200"},{"uri":"/45","started":"2012-04-12T04:35:09.350+0200"},{"uri":"/37","started":"2012-04-12T01:03:26.341+0200"},{"uri":"/4","started":"2012-04-10T17:34:39.562+0200"},{"uri":"/36","started":"2012-04-12T00:58:28.903+0200"},{"uri":"/7","started":"2012-04-10T18:54:39.594+0200"},{"uri":"/55","started":"2012-04-13T03:31:03.056+0200"},{"uri":"/63","started":"2012-04-13T07:03:15.106+0200"},{"uri":"/16","started":"2012-04-11T15:02:39.076+0200"},{"uri":"/28","started":"2012-04-11T21:04:15.522+0200"},{"uri":"/20","started":"2012-04-11T17:05:39.028+0200"},{"uri":"/24","started":"2012-04-11T19:05:22.198+0200"},{"uri":"/61","started":"2012-04-13T06:05:05.454+0200"},{"uri":"/22","started":"2012-04-11T18:02:52.830+0200"},{"uri":"/44","started":"2012-04-12T04:05:38.742+0200"},{"uri":"/34","started":"2012-04-12T00:05:54.455+0200"},{"uri":"/26","started":"2012-04-11T20:04:39.283+0200"},{"uri":"/42","started":"2012-04-12T03:03:42.665+0200"},{"uri":"/50","started":"2012-04-12T07:04:03.780+0200"},{"uri":"/35","started":"2012-04-12T00:33:59.636+0200"},{"uri":"/30","started":"2012-04-11T22:03:04.004+0200"},{"uri":"/19","started":"2012-04-11T16:32:41.724+0200"},{"uri":"/11","started":"2012-04-11T12:33:59.958+0200"},{"uri":"/33","started":"2012-04-11T23:38:01.033+0200"},{"uri":"/40","started":"2012-04-12T02:05:40.885+0200"},{"uri":"/17","started":"2012-04-11T15:32:56.494+0200"},{"uri":"/13","started":"2012-04-11T13:33:10.408+0200"},{"uri":"/41","started":"2012-04-12T02:35:58.155+0200"},{"uri":"/48","started":"2012-04-12T06:05:24.040+0200"},{"uri":"/8","started":"2012-04-11T11:00:01.579+0200"},{"uri":"/57","started":"2012-04-13T04:05:02.750+0200"},{"uri":"/3","started":"2012-04-10T16:15:23.794+0200"},{"uri":"/6","started":"2012-04-10T18:33:49.174+0200"},{"uri":"/56","started":"2012-04-13T03:33:25.201+0200"},{"uri":"/14","started":"2012-04-11T14:04:01.988+0200"},{"uri":"/18","started":"2012-04-11T16:03:32.950+0200"},{"uri":"/52","started":"2012-04-12T08:39:55.633+0200"},{"uri":"/53","started":"2012-04-12T09:03:42.378+0200"},{"uri":"/9","started":"2012-04-11T11:04:17.841+0200"},{"uri":"/54","started":"2012-04-12T09:35:13.359+0200"},{"uri":"/46","started":"2012-04-12T05:05:16.538+0200"},{"uri":"/21","started":"2012-04-11T17:33:41.426+0200"},{"uri":"/59","started":"2012-04-13T05:05:24.888+0200"},{"uri":"/49","started":"2012-04-12T06:35:54.058+0200"},{"uri":"/31","started":"2012-04-11T22:35:14.946+0200"},{"uri":"/10","started":"2012-04-11T11:32:31.065+0200"}]}
@@ -0,0 +1,7 @@
1
+ HTTP/1.1 200 OK
2
+ Server: Artifactory/2.4.2
3
+ Content-Type: application/vnd.org.jfrog.build.BuildInfo+json
4
+ Transfer-Encoding: chunked
5
+ Date: Thu, 22 Nov 2012 20:42:16 GMT
6
+
7
+ {"uri":"http://dev.vhost.net:8081/artifactory/api/build/vnet.sms.common.shell/25","buildInfo":{"name":"vnet.sms.common.shell","type":"MAVEN","number":"25","version":"1.0.1","principal":"auto","parentName":"vnet.sms.common","url":"http://jenkins.vhost.net:8080/job/vnet.sms.common.shell/25/","started":"2012-04-11T19:34:25.116+0200","modules":[{"id":"vnet.sms.common:shell:1.0.0-SNAPSHOT","artifacts":[{"name":"shell-1.0.0-SNAPSHOT.pom","type":"pom","sha1":"722c85addd59e860615e8a543ca8c8022e7fc1c4","md5":"2f010b3bbea9cb2f97f8644141d4686a"}],"dependencies":[{"id":"org.objenesis:objenesis:1.2","scopes":["test"],"type":"jar","sha1":"bfcb0539a071a4c5a30690388903ac48c0667f2a","md5":"bee117291d50b41b8e8cf0ac5435df1d"},{"id":"org.easymock:easymock:3.1","scopes":["test"],"type":"jar","sha1":"3e127311a86fc2e8f550ef8ee4abe094bbcf7e7e","md5":"dfeff8c4114c01ef435ec74e228e5f91"},{"id":"com.google.guava:guava:11.0.2","scopes":["runtime"],"type":"jar","sha1":"35a3c69e19d72743cac83778aecbee68680f63eb","md5":"bed5977336ea1279d2bad3bb258dc8c3"},{"id":"junit:junit:4.10","scopes":["test"],"type":"jar","sha1":"e4f1766ce7404a08f45d859fb9c226fc9e41a861","md5":"68380001b88006ebe49be50cef5bb23a"},{"id":"com.google.code.findbugs:jsr305:1.3.9","scopes":["runtime"],"type":"jar","sha1":"40719ea6961c0cb6afaeb6a921eaa1f6afd4cfdf","md5":"1d5a772e400b04bb67a7ef4a0e0996d8"},{"id":"cglib:cglib-nodep:2.2.2","scopes":["test"],"type":"jar","sha1":"00d456bb230c70c0b95c76fb28e429d42f275941","md5":"af93e373d7ddf35db0e9612480d9ed13"},{"id":"javax.inject:javax.inject:1","scopes":["compile"],"type":"jar","sha1":"6975da39a7040257bd51d21a231b76c915872d38","md5":"289075e48b909e9e74e6c915b3631d2e"},{"id":"org.hamcrest:hamcrest-core:1.1","scopes":["test"],"type":"jar","sha1":"860340562250678d1a344907ac75754e259cdb14","md5":"b66d0c48e1f1dc54d4227db52512c15b"},{"id":"javax.annotation:jsr250-api:1.0","scopes":["compile"],"type":"jar","sha1":"5025422767732a1ab45d93abfea846513d742dcf","md5":"4cd56b2e4977e541186de69f5126b4a6"},{"id":"ch.qos.logback:logback-core:1.0.5","scopes":["runtime"],"type":"jar","sha1":"75bd856accdff2512437b93f034ef50585535dfa","md5":"7f83388919dcf2fd9eb11709500d104b"},{"id":"org.springframework:spring-test:3.1.1.RELEASE","scopes":["test"],"type":"jar","sha1":"de2889e5d2d6f22e1590dcab846e938827e1a936","md5":"c8c8878b3adc71db31e3868a4d3d8ef5"},{"id":"commons-lang:commons-lang:2.6","scopes":["compile"],"type":"jar","sha1":"0ce1edb914c94ebc388f086c6827e8bdeec71ac2","md5":"4d5c1693079575b362edf41500630bbd"},{"id":"org.slf4j:jcl-over-slf4j:1.6.6","scopes":["runtime"],"type":"jar","sha1":"ec497945fdcaf7fd970ae9931b9bbfaf735d385e","md5":"fad4e4da2493bd7971dc2356285b1f67"},{"id":"ch.qos.logback:logback-classic:1.0.5","scopes":["runtime"],"type":"jar","sha1":"918e81a9685ce8ef10c0262e43e8d0a8e547a2b6","md5":"e032f3e16b6fe8fdd8de01f1d821f076"},{"id":"me.moocar:logback-gelf:0.9.6","scopes":["runtime"],"type":"jar","sha1":"3caab533428ba16b3d5f8d975474e6697edf5e19","md5":"1090dba68429d3ce705be505cfe2726c"},{"id":"com.google.code.gson:gson:1.4","scopes":["runtime"],"type":"jar","sha1":"c2c2d342e134a390723e4802891c0df1bf749171","md5":"47e5c393ee0566dc0fe145565bd589b1"},{"id":"org.slf4j:slf4j-api:1.6.6","scopes":["compile"],"type":"jar","sha1":"ce53b0a0e2cfbb27e8a59d38f79a18a5c6a8d2b0","md5":"17ba6715f5defd50b2e781201f57b408"}],"properties":{"compiler.debug":"true","deps.ehcache.version":"2.5.2","deps.yammer-metrics.version":"2.1.2","deps.osgi-core.version":"4.3.0","module.gateway.netty-gateway-support.version":"1.0.0-SNAPSHOT","deps.sshd.version":"0.6.0","module.gateway.version":"1.0.0-SNAPSHOT","module.routing-engine.log4j-gelf-appender-fragment.version":"1.0.0-SNAPSHOT","deps.felix-configadmin.version":"1.2.8","module.common.shell.clamshell-ssh-server.version":"1.0.0-SNAPSHOT","plugins.license.version":"1.8.0","deps.xbean.version":"2.8","parsedVersion.nextMinorVersion":"1","plugins.plugin.version":"2.9","parsedVersion.incrementalVersion":"0","deps.slf4j.version":"1.6.6","deps.jta.version":"1.1","project.build.sourceEncoding":"UTF-8","plugins.project-info-reports.version":"2.4","deps.astyanax.version":"1.0.3","compiler.compilerVersion":"1.6","plugins.assembly.version":"2.3","plugins.gmaven.version":"1.4","plugins.surefire.version":"2.12","module.routing-engine.blueprint-test-support.version":"1.0.0-SNAPSHOT","compiler.showWarnings":"true","deps.pax-swissbox-tinybundles.version":"1.3.1","compiler.target":"1.6","compiler.showDeprecation":"true","module.routing-engine.platform.version":"1.0.0-SNAPSHOT","module.common.shell.version":"1.0.0-SNAPSHOT","parsedVersion.qualifier":"SNAPSHOT","buildNumber":"1","plugins.install.version":"2.3.1","plugins.buildnumber.version":"1.0","parsedVersion.majorVersion":"1","module.gateway.server.server-framework.version":"1.0.0-SNAPSHOT","module.gateway.transport-plugin-support.version":"1.0.0-SNAPSHOT","plugins.exec.version":"1.2.1","deps.arquillian.version":"1.0.0.CR7","module.common.version":"1.0.0-SNAPSHOT","plugins.failsafe.version":"2.12","module.gateway.netty-test-support.version":"1.0.0-SNAPSHOT","module.routing-engine.branding.version":"1.0.0-SNAPSHOT","plugins.javadoc.version":"2.8.1","deps.junit.version":"4.10","plugins.compiler.version":"2.3.2","plugins.surefire-reports.version":"2.12","deps.mockrunner.version":"0.3.1","deps.spring.version":"3.1.1.RELEASE","plugins.pmd.version":"2.7.1","plugins.resources.version":"2.5","compiler.verbose":"true","project.reporting.outputEncoding":"UTF-8","deps.aries.version":"0.3","module.common.shell.spring-shell-sshd.version":"1.0.0-SNAPSHOT","module.infrastructure.rpm-elasticsearch.version":"1.0.0-SNAPSHOT","plugins.jxr.version":"2.3","module.infrastructure.version":"1.0.0-SNAPSHOT","module.notification-cluster.cassandra-cachewriter.version":"1.0.0-SNAPSHOT","module.common.shell.spring-shell.version":"1.0.0-SNAPSHOT","module.common.shell.clamshell-spring.version":"1.0.0-SNAPSHOT","plugins.deploy.version":"2.7","parsedVersion.osgiVersion":"1.0.0.SNAPSHOT","deps.osgi-compendium.version":"4.2.0","deps.camel.version":"2.9.0","deps.spring-security.version":"3.1.0.RELEASE","parsedVersion.minorVersion":"0","plugins.dependency.version":"2.4","deps.logback-gelf.version":"0.9.6","compiler.source":"1.6","module.gateway.transports.serialization-transport.version":"1.0.0-SNAPSHOT","deps.logback.version":"1.0.5","module.routing-engine.distribution.version":"1.0.0-SNAPSHOT","deps.groovy.version":"1.7.8","deps.spring-shell.version":"1.0.0.BUILD-SNAPSHOT","module.common.executor-support.version":"1.0.0-SNAPSHOT","timestamp":"1334165669963","plugins.site.version":"3.0","module.gateway.server.version":"1.0.0-SNAPSHOT","module.gateway.transport-spi.version":"1.0.0-SNAPSHOT","module.routing-engine.core.version":"1.0.0-SNAPSHOT","plugins.clean.version":"2.4.1","module.common.spring-extensions.version":"1.0.0-SNAPSHOT","deps.pojosr.version":"0.1.8","deps.easymock.version":"3.1","module.notification-cluster.version":"1.0.0-SNAPSHOT","plugins.karaf.version":"2.2.5","deps.netty.version":"3.5.0.Final","deps.karaf.version":"2.2.5","module.common.windowed-message-event-library.version":"1.0.0-SNAPSHOT","parsedVersion.buildNumber":"0","module.routing-engine.jms-broker.version":"1.0.0-SNAPSHOT","parsedVersion.nextMajorVersion":"2","plugins.source.version":"2.1.2","plugins.bundle.version":"2.3.7","deps.google-guava.version":"11.0.2","module.routing-engine.version":"1.0.0-SNAPSHOT","deps.xbean-spring.version":"3.5","module.gateway.server.serialization-server-minimal.version":"1.0.0-SNAPSHOT","parsedVersion.nextIncrementalVersion":"1","deps.jms.version":"1.1","scmBranch":"UNKNOWN","module.common.message-library.version":"1.0.0-SNAPSHOT","plugins.build-helper.version":"1.7","deps.jsr250-api.version":"1.0","deps.activemq.version":"5.5.1","deps.cassandra-unit.version":"1.0.3.1","plugins.cobertura.version":"2.5","module.gateway.transports.version":"1.0.0-SNAPSHOT","deps.javax-inject.version":"1"}}],"buildAgent":{"name":"Maven","version":"3.0.3"},"buildRetention":{"count":-1,"deleteBuildArtifacts":true,"buildNumbersNotToBeDiscarded":[]},"parentNumber":"108","vcsRevision":"0c53e568c4881dc5c7a7e5acdc55c4bbd470cb62","agent":{"name":"Jenkins","version":"1.473"},"durationMillis":13229,"artifactoryPrincipal":"admin","licenseControl":{"runChecks":false,"includePublishedArtifacts":false,"autoDiscover":true,"scopesList":"","licenseViolationsRecipientsList":""},"properties":{"buildInfo.env.os.version":"2.6.32-220.7.1.el6.x86_64","buildInfo.env.JENKINS_HOME":"/var/lib/jenkins","buildInfo.env.java.vm.specification.name":"Java Virtual Machine Specification","buildInfo.env.java.vm.info":"mixed mode","buildInfo.env.GIT_COMMITTER_NAME":"obergner","buildInfo.env.JAVA_HOME":"/usr/java/jdk1.6.0_30","buildInfo.env.GIT_BRANCH":"origin/HEAD","buildInfo.env.JOB_NAME":"vnet.sms.common.shell","buildInfo.env.GIT_COMMITTER_EMAIL":"olaf.bergner@gmx.de","buildInfo.env.java.vm.name":"Java HotSpot(TM) 64-Bit Server VM","buildInfo.env.CLASSPATH":"","buildInfo.env.JOB_URL":"http://jenkins.vhost.net:8080/job/vnet.sms.common.shell/","buildInfo.env.HUDSON_HOME":"/var/lib/jenkins","buildInfo.env.GIT_AUTHOR_EMAIL":"olaf.bergner@gmx.de","buildInfo.env.EXECUTOR_NUMBER":"1","buildInfo.env.GIT_COMMIT":"0c53e568c4881dc5c7a7e5acdc55c4bbd470cb62","buildInfo.env.BUILD_TAG":"jenkins-vnet.sms.common.shell-25","buildInfo.env.classworlds.conf":"/tmp/classworlds4276472836054108964conf","buildInfo.env.java.vm.vendor":"Sun Microsystems Inc.","buildInfo.env.WORKSPACE":"/var/lib/jenkins/jobs/vnet.sms.common.shell/workspace","buildInfo.env.HUDSON_SERVER_COOKIE":"bddfba65cd1124b3cf17d3ae138fcc26","buildInfo.env.NODE_LABELS":"master","buildInfo.env.HUDSON_URL":"http://jenkins.vhost.net:8080/","buildInfo.env.BUILD_NUMBER":"25","buildInfo.env.extractor.used":"true","buildInfo.env.BUILD_URL":"http://jenkins.vhost.net:8080/job/vnet.sms.common.shell/25/","buildInfo.env.PATH+JDK":"/usr/java/jdk1.6.0_30/bin","buildInfo.env.JENKINS_SERVER_COOKIE":"bddfba65cd1124b3cf17d3ae138fcc26","buildInfo.env.os.name":"Linux","buildInfo.env.os.arch":"amd64","buildInfo.env.BUILD_ID":"2012-04-11_19-34-07","buildInfo.env.JENKINS_URL":"http://jenkins.vhost.net:8080/","buildInfo.env.GIT_AUTHOR_NAME":"obergner","buildInfo.env.java.version":"1.6.0_30","buildInfo.env.NODE_NAME":"master"}}}
@@ -0,0 +1,7 @@
1
+ HTTP/1.1 200 OK
2
+ Server: Artifactory/2.4.2
3
+ Content-Type: application/vnd.org.jfrog.build.Builds+json
4
+ Transfer-Encoding: chunked
5
+ Date: Sun, 04 Nov 2012 19:13:02 GMT
6
+
7
+ {"uri":"http://dev.vhost.net:8081/artifactory/api/build","builds":[{"uri":"/vnet.sms.gateway.netty-gateway-support","lastStarted":"2012-04-13T07:43:51.929+0200"},{"uri":"/vnet.sms.common.shell","lastStarted":"2012-04-13T07:35:34.888+0200"},{"uri":"/vnet.sms.notification-cluster","lastStarted":"2012-04-13T07:32:57.352+0200"},{"uri":"/vnet.sms.common.message-library","lastStarted":"2012-04-13T07:35:59.679+0200"},{"uri":"/cd.vnet.sms.gateway.committest-stage","lastStarted":"2012-09-01T20:45:59.815+0200"},{"uri":"/vnet.sms.common.shell.spring-shell","lastStarted":"2012-04-13T07:39:30.150+0200"},{"uri":"/vnet.sms.gateway.server.server-framework","lastStarted":"2012-04-13T06:52:30.196+0200"},{"uri":"/vnet.sms.routing-engine.distribution","lastStarted":"2012-04-12T02:51:55.549+0200"},{"uri":"/VNET+-+SMS+-+Gateway+-+Server+-+Server+Framework","lastStarted":"2012-03-06T01:46:47.854+0100"},{"uri":"/VNET+-+SMS+-+Common+-+Message+Library","lastStarted":"2012-03-06T01:33:20.855+0100"},{"uri":"/vnet.sms.routing-engine.log4j-gelf-appender-fragment","lastStarted":"2012-04-13T07:37:54.410+0200"},{"uri":"/cd.vnet.sms.common.committest-stage","lastStarted":"2012-09-01T20:33:07.228+0200"},{"uri":"/VNET+-+SMS+-+Gateway+-+Server+-+Minimal+Serialization+Server","lastStarted":"2012-03-06T01:49:16.339+0100"},{"uri":"/vnet.sms.gateway.transports","lastStarted":"2012-04-13T07:33:18.937+0200"},{"uri":"/vnet.sms.routing-engine.blueprint-test-support","lastStarted":"2012-04-13T07:38:38.723+0200"},{"uri":"/VNET+-+SMS+-+Routing+Engine+-+JMS+Broker","lastStarted":"2012-03-06T01:38:16.313+0100"},{"uri":"/VNET+-+SMS+-+Routing+Engine","lastStarted":"2012-03-06T01:32:46.610+0100"},{"uri":"/VNET+-+SMS+-+Routing","lastStarted":"2012-02-21T05:01:41.297+0100"},{"uri":"/cd.vnet.sms.routing-engine.committest-stage","lastStarted":"2012-09-01T20:39:36.115+0200"},{"uri":"/VNET+-+SMS+-+Routing+Engine+-+Log4J+GELF+Appender+Fragment","lastStarted":"2012-03-06T01:37:35.507+0100"},{"uri":"/cd.vnet.sms.committest-stage","lastStarted":"2012-08-12T15:34:24.696+0200"},{"uri":"/VNET+-+SMS+-+Routing+Engine+-+Blueprint+Test+Support","lastStarted":"2012-03-06T01:36:58.051+0100"},{"uri":"/vnet.sms.common.spring-extensions","lastStarted":"2012-04-13T07:34:20.451+0200"},{"uri":"/vnet.sms.routing-engine.core","lastStarted":"2012-04-13T07:16:07.681+0200"},{"uri":"/VNET+-SMS+-+Common+-+Spring+Extensions","lastStarted":"2012-03-06T01:34:31.586+0100"},{"uri":"/VNET+-+SMS+-+Routing+Engine+-+Core","lastStarted":"2012-03-06T01:39:09.745+0100"},{"uri":"/vnet.sms.gateway.transport-plugin-support","lastStarted":"2012-04-13T07:21:37.355+0200"},{"uri":"/vnet.sms.notification-cluster.cassandra-cachewriter","lastStarted":"2012-04-13T07:38:47.595+0200"},{"uri":"/VNET+-+SMS+-+Routing+Engine+-+Distribution","lastStarted":"2012-03-06T01:41:13.207+0100"},{"uri":"/VNET+-+SMS+-+Gateway+-+Server","lastStarted":"2012-03-06T01:36:19.575+0100"},{"uri":"/vnet.sms.gateway.server.minimal-serialization-server","lastStarted":"2012-04-13T07:25:16.983+0200"},{"uri":"/cd.vnet.sms.parent.no-stage","lastStarted":"2012-09-01T20:30:04.133+0200"},{"uri":"/VNET+-+SMS+-+Gateway+-+Transport+Plugin+Support","lastStarted":"2012-03-06T01:45:37.366+0100"},{"uri":"/VNET+-+SMS+-+Gateway+-+Netty+Gateway+Support","lastStarted":"2012-03-06T01:40:06.497+0100"},{"uri":"/cd.vnet.sms.notification-cluster.committest-stage","lastStarted":"2012-09-01T20:38:25.403+0200"},{"uri":"/vnet.sms.common.windowed-message-event-library","lastStarted":"2012-04-13T07:40:48.012+0200"},{"uri":"/VNET+-+SMS+-+Gateway+-+Netty+Test+Support","lastStarted":"2012-03-06T01:35:12.705+0100"},{"uri":"/vnet.sms.infrastructure","lastStarted":"2012-04-12T09:32:06.491+0200"},{"uri":"/vnet.sms.common.executor-support","lastStarted":"2012-04-13T07:36:10.950+0200"},{"uri":"/vnet.sms.common.shell.spring-shell-sshd","lastStarted":"2012-04-13T07:42:45.884+0200"},{"uri":"/vnet.sms.gateway.server","lastStarted":"2012-04-13T07:33:47.000+0200"},{"uri":"/vnet.sms.routing-engine.platform","lastStarted":"2012-04-13T07:16:22.439+0200"},{"uri":"/VNET+-+SMS+-+Gateway+-+Transports","lastStarted":"2012-03-06T01:36:50.535+0100"},{"uri":"/vnet.sms.parent","lastStarted":"2012-04-13T07:31:28.746+0200"},{"uri":"/vnet.sms.routing-engine.branding","lastStarted":"2012-04-13T07:37:52.160+0200"},{"uri":"/VNET+-+SMS+-+Routing+Engine+-+Platform","lastStarted":"2012-03-06T01:39:28.489+0100"},{"uri":"/VNET+-+SMS+-+Common+-+Windowed+Message+Event+Library","lastStarted":"2012-03-06T01:37:43.762+0100"},{"uri":"/vnet.sms.gateway.transports.serialization-transport","lastStarted":"2012-04-13T07:18:55.911+0200"},{"uri":"/vnet.sms.common.shell.clamshell-spring","lastStarted":"2012-04-03T07:07:30.264+0200"},{"uri":"/vnet.sms.common","lastStarted":"2012-04-13T07:32:01.951+0200"},{"uri":"/VNET+-+SMS+-+Common+-+Executor+Support","lastStarted":"2012-03-06T01:32:51.830+0100"},{"uri":"/vnet.sms.gateway","lastStarted":"2012-04-13T07:31:59.665+0200"},{"uri":"/VNET+-+SMS+-+Parent","lastStarted":"2012-03-06T01:31:42.172+0100"},{"uri":"/vnet.sms.gateway.transport-spi","lastStarted":"2012-04-13T07:17:05.096+0200"},{"uri":"/VNET+-+SMS+-+Gateway+-+Transports+-+Serialization","lastStarted":"2012-03-06T01:44:26.671+0100"},{"uri":"/vnet.sms.routing-engine.jms-broker","lastStarted":"2012-04-13T07:42:38.885+0200"},{"uri":"/VNET+-+SMS+-+Gateway+-+Transport+SPI","lastStarted":"2012-03-06T01:43:16.617+0100"},{"uri":"/vnet.sms.gateway.netty-test-support","lastStarted":"2012-04-13T07:33:35.348+0200"},{"uri":"/VNET+-+SMS+-+Routing+Engine+-+Branding","lastStarted":"2012-03-06T01:37:15.187+0100"},{"uri":"/vnet.sms.routing-engine","lastStarted":"2012-04-13T07:32:40.475+0200"},{"uri":"/vnet.sms.infrastructure.rpm-elasticsearch","lastStarted":"2012-04-11T18:02:33.285+0200"},{"uri":"/VNET+-+SMS+-+Common","lastStarted":"2012-03-06T01:32:11.899+0100"},{"uri":"/VNET+-+SMS+-+Routing+-+Routing+Engine","lastStarted":"2012-02-21T05:07:57.346+0100"},{"uri":"/VNET+-+SMS+-+Gateway","lastStarted":"2012-03-06T01:32:11.671+0100"}]}
@@ -0,0 +1,7 @@
1
+ HTTP/1.1 200 OK
2
+ Server: Artifactory/2.4.2
3
+ Content-Type: application/vnd.org.jfrog.artifactory.storage.FolderInfo+json
4
+ Transfer-Encoding: chunked
5
+ Date: Tue, 06 Nov 2012 21:46:38 GMT
6
+
7
+ {"uri":"http://dev.vhost.net:8081/artifactory/api/storage/ext-snapshot-local/vnet/sms/infrastructure/rpm-elasticsearch/1.0.0-SNAPSHOT","metadataUri":"http://dev.vhost.net:8081/artifactory/api/storage/ext-snapshot-local/vnet/sms/infrastructure/rpm-elasticsearch/1.0.0-SNAPSHOT?mdns","repo":"ext-snapshot-local","path":"/vnet/sms/infrastructure/rpm-elasticsearch/1.0.0-SNAPSHOT","created":"2012-04-11T17:54:44.000+02:00","createdBy":"admin","lastModified":"2012-04-11T17:54:44.043+02:00","modifiedBy":"admin","lastUpdated":"2012-04-11T17:54:44.043+02:00","children":[{"uri":"/rpm-elasticsearch-1.0.0-20120411.155423-1.pom","folder":false},{"uri":"/rpm-elasticsearch-1.0.0-20120411.155848-2.pom","folder":false},{"uri":"/rpm-elasticsearch-1.0.0-20120411.160218-3.pom","folder":false}]}
@@ -0,0 +1,7 @@
1
+ HTTP/1.1 200 OK
2
+ Server: Artifactory/2.4.2
3
+ Content-Type: application/vnd.org.jfrog.artifactory.storage.FolderInfo+json
4
+ Transfer-Encoding: chunked
5
+ Date: Sun, 04 Nov 2012 21:54:47 GMT
6
+
7
+ {"uri":"http://dev.vhost.net:8081/artifactory/api/storage/libs-snapshot-local","metadataUri":"http://dev.vhost.net:8081/artifactory/api/storage/libs-snapshot-local?mdns","repo":"libs-snapshot-local","path":"/","created":"2011-12-15T00:35:15.064+01:00","createdBy":"_system_","lastModified":"2011-12-15T00:35:15.065+01:00","modifiedBy":"_system_","lastUpdated":"2011-12-15T00:35:15.065+01:00","children":[{"uri":"/vnet","folder":true}]}
@@ -0,0 +1,7 @@
1
+ HTTP/1.1 200 OK
2
+ Server: Artifactory/2.4.2
3
+ Content-Type: application/vnd.org.jfrog.artifactory.repositories.RepositoryDetailsList+json
4
+ Transfer-Encoding: chunked
5
+ Date: Sun, 04 Nov 2012 21:58:50 GMT
6
+
7
+ [{"key":"libs-release-local","type":"LOCAL","description":"Local repository for in-house libraries","url":"http://dev.vhost.net:8081/artifactory/libs-release-local"},{"key":"libs-snapshot-local","type":"LOCAL","description":"Local repository for in-house snapshots","url":"http://dev.vhost.net:8081/artifactory/libs-snapshot-local"},{"key":"plugins-release-local","type":"LOCAL","description":"Local repository for plugins","url":"http://dev.vhost.net:8081/artifactory/plugins-release-local"},{"key":"plugins-snapshot-local","type":"LOCAL","description":"Local repository for plugins snapshots","url":"http://dev.vhost.net:8081/artifactory/plugins-snapshot-local"},{"key":"ext-release-local","type":"LOCAL","description":"Local repository for third party libraries","url":"http://dev.vhost.net:8081/artifactory/ext-release-local"},{"key":"ext-snapshot-local","type":"LOCAL","description":"Local repository for third party snapshots","url":"http://dev.vhost.net:8081/artifactory/ext-snapshot-local"},{"key":"repo1","type":"REMOTE","description":"Central Maven 2 repository","url":"http://repo1.maven.org/maven2"},{"key":"java.net.m2","type":"REMOTE","description":"java.net Maven2 Format","url":"http://download.java.net/maven/2"},{"key":"java.net.m1","type":"REMOTE","description":"java.net Maven1 Format","url":"http://download.java.net/maven/1"},{"key":"jfrog-libs","type":"REMOTE","description":"JFrog libraries releases","url":"http://repo.jfrog.org/artifactory/libs-releases-local"},{"key":"jfrog-plugins","type":"REMOTE","description":"JFrog plugins releases","url":"http://repo.jfrog.org/artifactory/plugins-releases-local"},{"key":"jboss","type":"REMOTE","description":"JBoss Maven2 releases","url":"http://repository.jboss.org/nexus/content/groups/public-jboss"},{"key":"codehaus","type":"REMOTE","description":"Codehaus Maven2 releases","url":"http://repository.codehaus.org"},{"key":"spring-milestone","type":"REMOTE","description":"SpringSource in milestone version","url":"http://repository.springsource.com/maven/bundles/milestone"},{"key":"spring-release","type":"REMOTE","description":"SpringSource releases","url":"http://repository.springsource.com/maven/bundles/release"},{"key":"google-code","type":"REMOTE","description":"Google's open source releases","url":"http://google-maven-repository.googlecode.com/svn/repository"},{"key":"gradle-libs","type":"REMOTE","description":"Gradle libraries","url":"http://gradle.artifactoryonline.com/gradle/libs"},{"key":"gradle-plugins","type":"REMOTE","description":"Gradle plugins","url":"http://gradle.artifactoryonline.com/gradle/plugins"},{"key":"repo","type":"VIRTUAL","url":"http://dev.vhost.net:8081/artifactory/repo"},{"key":"remote-repos","type":"VIRTUAL","url":"http://dev.vhost.net:8081/artifactory/remote-repos"},{"key":"libs-release","type":"VIRTUAL","url":"http://dev.vhost.net:8081/artifactory/libs-release"},{"key":"plugins-release","type":"VIRTUAL","url":"http://dev.vhost.net:8081/artifactory/plugins-release"},{"key":"libs-snapshot","type":"VIRTUAL","url":"http://dev.vhost.net:8081/artifactory/libs-snapshot"},{"key":"plugins-snapshot","type":"VIRTUAL","url":"http://dev.vhost.net:8081/artifactory/plugins-snapshot"}]
@@ -0,0 +1,7 @@
1
+ HTTP/1.1 404 Not Found
2
+ Server: Artifactory/2.4.2
3
+ Content-Type: text/html;charset=utf-8
4
+ Content-Length: 952
5
+ Date: Sun, 02 Dec 2012 15:44:19 GMT
6
+
7
+ <html><head><title>Apache Tomcat/7.0.11 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The requested resource () is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.11</h3></body></html>
@@ -0,0 +1,7 @@
1
+ HTTP/1.1 200 OK
2
+ Server: Artifactory/2.4.2
3
+ Content-Type: application/vnd.org.jfrog.artifactory.storage.FolderInfo+json
4
+ Transfer-Encoding: chunked
5
+ Date: Sun, 04 Nov 2012 21:54:47 GMT
6
+
7
+ {"uri":"http://dev.vhost.net:8081/artifactory/api/storage/libs-snapshot-local","metadataUri":"http://dev.vhost.net:8081/artifactory/api/storage/libs-snapshot-local?mdns","repo":"libs-snapshot-local","path":"/","created":"2011-12-15T00:35:15.064+01:00","createdBy":"_system_","lastModified":"2011-12-15T00:35:15.065+01:00","modifiedBy":"_system_","lastUpdated":"2011-12-15T00:35:15.065+01:00","children":[{"uri":"/vnet","folder":true}]}
@@ -0,0 +1,8 @@
1
+ HTTP/1.1 401 Unauthorized
2
+ Server: Artifactory/2.4.2
3
+ WWW-Authenticate: Basic realm="Artifactory Realm"
4
+ Content-Type: text/html;charset=utf-8
5
+ Content-Length: 999
6
+ Date: Sun, 02 Dec 2012 22:11:31 GMT
7
+
8
+ <html><head><title>Apache Tomcat/7.0.11 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 401 - Bad credentials</h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u>Bad credentials</u></p><p><b>description</b> <u>This request requires HTTP authentication (Bad credentials).</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.11</h3></body></html>
@@ -0,0 +1,188 @@
1
+ HTTP/1.1 200 OK
2
+ Server: Artifactory/2.4.2
3
+ Content-Type: text/plain
4
+ Transfer-Encoding: chunked
5
+ Date: Sun, 04 Nov 2012 21:49:06 GMT
6
+
7
+
8
+
9
+ SYSTEM INFORMATION DUMP
10
+ =======================
11
+
12
+ User Info
13
+ ========================
14
+ user.country | US
15
+ user.dir | /var/lib/artifactory
16
+ user.home | /var/lib/artifactory
17
+ user.language | en
18
+ user.name | artifactory
19
+ user.timezone | Europe/Berlin
20
+
21
+ Host Info
22
+ ========================
23
+ Available Processors | 1
24
+ Heap Memory Usage-Commited | 1033502720
25
+ Heap Memory Usage-Init | 1073741824
26
+ Heap Memory Usage-Max | 1033502720
27
+ Heap Memory Usage-Used | 305610208
28
+ Non-Heap Memory Usage-Commited | 140705792
29
+ Non-Heap Memory Usage-Init | 136773632
30
+ Non-Heap Memory Usage-Max | 184549376
31
+ Non-Heap Memory Usage-Used | 74602800
32
+ os.arch | amd64
33
+ os.name | Linux
34
+ os.version | 2.6.32-279.11.1.el6.x86_64
35
+
36
+ Artifactory Info
37
+ ========================
38
+ artifactory.runMode.test | false
39
+ artifactory.runMode.qa | false
40
+ artifactory.runMode.dev | false
41
+ artifactory.version | 2.4.2
42
+ artifactory.revision | 13059
43
+ artifactory.addons.disabled |
44
+ artifactory.addons.info.url | http
45
+ | //service.jfrog.org/artifactory/addons/info/%s
46
+ artifactory.jcr.configDir | repo/filesystem-mysql
47
+ artifactory.jcr.fixConsistency | false
48
+ artifactory.jcr.autoRemoveMissingBinaries | false
49
+ artifactory.jcr.corePoolSize | 6
50
+ artifactory.versioningQueryIntervalSecs | 720
51
+ artifactory.logs.viewRefreshRateSecs | 10
52
+ artifactory.locks.timeoutSecs | 120
53
+ artifactory.locks.debugTimeouts | false
54
+ artifactory.task.completionLockTimeoutRetries | 100
55
+ artifactory.repo.cleanup.intervalHours | 21
56
+ artifactory.repo.concurrentDownloadSyncTimeoutSecs | 900
57
+ artifactory.fsitem.cache.idleTimeSecs | 1200
58
+ artifactory.search.maxResults | 500
59
+ artifactory.search.userQueryLimit | 1000
60
+ artifactory.search.content.maxFragments | 500
61
+ artifactory.search.content.maxFragmentsSize | 5000
62
+ artifactory.search.archive.minQueryLength | 3
63
+ artifactory.search.content.forceArchiveIndexing | false
64
+ artifactory.search.pattern.timeoutSecs | 30
65
+ artifactory.search.xmlIndexing | false
66
+ artifactory.search.artifactSearch.useV2Storage | true
67
+ artifactory.gc.useIndex | false
68
+ artifactory.gc.intervalSecs | 86400
69
+ artifactory.gc.delaySecs | 7200
70
+ artifactory.gc.sleepBetweenNodesMillis | 20
71
+ artifactory.gc.scanStartSleepingThresholdMillis | 20000
72
+ artifactory.gc.scanSleepBetweenIterationsMillis | 200
73
+ artifactory.gc.fileScanSleepIterationMillis | 1000
74
+ artifactory.gc.fileScanSleepMillis | 250
75
+ artifactory.gc.useV1 | false
76
+ artifactory.gc.maxCacheEntries | 10000
77
+ artifactory.traffic.collectionActive | false
78
+ artifactory.traffic.collectionIntervalSecs | 60
79
+ artifactory.traffic.trafficEntriesRetentionSecs | 7200
80
+ artifactory.security.authentication.cache.idleTimeSecs | 300
81
+ artifactory.security.userLastAccessUpdatesResolutionSecs | 60
82
+ artifactory.security.authentication.encryptedPassword.surroundChars | {}
83
+ artifactory.mvn.central.hostPattern | .maven.org
84
+ artifactory.mvn.central.indexerMaxQueryIntervalSecs | 86400
85
+ artifactory.mvn.dynamicMetadata.cacheRetentionSecs | 10
86
+ artifactory.mvn.metadata.version3.enabled | true
87
+ artifactory.build.maxFoldersToScanForDeletionWarnings | 2
88
+ artifactory.build.checksum.cache.idleTimeSecs | 300
89
+ artifactory.updates.refreshIntervalSecs | 14400
90
+ artifactory.updates.url | http
91
+ | //service.jfrog.org/artifactory/updates
92
+ artifactory.artifactoryRequestsToGlobalCanRetrieveRemoteArtifacts | false
93
+ artifactory.ui.syntaxColoringMaxTextSizeBytes | 512000
94
+ artifactory.plugin.scripts.refreshIntervalSecs | 2147483647
95
+ artifactory.file.roller.maxFileToRetain | 10
96
+ artifactory.backup.fileExportSleepIterationMillis | 2000
97
+ artifactory.backup.fileExportSleepMillis | 250
98
+ artifactory.http.acceptEncoding.gzip | true
99
+ artifactory.http.useExpectContinue | false
100
+ artifactory.filtering.resourceSizeKb | 64
101
+ artifactory.repo.remote.checkForExistingResourceOnRequest | true
102
+ artifactory.version.query.enabled | true
103
+ artifactory.yum.calculationRequest.aggregationTimeWindowSecs | 60
104
+ artifactory.yum.calculationRequest.aggregationCycleSecs | 60
105
+ artifactory.archive.licenseFile.names | license,LICENSE,license.txt,LICENSE.txt,LICENSE.TXT
106
+ artifactory.ui.search.maxRowsPerPage | 20
107
+ derby.storage.pageCacheSize | 500
108
+ artifactory.release | 1322556205542
109
+ derby.language.logStatementText | false
110
+ derby.stream.error.logSeverityLevel | 0
111
+ derby.module.mgmt.jmx | org.apache.derby.impl.services.jmxnone.NoManagementService
112
+ artifactory.home | /var/lib/artifactory
113
+
114
+ Java System Info
115
+ ========================
116
+ java.class.version | 50.0
117
+ java.home | /usr/java/jdk1.6.0_31/jre
118
+ java.io.tmpdir | /opt/artifactory/tomcat/temp
119
+ java.runtime.name | Java(TM) SE Runtime Environment
120
+ java.runtime.version | 1.6.0_31-b04
121
+ java.specification.name | Java Platform API Specification
122
+ java.specification.vendor | Sun Microsystems Inc.
123
+ java.specification.version | 1.6
124
+ java.vendor | Sun Microsystems Inc.
125
+ java.vendor.url | http
126
+ | //java.sun.com/
127
+ java.vendor.url.bug | http
128
+ | //java.sun.com/cgi-bin/bugreport.cgi
129
+ java.version | 1.6.0_31
130
+ java.vm.info | mixed mode
131
+ java.vm.name | Java HotSpot(TM) 64-Bit Server VM
132
+ java.vm.specification.name | Java Virtual Machine Specification
133
+ java.vm.specification.vendor | Sun Microsystems Inc.
134
+ java.vm.specification.version | 1.0
135
+ java.vm.vendor | Sun Microsystems Inc.
136
+ java.vm.version | 20.6-b01
137
+ sun.arch.data.model | 64
138
+ sun.boot.library.path | /usr/java/jdk1.6.0_31/jre/lib/amd64
139
+ sun.cpu.endian | little
140
+ sun.cpu.isalist |
141
+ sun.io.unicode.encoding | UnicodeLittle
142
+ sun.java.launcher | SUN_STANDARD
143
+ sun.jnu.encoding | UTF-8
144
+ sun.management.compiler | HotSpot 64-Bit Tiered Compilers
145
+ sun.os.patch.level | unknown
146
+ JVM Input arguments | -Djava.util.logging.config.file=/opt/artifactory/tomcat/conf/logging.properties
147
+ | -Xms1g
148
+ | -Xmx1g
149
+ | -Xss256k
150
+ | -XX
151
+ | PermSize=128m
152
+ | -XX
153
+ | MaxPermSize=128m
154
+ | -XX
155
+ | NewSize=384m
156
+ | -XX
157
+ | MaxNewSize=384m
158
+ | -Dartifactory.home=/var/lib/artifactory
159
+ | -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager
160
+ | -Dorg.apache.jasper.runtime.BodyContentImpl.LIMIT_BUFFER=true
161
+ | -Djava.endorsed.dirs=/opt/artifactory/tomcat/endorsed
162
+ | -Dcatalina.base=/opt/artifactory/tomcat
163
+ | -Dcatalina.home=/opt/artifactory/tomcat
164
+ | -Djava.io.tmpdir=/opt/artifactory/tomcat/temp
165
+
166
+ Java Class Path Info
167
+ ========================
168
+ sun.boot.class.path | /usr/java/jdk1.6.0_31/jre/lib/resources.jar
169
+ | /usr/java/jdk1.6.0_31/jre/lib/rt.jar
170
+ | /usr/java/jdk1.6.0_31/jre/lib/sunrsasign.jar
171
+ | /usr/java/jdk1.6.0_31/jre/lib/jsse.jar
172
+ | /usr/java/jdk1.6.0_31/jre/lib/jce.jar
173
+ | /usr/java/jdk1.6.0_31/jre/lib/charsets.jar
174
+ | /usr/java/jdk1.6.0_31/jre/lib/modules/jdk.boot.jar
175
+ | /usr/java/jdk1.6.0_31/jre/classes
176
+ java.library.path | /usr/java/jdk1.6.0_31/jre/lib/amd64/server
177
+ | /usr/java/jdk1.6.0_31/jre/lib/amd64
178
+ | /usr/java/jdk1.6.0_31/jre/../lib/amd64
179
+ | /usr/java/packages/lib/amd64
180
+ | /usr/lib64
181
+ | /lib64
182
+ | /lib
183
+ | /usr/lib
184
+ java.endorsed.dirs | /opt/artifactory/tomcat/endorsed
185
+ java.ext.dirs | /usr/java/jdk1.6.0_31/jre/lib/ext
186
+ | /usr/java/packages/lib/ext
187
+ java.class.path | /opt/artifactory/tomcat/bin/bootstrap.jar
188
+ | /opt/artifactory/tomcat/bin/tomcat-juli.jar