We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51d18ca commit 95e9a2fCopy full SHA for 95e9a2f
1 file changed
README.md
@@ -83,7 +83,31 @@ then(logger).should().log(ON_MELTED_MESSAGE)
83
~~~
84
85
### Download
86
-**TODO: make the jar public**
+
87
+While we are working on Bintray support, `StateMachine` is available via [JitPack](jitpack).
88
89
+##### Maven:
90
+```xml
91
+<repository>
92
+ <id>jitpack.io</id>
93
+ <url>https://jitpack.io</url>
94
+</repository>
95
+<dependency>
96
+ <groupId>com.github.tinder</groupId>
97
+ <artifactId>state-machine</artifactId>
98
+ <version>0.1.0</version>
99
+</dependency>
100
+```
101
102
+##### Gradle:
103
+```groovy
104
+repositories {
105
+ // ...
106
+ maven { url "https://jitpack.io" }
107
+}
108
109
+implementation 'com.github.tinder:state-machine:0.1.0'
110
111
112
Download [the latest JAR][latest-jar] or grab via Maven:
113
```xml
0 commit comments