mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-22 12:22:06 +01:00
Add inclusion section to readme
This commit is contained in:
parent
408ddcaed1
commit
a8255ec3f2
1 changed files with 15 additions and 0 deletions
15
README.md
15
README.md
|
@ -8,6 +8,21 @@ PGPainless is based around the Bouncycastle java library and can be used on Andr
|
|||
|
||||
### NOTE: PGPainless is in a *very* early state of development and should under no circumstances be used for serious production usage yet.
|
||||
|
||||
## Include PGPainless in your Project
|
||||
|
||||
PGPainless is available on maven central. In order to include it in your project, just add the
|
||||
maven central repository and add PGPainless as a dependency.
|
||||
|
||||
```
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compile 'org.pgpainless:pgpainless-core:0.0.1-alpha1'
|
||||
}
|
||||
```
|
||||
|
||||
## How to use PGPainless
|
||||
|
||||
The entry point to the API is the `PGPainless` class. Here you can find methods for a quick start :)
|
||||
|
|
Loading…
Reference in a new issue