Skip to content
This repository has been archived by the owner on Jan 1, 2023. It is now read-only.

Commit

Permalink
Finished refactoring, i will now proclaim 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
doomsdayrs committed May 11, 2019
1 parent 030f4db commit 0bab751
Show file tree
Hide file tree
Showing 6 changed files with 86 additions and 3 deletions.
3 changes: 1 addition & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,14 @@ apply plugin: 'java'
apply plugin: 'maven'

group = 'com.github.Doomsdayrs'
version = '0.9.G'
version = '1.0.0'

description = """Jikan4java, Java wrapper for the Jikan api"""

sourceCompatibility = 8
targetCompatibility = 8

repositories {

maven { url "http://repo.maven.apache.org/maven2" }
}
dependencies {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,20 @@
import java.util.concurrent.CompletableFuture;

/**
* This file is part of Jikan4java.
* Jikan4java is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* Foobar is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with Jikan4java. If not, see <https://www.gnu.org/licenses/>.
* ====================================================================
* Jikan4java
* 05 / January / 2019
* 11 / May / 2019
*
* @author github.com/doomsdayrs
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
package com.github.Doomsdayrs.Jikan4java.exceptions;

/**
* This file is part of Jikan4java.
* Jikan4java is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* Foobar is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with Jikan4java. If not, see <https://www.gnu.org/licenses/>.
* ====================================================================
* Jikan4java
* 11 / May / 2019
*
* @author github.com/doomsdayrs
*/
public class RequestError extends Exception {
public RequestError() {
super();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
package com.github.Doomsdayrs.Jikan4java.types.Support.enums;

/**
* This file is part of Jikan4java.
* Jikan4java is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* Foobar is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with Jikan4java. If not, see <https://www.gnu.org/licenses/>.
* ====================================================================
* Jikan4java
* 11 / May / 2019
*
* @author github.com/doomsdayrs
*/
public enum Days {
MONDAY,
TUESDAY,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
package com.github.Doomsdayrs.Jikan4java.types.Support.enums;

/**
* This file is part of Jikan4java.
* Jikan4java is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* Foobar is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with Jikan4java. If not, see <https://www.gnu.org/licenses/>.
* ====================================================================
* Jikan4java
* 11 / May / 2019
*
* @author github.com/doomsdayrs
*/
public enum Season {
SUMMER,
SPRING,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
package com.github.Doomsdayrs.Jikan4java.types.Support.enums;

/**
* This file is part of Jikan4java.
* Jikan4java is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* Foobar is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with Jikan4java. If not, see <https://www.gnu.org/licenses/>.
* ====================================================================
* Jikan4java
* 11 / May / 2019
*
* @author github.com/doomsdayrs
*/
public enum Tops {
ANIME(),
MANGA,
Expand Down

0 comments on commit 0bab751

Please sign in to comment.