-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
171 additions
and
109 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
45 changes: 45 additions & 0 deletions
45
BlocksHub_Loggers/BlocksHub-Logger-LogBlock/licenseheader.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<#if licenseFirst??> | ||
${licenseFirst} | ||
</#if> | ||
${licensePrefix}BlocksHub a library plugin providing easy access to block loggers | ||
${licensePrefix}and block access controllers. | ||
${licensePrefix}Copyright (c) ${date?date?string("yyyy")}, SBPrime <https://github.com/SBPrime/> | ||
${licensePrefix}Copyright (c) BlocksHub contributors | ||
${licensePrefix?replace(" +$", "", "r")} | ||
${licensePrefix}All rights reserved. | ||
${licensePrefix?replace(" +$", "", "r")} | ||
${licensePrefix}Redistribution and use in source and binary forms, with or without | ||
${licensePrefix}modification, are permitted free of charge provided that the following | ||
${licensePrefix}conditions are met: | ||
${licensePrefix?replace(" +$", "", "r")} | ||
${licensePrefix}1. Redistributions of source code must retain the above copyright notice, this | ||
${licensePrefix} list of conditions and the following disclaimer. | ||
${licensePrefix}2. Redistributions in binary form must reproduce the above copyright notice, | ||
${licensePrefix} this list of conditions and the following disclaimer in the documentation | ||
${licensePrefix} and/or other materials provided with the distribution, | ||
${licensePrefix}3. Redistributions of source code, with or without modification, in any form | ||
${licensePrefix} other then free of charge is not allowed, | ||
${licensePrefix}4. Redistributions in binary form in any form other then free of charge is | ||
${licensePrefix} not allowed. | ||
${licensePrefix}5. Any derived work based on or containing parts of this software must reproduce | ||
${licensePrefix} the above copyright notice, this list of conditions and the following | ||
${licensePrefix} disclaimer in the documentation and/or other materials provided with the | ||
${licensePrefix} derived work. | ||
${licensePrefix}6. The original author of the software is allowed to change the license | ||
${licensePrefix} terms or the entire license of the software as he sees fit. | ||
${licensePrefix}7. The original author of the software is allowed to sublicense the software | ||
${licensePrefix} or its parts using any license terms he sees fit. | ||
${licensePrefix?replace(" +$", "", "r")} | ||
${licensePrefix}THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND | ||
${licensePrefix}ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
${licensePrefix}WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
${licensePrefix}DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR | ||
${licensePrefix}ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
${licensePrefix}(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
${licensePrefix}LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
${licensePrefix}ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
${licensePrefix}(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
${licensePrefix}SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
<#if licenseLast??> | ||
${licenseLast} | ||
</#if> |
18 changes: 18 additions & 0 deletions
18
BlocksHub_Loggers/BlocksHub-Logger-LogBlock/nb-configuration.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project-shared-configuration> | ||
<!-- | ||
This file contains additional configuration written by modules in the NetBeans IDE. | ||
The configuration is intended to be shared among all the users of project and | ||
therefore it is assumed to be part of version control checkout. | ||
Without this configuration present, some functionality in the IDE may be limited or fail altogether. | ||
--> | ||
<properties xmlns="http://www.netbeans.org/ns/maven-properties-data/1"> | ||
<!-- | ||
Properties that influence various parts of the IDE, especially code formatting and the like. | ||
You can copy and paste the single properties, into the pom.xml file and the IDE will pick them up. | ||
That way multiple projects can share the same settings (useful for formatting rules for example). | ||
Any value defined here will override the pom.xml file value but is only applicable to the current project. | ||
--> | ||
<netbeans.hint.licensePath>${project.basedir}/licenseheader.txt</netbeans.hint.licensePath> | ||
</properties> | ||
</project-shared-configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>org.primesoft.blockshub.loggers</groupId> | ||
<artifactId>BlocksHub-Logger-LogBlock</artifactId> | ||
|
||
<packaging>jar</packaging> | ||
|
||
<parent> | ||
<groupId>org.primesoft.blockshub</groupId> | ||
<artifactId>BlocksHub_Loggers</artifactId> | ||
<version>${global.bh.version}</version> | ||
<relativePath>..</relativePath> | ||
</parent> | ||
|
||
<repositories> | ||
<repository> | ||
<name>LogBlock</name> | ||
<id>log-block</id> | ||
<url>https://repo.md-5.net/content/repositories/snapshots/</url> | ||
</repository> | ||
</repositories> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.bukkit</groupId> | ||
<artifactId>bukkit</artifactId> | ||
<version>[1.13, 1.14)</version> | ||
<type>jar</type> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>de.diddiz</groupId> | ||
<artifactId>logblock</artifactId> | ||
<version>[1.13.2-SNAPSHOT, 1.13.3-SNAPSHOT)</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.primesoft</groupId> | ||
<artifactId>BlocksHubBukkitApi</artifactId> | ||
<version>[3.1.0, 4.0.0)</version> | ||
<type>jar</type> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.primesoft.blockshub</groupId> | ||
<artifactId>BlocksHub-Base</artifactId> | ||
<version>[3.1.0, 4.0.0)</version> | ||
<type>jar</type> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.primesoft.blockshub</groupId> | ||
<artifactId>BlocksHub-BaseBukkit</artifactId> | ||
<version>[3.1.0, 4.0.0)</version> | ||
<type>jar</type> | ||
</dependency> | ||
</dependencies> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<maven.compiler.source>1.8</maven.compiler.source> | ||
<maven.compiler.target>1.8</maven.compiler.target> | ||
</properties> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.