Skip to content

Commit 9dac7f6

Browse files
Add installation instructions to readme
1 parent bbee903 commit 9dac7f6

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,28 @@ fun `test my annotation processor`() {
6565
- JDK-crosscompilation: Provide your own JDK to compile the code against, instead of using the host application's JDK. This allows you to easily test your code on all JDK versions
6666
- Find dependencies automatically on the host classpath
6767

68+
## Installation
69+
70+
Add jitpack to the repositories in your root `build.gradle` file:
71+
72+
```Groovy
73+
allprojects {
74+
repositories {
75+
// ...
76+
maven { url 'https://jitpack.io' } // add this
77+
}
78+
}
79+
```
80+
81+
Add dependency to your module `build.gradle` file:
82+
83+
```Groovy
84+
dependencies {
85+
// ...
86+
implementation 'com.github.tschuchortdev:kotlin-compile-testing:1.0.0'
87+
}
88+
```
89+
6890
## License
6991

7092
Copyright (C) 2019 Thilo Schuchort

0 commit comments

Comments
 (0)