{"id":19656331,"url":"https://github.com/daggerok/soapui-runner-example","last_synced_at":"2026-02-03T20:38:51.369Z","repository":{"id":151042022,"uuid":"97421455","full_name":"daggerok/soapui-runner-example","owner":"daggerok","description":"This repo is contains example of usage soapui-testrunner plugin: https://github.com/daggerok/soapui-runner","archived":false,"fork":false,"pushed_at":"2017-11-12T12:48:04.000Z","size":208,"stargazers_count":0,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-16T11:20:58.081Z","etag":null,"topics":["gradle-plugin","loadtestrunner","soapui","testing","testrunner"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/daggerok.png","metadata":{"files":{"readme":"README.adoc","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-07-17T01:02:21.000Z","updated_at":"2017-07-29T05:23:22.000Z","dependencies_parsed_at":null,"dependency_job_id":"b6888847-940d-43e7-b019-c780699ac731","html_url":"https://github.com/daggerok/soapui-runner-example","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/daggerok/soapui-runner-example","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daggerok%2Fsoapui-runner-example","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daggerok%2Fsoapui-runner-example/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daggerok%2Fsoapui-runner-example/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daggerok%2Fsoapui-runner-example/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/daggerok","download_url":"https://codeload.github.com/daggerok/soapui-runner-example/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daggerok%2Fsoapui-runner-example/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29056601,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-03T20:13:53.544Z","status":"ssl_error","status_checked_at":"2026-02-03T20:13:40.507Z","response_time":96,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["gradle-plugin","loadtestrunner","soapui","testing","testrunner"],"created_at":"2024-11-11T15:27:29.038Z","updated_at":"2026-02-03T20:38:51.351Z","avatar_url":"https://github.com/daggerok.png","language":null,"readme":"= soapui-runner-example image:https://travis-ci.org/daggerok/soapui-runner-example.svg?branch=master[\"Build Status\", link=\"https://travis-ci.org/daggerok/soapui-runner-example\"]\n\nThis repo is contains example usage link:https://github.com/daggerok/soapui-runner[soapui-runner plugin]\n\n== install\n\n[source,gradle]\n----\nbuildscript {\n  repositories {\n    maven { url 'https://plugins.gradle.org/m2/' }\n    maven { url 'http://smartbearsoftware.com/repository/maven2/' }\n  }\n  dependencies {\n    classpath \"gradle.plugin.io.github.daggerok:soapui-runner:5.3.1-RC-4\"\n  }\n}\n\napply plugin: 'io.github.daggerok.soapui-runner'\n----\n\n==== or\n\n[source,gradle]\n----\nbuildscript {\n  repositories {\n    maven { url 'https://plugins.gradle.org/m2/' }\n    maven { url 'http://smartbearsoftware.com/repository/maven2/' }\n  }\n}\n\nplugins {\n  id 'io.github.daggerok.soapui-runner' version '5.3.1-RC-4'\n}\n----\n\n== config\n\n[source,gradle]\n----\ntestrunner {\n  projectFile = \"$projectDir/soapui-test-project.xml\"\n  projectProperties = [\n      'apiEndpoint=https://daggerok.github.io'\n  ]\n  systemProperties = [\n       \"soapui.ext.libraries=$buildDir/soapui/ext\"\n  ]\n}\n\nrepositories { jcenter() }\n\ndependencies {\n  extDir \"org.postgresql:postgresql:9.4.1212.jre7\"\n}\n----\n\n== run\n\n[source,bash]\ngradle extDir\ngradle testrunner\ngradle loadtestrunner\n\n== adding new and override existed properties\n\n[source,gradle]\n----\n\nallprojects {\n  testrunner {\n    projectProperties = [\n        'p=base',\n        'apiEndpoint=https://daggerok.github.io-wrong'\n    ]\n    systemProperties = [\n        's=base',\n        \"soapui.ext.libraries=$buildDir/soapui/ext-wrong\"\n    ]\n  }\n}\n\ntestrunner {\n  projectFile = \"$projectDir/soapui-test-project.xml\"\n  projectProperties = [\n      'p=existed-prop-will-be-overriden',\n      'newPropjectProp=new-prop-will-be-added',\n      'apiEndpoint=https://daggerok.github.io'\n  ]\n  systemProperties = [\n      's=existed-prop-will-be-overriden',\n      'newSystemProp=new-prop-will-be-added',\n      \"soapui.ext.libraries=$buildDir/soapui/ext\"\n  ]\n}\n----\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdaggerok%2Fsoapui-runner-example","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdaggerok%2Fsoapui-runner-example","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdaggerok%2Fsoapui-runner-example/lists"}