Skip to content

Commit

Permalink
Docs: Added dependency usage to README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
R0land013 committed Oct 17, 2023
1 parent 179a7ac commit 3ea1ab2
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,24 @@ that serves a web page with a simple web app that displays the slides.

## Usage

For adding Showly to your project as a dependency you can add the following to your pom.xml if you are using Maven:

```xml
<dependency>
<groupId>io.github.r0land013</groupId>
<artifactId>showly</artifactId>
<version>0.1.0</version>
</dependency>
```

If you are using Gradle, add this to your build.gradle:

```groovy
dependencies {
implementation 'io.github.r0land013:showly:0.1.0'
}
```

For now, Showly support Power Point binary and xml formats. You can use Showly like this:

```Java
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.github.r0land013</groupId>
<artifactId>showly</artifactId>
<version>0.1.0-SNAPSHOT</version>
<version>0.1.0</version>

<name>Showly</name>
<url>https://github.com/R0land013/showly</url>
Expand Down

0 comments on commit 3ea1ab2

Please sign in to comment.