Skip to content

Commit

Permalink
Merge pull request #4 from beanbeanjuice/integration
Browse files Browse the repository at this point in the history
Integration
  • Loading branch information
beanbeanjuice authored Jul 15, 2022
2 parents e27f9fd + d213991 commit d3ab486
Show file tree
Hide file tree
Showing 8 changed files with 106 additions and 204 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug-report.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ Add any other context about the problem here.
# Checklist:

- [ ] I have checked for similar issues.
- [ ] This is a bug report, not a feature request, improvement request, or security vulnerability report.
- [ ] This is a bug report, not a feature request, improvement request, or security vulnerability report.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feature-request.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ Add any other context or screenshots about the feature request here.
# Checklist:

- [ ] I have checked for similar issues.
- [ ] This is a feature request, not improvement request, bug report, or security vulnerability report.
- [ ] This is a feature request, not improvement request, bug report, or security vulnerability report.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/improvement-request.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ Add any other context or screenshots about the improvement request here.
# Checklist:

- [ ] I have checked for similar issues.
- [ ] This is an improvement request, not a feature request, bug report, or security vulnerability report.
- [ ] This is an improvement request, not a feature request, bug report, or security vulnerability report.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/security-vulnerability.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ Add any other context or screenshots about the security vulnerability here.
# Checklist:

- [ ] I have checked for similar issues.
- [ ] This is a security vulnerability report, not a feature request, improvement request, or a bug report.
- [ ] This is a security vulnerability report, not a feature request, improvement request, or a bug report.
10 changes: 2 additions & 8 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,6 @@ Fixes # (issue)
- [ ] Documentation
- [ ] Other: _____

**Test Configuration**:
* Hardware:
- CPU:
- GPU:
- RAM:
* SDK: Java Oracle 16

# Checklist:

- [ ] This pull request has been linked to the appropriate issue on GitHub. (Use the development section on the right.)
Expand All @@ -39,4 +32,5 @@ Fixes # (issue)
- [ ] New and existing Maven CI tests have passed.
- [ ] The pull request is properly merging into the correct branch.
- [ ] All existing local code has been pushed to the GitHub repository.
- [ ] Changes have been documented in the current draft [Kawaii API Wrapper Release](https://github.com/beanbeanjuice/Java-Kawaii-API-Wrapper/releases) update.
- [ ] Changes have been documented in the current draft [Java Kawaii API Wrapper Release](https://github.com/beanbeanjuice/Java-Kawaii-API-Wrapper/releases) update.
- [ ] The version has been successfully incremented.
123 changes: 99 additions & 24 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,37 +1,112 @@
[![wakatime](https://wakatime.com/badge/github/beanbeanjuice/Java-Kawaii-API-Wrapper.svg?style=for-the-badge)](https://wakatime.com/badge/github/beanbeanjuice/Java-Kawaii-API-Wrapper)
[![CodeFactor](https://www.codefactor.io/repository/github/beanbeanjuice/java-kawaii-api-wrapper/badge?style=for-the-badge)](https://www.codefactor.io/repository/github/beanbeanjuice/java-kawaii-api-wrapper)
![GitHub release (latest by date)](https://img.shields.io/github/v/release/beanbeanjuice/Java-Kawaii-API-Wrapper?style=for-the-badge)

# Java Kawaii API Wrapper
<!-- PROJECT LOGO -->
<br />
<p align="center">
<a href="https://github.com/beanbeanjuice/cafeBot">
<img src="https://cdn.beanbeanjuice.com/images/cafeBot/readme/logo.gif" alt="Logo" width="260" height="186">
</a>

This is an API wrapper for the [Kawaii API](https://docs.kawaii.red/). It should make it a lot easier to get random images and such.
<h1 align="center">Kawaii API Wrapper</h1>

<p align="center">
A wrapper for the Kawaii API!
<br />
<a href="https://docs.kawaii.red/"><strong>Explore the docs »</strong></a>
<br />
<br />
</p>
</p>

<!-- TABLE OF CONTENTS -->
<details open="open">
<summary><h2 style="display: inline-block">Table of Contents</h2></summary>
<ol>
<li>
<a href="#about-the-project">About The Project</a>
<ul>
<li><a href="#built-with">Built With</a></li>
</ul>
</li>
<li>
<a href="#getting-started">Getting Started</a>
<ul>
<li><a href="#prerequisites">Prerequisites</a></li>
<li><a href="#installation">Installation</a></li>
</ul>
</li>
<li><a href="#roadmap">Roadmap</a></li>
<li><a href="#contributing">Contributing</a></li>
<li><a href="#license">License</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#acknowledgements">Acknowledgements</a></li>
</ol>
</details>

<!-- ABOUT THE PROJECT -->
# About The Project

### Built With

* [Maven](https://maven.apache.org/)

<!-- GETTING STARTED -->
# Getting Started

To add this bot to your server, follow these steps.

## Installation

Add this to your maven `~/.m2/settings.xml` file.
Make sure you replace VERSION with the appropriate version.

For `Maven`, paste this into your `dependencies` section of your `pom.xml` file.
```XML
<servers>
...
<server>
<id>github</id>
<username>USERNAME</username>
<password>TOKEN</password>
</server>
...
</servers>
<!-- Kawaii API Wrapper -->
<dependency>
<groupId>com.beanbeanjuice</groupId>
<artifactId>kawaii-api-wrapper</artifactId>
<version>VERSION</version>
</dependency>
```

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>
For `Gradle`, paste this into your `dependencies` section of your `build.gradle` file.
```Groovy
// Kawaii API Wrapper
implementation group: 'com.beanbeanjuice', name: 'kawaii-api-wrapper', version: 'VERSION'
```

Then click on the "packages" icon and install from there!
<!-- ROADMAP -->
# Roadmap

See the [open issues](https://github.com/beanbeanjuice/cafeBot/issues) for a list of proposed features (and known issues).

<!-- CONTRIBUTING -->
# Contributing

Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are **greatly appreciated**.

1. Fork the Project
2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)
3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)
4. Push to the Branch (`git push origin feature/AmazingFeature`)
5. Open a Pull Request

<!-- LICENSE -->
# License

Distributed under the GPL-3.0 License. See `LICENSE` for more information.

<!-- CONTACT -->
# Contact

- beanbeanjuice
- Twitter [@beanbeanjuice](https://twitter.com/beanbeanjuice)
- Email - beanbeanjuice@outlook.com
- Project Link: [GitHub](https://github.com/beanbeanjuice/cafeBot)

<!-- ACKNOWLEDGEMENTS -->
# Acknowledgements

* *There's nothing here yet... maybe in the future?*
167 changes: 0 additions & 167 deletions output.txt

This file was deleted.

2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<maven.compiler.target>16</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<version.number>1.0.7</version.number>
<version.number>1.1.0</version.number>
</properties>

<profiles>
Expand Down

0 comments on commit d3ab486

Please sign in to comment.