Skip to content

Commit

Permalink
Updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
beanbeanjuice committed Jul 14, 2022
1 parent 0f22f96 commit a673cff
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 17 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/publish-github-package.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
name: Publish package to GitHub Packages

on:
push:
branches:
- master
release:
types: [created]

Expand Down
26 changes: 26 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
Add this to your maven `~/.m2/settings.xml` file.

```XML
<servers>
<server>
<id>github</id>
<username>USERNAME</username>
<password>TOKEN</password>
</server>
</servers>
```

Next, add this to your repositories

```XML
<repositories>
...
<repository>
<id>github</id>
<url>https://maven.pkg.github.com/beanbeanjuice/Java-Kawaii-API-Wrapper</url>
</repository>
...
</repositories>
```

Then click on the "packages" icon and install from there!
15 changes: 1 addition & 14 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.beanbeanjuice</groupId>
<artifactId>kawaii-api-wrapper</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
<packaging>jar</packaging>

<name>kawaii-api-wrapper</name>
Expand Down Expand Up @@ -63,14 +63,6 @@
<version>2.13.3</version>
</dependency>

<!-- Logback for Logging -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.11</version>
<scope>runtime</scope>
</dependency>

<!-- HTTPComponents for REQUESTS to the API -->
<dependency>
<groupId>org.apache.httpcomponents</groupId>
Expand All @@ -79,11 +71,6 @@
</dependency>

<!-- DOTENV for Environment Variable Support -->
<dependency>
<groupId>io.github.cdimascio</groupId>
<artifactId>dotenv-java</artifactId>
<version>2.2.4</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand Down

0 comments on commit a673cff

Please sign in to comment.