Skip to content

Commit 7e6401c

Browse files
committed
Adapt to new gradle wrapper name
1 parent 9f51368 commit 7e6401c

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ The following are a few guidelines on how we suggest you start.
7878
- EditorConfig by JetBrains (might be already activated)
7979
- Spek Framework by Spek Team
8080
3. Import the project (import the build.gradle -> import as project, works more reliably)
81-
4. Open up a terminal (e.g. Intellij's built in -> usually ALT+F12) and run `./gr build`
81+
4. Open up a terminal (e.g. Intellij's built in -> usually ALT+F12) and run `./gradlew build`
8282
This builds the project (compile, run tests etc) via gradle (notice, we renamed `gradlew` to `gr`, more convenient no?)
8383
5. Read up the [Coding Conventions of Atrium](#coding-conventions) (there are only 5 points).
8484

.github/workflows/java-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
with:
1818
java-version: ${{ matrix.java_version }}
1919
- name: Build buildNonDeprecatedJvm
20-
run: ./gr buildNonDeprecatedJvm
20+
run: ./gradlew buildNonDeprecatedJvm
2121

2222
- name: build sample atrium+spek project
2323
run: samples\jvm\spek\gradlew -p samples\jvm\spek build

.travis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,23 +11,23 @@ install: skip
1111
jobs:
1212
include:
1313
- env: MODE=current_11
14-
script: ./gr buildAllWithoutJs
14+
script: ./gradlew buildAllWithoutJs
1515
after_success: bash <(curl -s https://codecov.io/bash) -F current
1616

1717
- env: MODE=current_8
1818
jdk: oraclejdk8
19-
script: ./gr buildNonDeprecatedJvm buildAllAndroid
19+
script: ./gradlew buildNonDeprecatedJvm buildAllAndroid
2020
after_success: bash <(curl -s https://codecov.io/bash) -F current
2121

2222
- env: MODE=js
23-
script: ./gr buildAllJs
23+
script: ./gradlew buildAllJs
2424

2525
- env: MODE=bbc
26-
script: ./gr bbcTests
26+
script: ./gradlew bbcTests
2727
after_success: bash <(curl -s https://codecov.io/bash) -F bbc
2828

2929
- env: MODE=bc
30-
script: ./gr bcTests
30+
script: ./gradlew bcTests
3131
after_success: bash <(curl -s https://codecov.io/bash) -F bc
3232

3333
- env: MODE=samples

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ Release & deploy a commit
513513
d) commit & push changes
514514
4. deploy to bintray:
515515
// export CI=true is a temporary work around till https://youtrack.jetbrains.com/issue/KT-29069 is fixed:
516-
a) java -version 2>&1 | grep "version \"9" && CI=true ./gr clean publishToBintray
516+
a) java -version 2>&1 | grep "version \"9" && CI=true ./gradlew clean publishToBintray
517517
b) Log in to bintray, check that there are 926 artifacts and publish them
518518
c) synchronise to maven central
519519
5. create release on github

samples/readme-examples/src/main/kotlin/readme/examples/ReadmeSpec.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import java.util.*
3232
* The tests and error message are written here and automatically placed into the README via generation.
3333
* The generation is done during the project built. To trigger it manually, you have to use:
3434
* ```
35-
* ./gr :readme-examples:build
35+
* ./gradlew :readme-examples:build
3636
* ```
3737
*
3838
* There are currently three kind of tags supported:

0 commit comments

Comments
 (0)