Skip to content

Commit

Permalink
Release candidate 1
Browse files Browse the repository at this point in the history
  • Loading branch information
Kirill Saksin committed Feb 6, 2018
1 parent ebed6ea commit abbace0
Show file tree
Hide file tree
Showing 16 changed files with 22 additions and 4 deletions.
8 changes: 5 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,14 +90,16 @@ jobs:

workflows:
version: 2
build_and_puslish_snapshot:
build_and_puslish:
jobs:
- build
- build:
filters:
tags: { only: /^v.*/ }
- publish_snapshot:
requires: [ build ]
filters: { branches: { only: develop } }
- publish_release:
requires: [ build ]
filters:
tags: { only: /v.*/ }
tags: { only: /^v.*/ }
branches: { ignore: /.*/ }
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
group = run.smt.ktest
version = 1.0.0
version = 1.0.0-rc1

kotlinVersion = 1.2.10
3 changes: 3 additions & 0 deletions gradle/ossrh-default-pom.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ def deployer = uploadArchives.repositories.hasProperty('mavenDeployer') ? upload
name project.description
packaging 'jar'
url project.url
if (project.hasProperty('fullDescription')) {
description fullDescription
}

scm {
connection "scm:git:${project.url}"
Expand Down
1 change: 1 addition & 0 deletions ktest-core/ktest-api/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
description = 'kTest :: API'
ext.fullDescription = 'Core API of kTest'

dependencies {
compile project(':ktest-core:ktest-util')
Expand Down
1 change: 1 addition & 0 deletions ktest-core/ktest-config/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
description = 'KTest :: Config'
ext.fullDescription = 'Extensions for typesafe config'

dependencies {
compile 'org.jetbrains.kotlin:kotlin-stdlib-jre8'
Expand Down
1 change: 1 addition & 0 deletions ktest-core/ktest-runner/ktest-runner-junit4/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
description = 'kTest :: Runner :: JUnit4'
ext.fullDescription = 'JUnit4 runner for kTest'

dependencies {
compile project(':ktest-core:ktest-util')
Expand Down
1 change: 1 addition & 0 deletions ktest-core/ktest-util/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
description = 'KTest :: Util'
ext.fullDescription = 'kTest utilities'

dependencies {
compile 'org.jetbrains.kotlin:kotlin-stdlib-jre8'
Expand Down
1 change: 1 addition & 0 deletions ktest-integration/ktest-allure/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
description = 'kTest :: Integration :: Allure'
ext.fullDescription = 'Integration layer between Allure and kTest'

dependencies {
compile project(':ktest-core:ktest-util')
Expand Down
1 change: 1 addition & 0 deletions ktest-integration/ktest-db/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
description = 'kTest :: Integration :: DB'
ext.fullDescription = 'Database intergration for kTest'

dependencies {
compile project(':ktest-core:ktest-util')
Expand Down
1 change: 1 addition & 0 deletions ktest-integration/ktest-jackson/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
description = 'kTest :: Integration :: Jackson'
ext.fullDescription = 'kTest Jackson integration + type safe type DSL'

dependencies {
compile project(':ktest-core:ktest-util')
Expand Down
1 change: 1 addition & 0 deletions ktest-integration/ktest-json-matchers/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
description = 'kTest :: Integration :: JSON Matchers'
ext.fullDescription = 'kTest JSON matchers'

dependencies {
compile project(':ktest-core:ktest-util')
Expand Down
1 change: 1 addition & 0 deletions ktest-integration/ktest-jsonpath/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
description = 'kTest :: Integration :: JSONPath'
ext.fullDescription = 'kTest JSONPath integration + subtree DSL'

dependencies {
compile project(':ktest-core:ktest-util')
Expand Down
1 change: 1 addition & 0 deletions ktest-integration/ktest-rest/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
description = 'kTest :: Integration :: REST'
ext.fullDescription = 'RestAssured integration'

dependencies {
compile project(':ktest-core:ktest-util')
Expand Down
1 change: 1 addition & 0 deletions ktest-integration/ktest-resttest/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
description = 'kTest :: Integration :: RESTTest'
ext.fullDescription = 'Declarative DSL for quick and easy testing of REST APIs'

dependencies {
compile project(':ktest-core:ktest-util')
Expand Down
1 change: 1 addition & 0 deletions ktest-pom/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ def deployer = uploadArchives.repositories.hasProperty('mavenDeployer') ? upload
pom.project {
name project.description
packaging 'pom'
description 'kTest parent POM'

url project.url

Expand Down
1 change: 1 addition & 0 deletions sample/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
description = "kTest :: Samples"
ext.fullDescription = 'kTest samples'

import org.mockserver.mockserver.MockServer

Expand Down

0 comments on commit abbace0

Please sign in to comment.