Skip to content
This repository was archived by the owner on Oct 9, 2025. It is now read-only.

Commit fae2331

Browse files
committed
Release v1.1.0
1 parent 43ecb32 commit fae2331

31 files changed

+2325
-6
lines changed

LICENSE.TXT

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
Copyright © 2017 CA, Inc. All rights reserved. Use of this
2+
CA Service Virtualization as Code software (“Software”) is permitted, provided that open source
3+
software included in the Software is subject to the applicable open source license.
4+
The Software is not subject to other CA licenses or support agreements.  
5+
TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE SOFTWARE IS PROVIDED “AS IS” WITHOUT WARRANTY OF ANY
6+
KIND, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR
7+
A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. IN NO EVENT WILL CA BE LIABLE FOR ANY LOSS OR DAMAGE,
8+
DIRECT OR INDIRECT, FROM THE USE OF THIS SOFTWARE, INCLUDING, WITHOUT LIMITATION, LOST PROFITS,
9+
BUSINESS INTERRUPTION, GOODWILL OR LOST DATA, EVEN IF CA IS EXPRESSLY ADVISED IN ADVANCE OF
10+
THE POSSIBILITY OF SUCH DAMAGES.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ You can create and run HTTP virtual service definitions directly in your unit te
88

99
Even better, the HTTP virtual services are completely transparent to an application under test and so you don't need to make any configuration tweaks.
1010

11-
[How to use SV as Code](https://github.com/CA-DevTest/SV-as-Code/wiki)
11+
[How to use SV as Code](https://github.com/CA-DevTest/SV-as-Code/wiki/Quick-Start-Guide)
1212

1313
[Share ideas and raise issues](https://communities.ca.com/community/ca-devtest-community/content?filterID=contentstatus%5Bpublished%5D~category%5Bsv-as-code%5D)
1414

lic.txt

Lines changed: 0 additions & 5 deletions
This file was deleted.

svcode-examples/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
### SV as Code Code Examples
2+
3+
This is a sample gradle project containing tests showing capabilities of SV as Code. All examples are virtualizing HTTP services using HTTP fluent API.
4+
5+
This project is runnable only with Java 8 and Gradle.

svcode-examples/build.gradle

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
group 'com.ca.svcode'
2+
version '1.1.0'
3+
4+
apply plugin: 'java'
5+
6+
sourceCompatibility = 1.8
7+
targetCompatibility = 1.8
8+
ext.moduleDepVersion = "1.1.0"
9+
repositories {
10+
mavenLocal()
11+
maven { url "http://ca.bintray.com/sv" }
12+
mavenCentral()
13+
}
14+
15+
16+
dependencies {
17+
// Logging
18+
compile 'org.slf4j:slf4j-api:1.7.21'
19+
compile 'com.ca.svcode:svcode-dist-jar:1.1.0'
20+
21+
compile 'org.apache.httpcomponents:httpclient:4.5.3'
22+
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.0'
23+
}
53.5 KB
Binary file not shown.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#Thu Aug 17 14:54:26 CEST 2017
2+
distributionBase=GRADLE_USER_HOME
3+
distributionPath=wrapper/dists
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-3.5-rc-2-bin.zip

svcode-examples/gradlew

Lines changed: 172 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

svcode-examples/gradlew.bat

Lines changed: 84 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

svcode-examples/settings.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
rootProject.name = 'svcode-examples'
2+

0 commit comments

Comments
 (0)