Skip to content

Commit

Permalink
Merge pull request #205 from botblock/feature/rename-javabotblockapiinfo
Browse files Browse the repository at this point in the history
Rename JavaBotBlockAPIInfo to Info
  • Loading branch information
Andre601 authored Feb 14, 2021
2 parents b1d7b1c + c4d2e3f commit 5bfe098
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 3 deletions.
55 changes: 55 additions & 0 deletions core/src/main/java/org/botblock/javabotblockapi/core/Info.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
/*
* Copyright 2019 - 2021 Andre601
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
* documentation files (the "Software"), to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
* and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all copies or substantial
* portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
* INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
* OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

package org.botblock.javabotblockapi.core;

/**
* Class containing general information about the project.
*
* <p>The class can be used for things such as determining the {@link #VERSION used version} or to get some static info
* like the {@link #GITHUB GitHub} or {@link #JENKINS Jenkins CI} URL.
*
* @since 6.6.0
*/
public class Info{

/**
* Major version of the Wrapper.
*/
public static final int MAJOR = 6;
/**
* Minor version of the Wrapper.
*/
public static final int MINOR = 6;
/**
* Patch version of the Wrapper.
*/
public static final int PATCH = 0;

/**
* Full version in the format {@code major.minor.patch}.
*/
public static final String VERSION = String.format("%d.%d.%d", MAJOR, MINOR, PATCH);

/**
* URL to the GitHub repository.
*/
public static final String GITHUB = "https://github.com/botblock/JavaBotBlockAPI";

public static final String JENKINS = "https://ci.codemc.io/job/botblock/job/JavaBotBlockAPI";
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,27 +18,35 @@

package org.botblock.javabotblockapi.core;

import org.botblock.javabotblockapi.core.annotations.DeprecatedSince;
import org.botblock.javabotblockapi.core.annotations.PlannedRemoval;

/**
* Class containing static info used in other modules.
* <br>Feel free to use the info shared here inside your bot if you, for example, want to share what Lib your bot
* uses to post Guild count or similar.
*
* @deprecated Class was changed to {@link org.botblock.javabotblockapi.core.Info Info}.
*
* @since 6.4.0
*/
@Deprecated
@DeprecatedSince(major = 6, minor = 6, patch = 0, replacements = {"Info.java"})
@PlannedRemoval(major = 6, minor = 6, patch = 2)
public class JavaBotBlockAPIInfo{

/**
* Major version of the Wrapper.
*/
public static final String MAJOR = "6";
public static final String MAJOR = String.valueOf(Info.MAJOR);
/**
* Minor version of the Wrapper.
*/
public static final String MINOR = "5";
public static final String MINOR = String.valueOf(Info.MINOR);
/**
* Patch version of the Wrapper.
*/
public static final String PATCH = "1";
public static final String PATCH = String.valueOf(Info.PATCH);

/**
* Full version in the format {@code major.minor.patch}.
Expand Down

0 comments on commit 5bfe098

Please sign in to comment.