Updated readme

This commit is contained in:
nathan 2020-08-09 13:09:31 +02:00
parent f10dca6718
commit da0a84256a
1 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
NetworkUtils NetworkUtils
============ ============
###### [![Dorkbox](https://badge.dorkbox.com/dorkbox.svg "Dorkbox")](https://git.dorkbox.com/dorkbox/ObjectPool) [![Github](https://badge.dorkbox.com/github.svg "Github")](https://github.com/dorkbox/ObjectPool) [![Gitlab](https://badge.dorkbox.com/gitlab.svg "Gitlab")](https://gitlab.com/dorkbox/ObjectPool) [![Bitbucket](https://badge.dorkbox.com/bitbucket.svg "Bitbucket")](https://bitbucket.org/dorkbox/ObjectPool) ###### [![Dorkbox](https://badge.dorkbox.com/dorkbox.svg "Dorkbox")](https://git.dorkbox.com/dorkbox/NetworkUtils) [![Github](https://badge.dorkbox.com/github.svg "Github")](https://github.com/dorkbox/NetworkUtils) [![Gitlab](https://badge.dorkbox.com/gitlab.svg "Gitlab")](https://gitlab.com/dorkbox/NetworkUtils)
Provides various Network Utilities, for IP/MAC address conversion, PING (without having to be root or with proper permissions) and managing various linux network properties Provides various Network Utilities, for IP/MAC address conversion, PING (without having to be root or with proper permissions) and managing various linux network properties
@ -21,7 +21,7 @@ Maven Info
<dependency> <dependency>
<groupId>com.dorkbox</groupId> <groupId>com.dorkbox</groupId>
<artifactId>NetworkUtils</artifactId> <artifactId>NetworkUtils</artifactId>
<version>0.1</version> <version>1.0</version>
</dependency> </dependency>
</dependencies> </dependencies>
``` ```
@ -31,7 +31,7 @@ Gradle Info
```` ````
dependencies { dependencies {
... ...
compile 'com.dorkbox:NetworkUtils:0.1' compile 'com.dorkbox:NetworkUtils:1.0'
} }
```` ````