Skip to content

Commit 4b7c625

Browse files
author
Kirill Saksin
authored
Merge pull request #53 from saksmt/release/1.0.0
Release/1.0.0
2 parents bd407b8 + bd9d0c2 commit 4b7c625

File tree

16 files changed

+22
-4
lines changed

16 files changed

+22
-4
lines changed

.circleci/config.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,14 +90,16 @@ jobs:
9090

9191
workflows:
9292
version: 2
93-
build_and_puslish_snapshot:
93+
build_and_puslish:
9494
jobs:
95-
- build
95+
- build:
96+
filters:
97+
tags: { only: /^v.*/ }
9698
- publish_snapshot:
9799
requires: [ build ]
98100
filters: { branches: { only: develop } }
99101
- publish_release:
100102
requires: [ build ]
101103
filters:
102-
tags: { only: /v.*/ }
104+
tags: { only: /^v.*/ }
103105
branches: { ignore: /.*/ }

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
group = run.smt.ktest
2-
version = 1.0.0
2+
version = 1.0.0-rc3
33

44
kotlinVersion = 1.2.10

gradle/ossrh-default-pom.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ def deployer = uploadArchives.repositories.hasProperty('mavenDeployer') ? upload
66
name project.description
77
packaging 'jar'
88
url project.url
9+
if (project.hasProperty('fullDescription')) {
10+
description fullDescription
11+
}
912

1013
scm {
1114
connection "scm:git:${project.url}"

ktest-core/ktest-api/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
description = 'kTest :: API'
2+
ext.fullDescription = 'Core API of kTest'
23

34
dependencies {
45
compile project(':ktest-core:ktest-util')

ktest-core/ktest-config/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
description = 'KTest :: Config'
2+
ext.fullDescription = 'Extensions for typesafe config'
23

34
dependencies {
45
compile 'org.jetbrains.kotlin:kotlin-stdlib-jre8'

ktest-core/ktest-runner/ktest-runner-junit4/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
description = 'kTest :: Runner :: JUnit4'
2+
ext.fullDescription = 'JUnit4 runner for kTest'
23

34
dependencies {
45
compile project(':ktest-core:ktest-util')

ktest-core/ktest-util/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
description = 'KTest :: Util'
2+
ext.fullDescription = 'kTest utilities'
23

34
dependencies {
45
compile 'org.jetbrains.kotlin:kotlin-stdlib-jre8'

ktest-integration/ktest-allure/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
description = 'kTest :: Integration :: Allure'
2+
ext.fullDescription = 'Integration layer between Allure and kTest'
23

34
dependencies {
45
compile project(':ktest-core:ktest-util')

ktest-integration/ktest-db/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
description = 'kTest :: Integration :: DB'
2+
ext.fullDescription = 'Database intergration for kTest'
23

34
dependencies {
45
compile project(':ktest-core:ktest-util')

ktest-integration/ktest-jackson/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
description = 'kTest :: Integration :: Jackson'
2+
ext.fullDescription = 'kTest Jackson integration + type safe type DSL'
23

34
dependencies {
45
compile project(':ktest-core:ktest-util')

ktest-integration/ktest-json-matchers/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
description = 'kTest :: Integration :: JSON Matchers'
2+
ext.fullDescription = 'kTest JSON matchers'
23

34
dependencies {
45
compile project(':ktest-core:ktest-util')

ktest-integration/ktest-jsonpath/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
description = 'kTest :: Integration :: JSONPath'
2+
ext.fullDescription = 'kTest JSONPath integration + subtree DSL'
23

34
dependencies {
45
compile project(':ktest-core:ktest-util')

ktest-integration/ktest-rest/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
description = 'kTest :: Integration :: REST'
2+
ext.fullDescription = 'RestAssured integration'
23

34
dependencies {
45
compile project(':ktest-core:ktest-util')

ktest-integration/ktest-resttest/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
description = 'kTest :: Integration :: RESTTest'
2+
ext.fullDescription = 'Declarative DSL for quick and easy testing of REST APIs'
23

34
dependencies {
45
compile project(':ktest-core:ktest-util')

ktest-pom/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ def deployer = uploadArchives.repositories.hasProperty('mavenDeployer') ? upload
4646
pom.project {
4747
name project.description
4848
packaging 'pom'
49+
description 'kTest parent POM'
4950

5051
url project.url
5152

sample/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
description = "kTest :: Samples"
2+
ext.fullDescription = 'kTest samples'
23

34
import org.mockserver.mockserver.MockServer
45

0 commit comments

Comments
 (0)