1
- # tracers.java [ ![ Maven Central ] ( https://img.shields.io/maven-central /v/org. algorithm-visualizer/tracers- java.svg?style=flat-square )] ( https://search.maven.org/artifact/ org.algorithm-visualizer/tracers- java ) [ ![ API reference] ( https://img.shields.io/badge/documentation-java-red.svg?style=flat-square )] ( https://javadoc.io/doc/org. algorithm-visualizer/tracers- java/ ) [ ![ Travis (.com)] ( https://img.shields.io/travis/com/algorithm-visualizer/tracers.java.svg?style=flat-square )] ( https://travis-ci.com/algorithm-visualizer/tracers.java )
1
+ # tracers.java [ ![ JitPack ] ( https://img.shields.io/jitpack /v/github/ algorithm-visualizer/tracers. java.svg?style=flat-square )] ( https://jitpack.io/# org.algorithm-visualizer/tracers. java ) [ ![ API reference] ( https://img.shields.io/badge/documentation-java-red.svg?style=flat-square )] ( https://algorithm-visualizer.github.io /tracers. java/ ) [ ![ Travis (.com)] ( https://img.shields.io/travis/com/algorithm-visualizer/tracers.java.svg?style=flat-square )] ( https://travis-ci.com/algorithm-visualizer/tracers.java )
2
2
3
3
> This repository is part of the project [ Algorithm Visualizer] ( https://github.com/algorithm-visualizer ) .
4
4
5
5
` tracers.java ` is a visualization library for Java.
6
6
You can use it on [ algorithm-visualizer.org] ( https://algorithm-visualizer.org/ ) or locally on your machine.
7
7
8
8
## Installation
9
+ ### Gradle
10
+ 1 . Add the JitPack repository to ` build.gradle ` .
11
+ ``` gradle
12
+ allprojects {
13
+ repositories {
14
+ jcenter()
15
+ maven { url "https://jitpack.io" }
16
+ }
17
+ }
18
+ ```
9
19
10
- - Gradle
20
+ 2. Add the dependency.
11
21
```gradle
12
22
dependencies {
13
- implementation 'org.algorithm-visualizer:tracers- java:+'
23
+ implementation 'org.algorithm-visualizer:tracers. java:+'
14
24
}
15
25
```
16
26
17
- - Maven
27
+ ### Maven
28
+ 1. Add the JitPack repository to `pom.xml`.
18
29
```xml
30
+ <repositories>
31
+ <repository>
32
+ <id>jitpack.io</id>
33
+ <url>https://jitpack.io</url>
34
+ </repository>
35
+ </repositories>
36
+ ```
37
+
38
+ 2. Add the dependency.
39
+ ```
19
40
<dependency>
20
41
<groupId>org.algorithm-visualizer</groupId>
21
- <artifactId>tracers- java</artifactId>
42
+ <artifactId>tracers. java</artifactId>
22
43
<version>[1.0.0,)</version>
23
44
</dependency>
24
45
```
@@ -37,7 +58,7 @@ class Main {
37
58
}
38
59
```
39
60
40
- Check out the [ API reference] ( https://javadoc.io/doc/org. algorithm-visualizer/tracers- java/ ) for more information.
61
+ Check out the [ API reference] ( https://algorithm-visualizer.github.io /tracers. java/ ) for more information.
41
62
42
63
## Contributing
43
64
0 commit comments