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

Commit 3f9bf8f

Browse files
Lanar, AlesLanar, Ales
authored andcommitted
New release of CodeSV with Class Repository example.
1 parent 1ddc31d commit 3f9bf8f

File tree

15 files changed

+799
-5
lines changed

15 files changed

+799
-5
lines changed

codesv-examples/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
group 'com.ca.codesv'
2-
version '1.2.1'
2+
version '1.3.0'
33

44
apply plugin: 'java'
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
### CodeSV Repositories example
2+
3+
This is a sample Gradle project that contains tests to show the capabilities of CodeSV with class repositories feature. All examples are virtualizing HTTP services using a HTTP fluent API.
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
group 'com.ca.codesv'
2+
3+
apply plugin: 'java'
4+
5+
sourceCompatibility = 1.8
6+
targetCompatibility = 1.8
7+
8+
9+
repositories {
10+
mavenLocal()
11+
maven { url "http://ca.bintray.com/sv" }
12+
mavenCentral()
13+
}
14+
15+
16+
dependencies {
17+
// Logging
18+
compile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.10.0'
19+
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.10.0'
20+
compile("com.ca.codesv:codesv-dist-jar:1.3.0")
21+
22+
compile("org.apache.httpcomponents:httpclient:4.5.3")
23+
compile("com.google.code.gson:gson:2.8.0")
24+
compile group: 'org.apache.logging.log4j', name: 'log4j-slf4j-impl', version: '2.10.0'
25+
}
Binary file not shown.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#Tue Jan 09 10:20:45 CET 2018
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-all.zip

codesv-examples/repositories-example/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.

codesv-examples/repositories-example/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.

0 commit comments

Comments
 (0)