Skip to content

Commit 542e988

Browse files
committed
fixes
1 parent c9e7224 commit 542e988

File tree

3 files changed

+37
-15
lines changed

3 files changed

+37
-15
lines changed

.travis.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,21 @@
11
language: java
2+
23
sudo: false
4+
35
jdk:
46
- oraclejdk8
57

8+
# Automatic Javadoc deploy:
69
after_success:
7-
- .util/deploy.sh
10+
- ".util/deploy.sh"
811

912
notifications:
1013
email: false
1114

15+
env:
16+
global:
17+
secure: EfPAmwQEQO9Ku2ijDR6Ju3agWOOWLS+rJBv9UQELsX4+Nu2aX/xloBexW6xS6syMxu1F/xDTYvhZRZFzkQjWefZBxKZtJwZv3gRHUc3xh+kYKnxiD1QN3e3tU9BC4h/Ka1gZFwCOQc042MxfJEMnSGwL85BYdyhheACBUCV19ZO9Ft+E31XsOQyBmeB5ma7Gtig4abPR1s1ccFiOrO8TzBXozl7gWoSNtjtihsTc9aQHSwP8mOdy0gr7ZEqHauwj+75B427D233r9Ezn+DlHZ4B8rNs6f39gbIvEGt7+jJt0GJ0KYb84PKi6PRwbHdaQQNhG+un3TC0mYIkdUx7HvcuYfOJlZQsaiS4Vnsc5czDRbhJb6yMf6TWKlCUONQieiQdZCk1cKyRVfMVcTbtZp+0+fsvYuOVm+wlhYnSLdaPuR+OZhtxUDf4UJg7C0vWXYXzY5JjWJ6O9bUn+1YQL1jSiDAbwm+OTKB/oKR93Q++OZOW1kpm6XLJBN6vk24I49qjsrFVr6TQUUFryxupFTOsyqTsQwKUSwEIBaLyym85+mnM5Qd8E+bPqmhm0Tzbod0RIqxik6afcjPkLKpDi3sVUxEdd6/YYoiW8Jz5yVjLkkFaNqE6QmMVx4K5StPMmcC38MKgStx+/inXmaC+daKashYdInE2xKYWyYA+dm5A=
18+
1219
cache:
1320
directories:
14-
- $HOME/.m2
21+
- "$HOME/.m2"

.util/deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22
#
3-
# Automatic Javadocs deploy to gh-pages branch
3+
# Automatic Javadoc deploy to gh-pages branch
44

55
SLUG="abranhe/java-lib"
66
JDK="oraclejdk8"

readme.md

Lines changed: 27 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
</div>
1212

1313
<p align="center">
14+
<a href="https://search.maven.org/#artifactdetails%7Ccom.abranhe%7Callalgorithms"><img src="https://maven-badges.herokuapp.com/maven-central/com.abranhe/allalgorithms/badge.svg"></a>
15+
<a href="https://www.javadoc.io/doc/com.abranhe/allalgorithms"><img src="https://www.javadoc.io/badge/com.abranhe/allalgorithms.svg" alt="Javadocs"></a>
1416
<a href="https://travis-ci.org/allalgorithms/java-lib"><img src="https://img.shields.io/travis/allalgorithms/java-lib.svg?logo=travis" /></a>
1517
<a href="https://github.com/abranhe/python-lib/blob/master/license"><img src="https://img.shields.io/github/license/abranhe/java-lib.svg" /></a>
1618
<a href="https://github.com/allalgorithms"><img src="https://cdn.abranhe.com/projects/algorithms/badge.svg"/></a>
@@ -23,30 +25,43 @@
2325
<a href="https://java.allalgorithms.com"><code>java.allalgorithms.com</code></a>
2426
</p>
2527

26-
# Why?
28+
## Why?
2729

28-
- Why not 😂
29-
- Clean and focused
30-
- Actively maintained
31-
- Because All Algorithms should be easy to use in Python
30+
- Why not 😂??
31+
- Clean and focused.
32+
- Actively maintained.
33+
- Because All Algorithms should be easy to use in Java.
3234

33-
Read the detailed documentation at [python.allalgorithms.com](https://python.allalgorithms.com) or see the [`docs`](https://github.com/abranhe/python-lib/blob/master/docs) directory on Github. See [Tree](#tree).
35+
Read the detailed documentation at [java.allalgorithms.com](https://java.allalgorithms.com). See the [All ▲lgorithms Tree](#tree).
3436

3537
**Want to contribute?** [GET STARTED HERE](https://github.com/abranhe/java-lib/tree/master/.github/contributing.md)
3638

37-
Dependency Information
38-
Download the latest version JAR to include it in your project
39+
## Dependency Information
3940

40-
### Maven
41+
*Download the latest version JAR to include it in your project*
42+
43+
#### Maven
4144

4245
```xml
4346
<dependency>
44-
<groupId>com.abranhe.bigdecimal</groupId>
45-
<artifactId>bigdecimal</artifactId>
46-
<version>1.0.1</version>
47+
<groupId>com.abranhe.allalgorithms</groupId>
48+
<artifactId>allalgorithms</artifactId>
49+
<version>0.0.1</version>
4750
</dependency>
4851
```
4952

53+
#### Gradle
54+
55+
```
56+
compile 'com.abranhe:bigdecimal:0 .0.1'
57+
```
58+
59+
## Import
60+
61+
```
62+
import com.abranhe.allalgorithms.*;
63+
```
64+
5065
## Usage
5166

5267
```java

0 commit comments

Comments
 (0)