bukkit-slf4j
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.djaytan.bukkit</groupId> <artifactId>bukkit-slf4j</artifactId> <version>3.1.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- The MIT License Copyright © 2023 Loïc DUBOIS-TERMOZ (alias Djaytan) 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. --> <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>com.djaytan.bukkit</groupId> <artifactId>bukkit-slf4j</artifactId> <version>3.1.2</version> <packaging>jar</packaging> <name>Bukkit SLF4J Bridge</name> <description>SLF4J bridge to Bukkit's logger for plugins</description> <properties> <!-- ==================== General ==================== --> <project.encoding>UTF-8</project.encoding> <project.build.sourceEncoding>${project.encoding}</project.build.sourceEncoding> <project.reporting.outputEncoding>${project.encoding}</project.reporting.outputEncoding> <java.version>17</java.version> <!-- Default properties --> <format.perform.skip>false</format.perform.skip> <format.check.skip>true</format.check.skip> </properties> <dependencies> <!-- SLF4J API --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>2.0.17</version> </dependency> <!-- Third-party dependencies --> <dependency> <groupId>org.jetbrains</groupId> <artifactId>annotations</artifactId> <version>26.0.2</version> <scope>provided</scope> </dependency> <!-- Test dependencies --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.12.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>5.12.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.27.3</version> <scope>test</scope> </dependency> <dependency> <groupId>nl.jqno.equalsverifier</groupId> <artifactId>equalsverifier</artifactId> <version>3.19.1</version> <scope>test</scope> </dependency> <dependency> <groupId>com.jparams</groupId> <artifactId>to-string-verifier</artifactId> <version>1.4.8</version> <scope>test</scope> </dependency> </dependencies> <build> <defaultGoal>clean install</defaultGoal> <plugins> <!-- Basic Maven plugins --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <version>3.4.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>3.3.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.14.0</version> <configuration> <release>${java.version}</release> <failOnWarning>true</failOnWarning> <showDeprecation>true</showDeprecation> <compilerArgs> <arg>-Xlint:all</arg> <arg>-Xlint:-exports</arg> <arg>-Xlint:-requires-automatic</arg> <arg>-Xlint:-requires-transitive-automatic</arg> <arg>-Xlint:-serial</arg> </compilerArgs> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.4.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <version>3.1.4</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>3.1.4</version> </plugin> <!-- Formatting-related plugins --> <plugin> <groupId>com.github.ekryd.sortpom</groupId> <artifactId>sortpom-maven-plugin</artifactId> <version>4.0.0</version> <configuration> <!-- General properties --> <predefinedSortOrder>custom_1</predefinedSortOrder> <createBackupFile>false</createBackupFile> <!-- Formatting properties --> <expandEmptyElements>false</expandEmptyElements> <spaceBeforeCloseEmptyElement>true</spaceBeforeCloseEmptyElement> <lineSeparator>\n</lineSeparator> <ignoreLineSeparators>false</ignoreLineSeparators> </configuration> <executions> <execution> <id>format</id> <goals> <goal>sort</goal> </goals> <configuration> <skip>${format.perform.skip}</skip> </configuration> </execution> <execution> <id>check</id> <goals> <goal>verify</goal> </goals> <!-- Force "validate" phase to raise error as early as possible --> <phase>validate</phase> <configuration> <skip>${format.check.skip}</skip> <verifyFail>Stop</verifyFail> </configuration> </execution> </executions> </plugin> <plugin> <groupId>com.spotify.fmt</groupId> <artifactId>fmt-maven-plugin</artifactId> <version>2.25</version> <executions> <execution> <id>format</id> <goals> <goal>format</goal> </goals> <configuration> <skip>${format.perform.skip}</skip> </configuration> </execution> <execution> <id>check</id> <goals> <goal>check</goal> </goals> <!-- Force "validate" phase to raise error as early as possible --> <phase>validate</phase> <configuration> <skip>${format.check.skip}</skip> </configuration> </execution> </executions> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>4.6</version> <configuration> <properties> <owner>Loïc DUBOIS-TERMOZ (alias Djaytan)</owner> </properties> <licenseSets> <licenseSet> <header>com/mycila/maven/plugin/license/templates/MIT.txt</header> <excludes> <exclude>src/main/resources/**</exclude> <exclude>src/test/resources/**</exclude> <exclude>scripts/**</exclude> <exclude>.editorconfig</exclude> <exclude>release.config.js</exclude> <exclude>jitpack.yml</exclude> </excludes> </licenseSet> </licenseSets> </configuration> <executions> <execution> <id>format</id> <goals> <goal>format</goal> </goals> <!-- Required since plugin is not hooked to any lifecycle phase by default --> <phase>process-sources</phase> <configuration> <skip>${format.perform.skip}</skip> </configuration> </execution> <execution> <id>check</id> <goals> <goal>check</goal> </goals> <!-- Force "validate" phase to raise error as early as possible --> <phase>validate</phase> <configuration> <failIfMissing>true</failIfMissing> <failIfUnknown>true</failIfUnknown> <skip>${format.check.skip}</skip> </configuration> </execution> </executions> </plugin> <!-- Enforcement-related plugins --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>3.8.1</version> <configuration> <failBuild>true</failBuild> <failOnWarning>true</failOnWarning> </configuration> <executions> <execution> <goals> <goal>analyze-only</goal> <goal>analyze-dep-mgt</goal> <goal>analyze-duplicate</goal> <goal>analyze-exclusions</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>3.5.0</version> <configuration> <fail>true</fail> <failFast>true</failFast> <rules> <banDuplicatePomDependencyVersions /> <dependencyConvergence /> <reactorModuleConvergence /> <requireJavaVersion> <version>[17,)</version> </requireJavaVersion> <requireMavenVersion> <version>[3.9,)</version> </requireMavenVersion> <requirePluginVersions> <message>Best Practice is to always define plugin versions!</message> <!-- "site" phase is not applicable for this project --> <unCheckedPluginList>org.apache.maven.plugins:maven-site-plugin</unCheckedPluginList> </requirePluginVersions> <requireUpperBoundDeps /> </rules> </configuration> <executions> <execution> <goals> <goal>enforce</goal> </goals> </execution> </executions> </plugin> <!-- Test-related plugins --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.5.2</version> <configuration> <argLine>@{argLine} -Xshare:off</argLine> <parallel>all</parallel> <redirectTestOutputToFile>true</redirectTestOutputToFile> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.12</version> <executions> <execution> <id>prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> <!-- Release-related plugins --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>2.18.0</version> <configuration> <generateBackupPoms>false</generateBackupPoms> </configuration> </plugin> <!-- SonarCloud code quality scans --> <plugin> <groupId>org.sonarsource.scanner.maven</groupId> <artifactId>sonar-maven-plugin</artifactId> <version>5.0.0.4389</version> </plugin> </plugins> </build> <url>https://github.com/Djaytan/bukkit-slf4j</url> <inceptionYear>2023</inceptionYear> <licenses> <license> <name>MIT</name> <url>https://opensource.org/licenses/MIT</url> </license> </licenses> <developers> <developer> <name>Loïc DUBOIS-TERMOZ (alias Djaytan)</name> <email>26904516+Djaytan@users.noreply.github.com</email> <organization>Djaytan</organization> <organizationUrl>https://github.com/Djaytan/bukkit-slf4j</organizationUrl> </developer> </developers> <scm> <connection>scm:git:${project.scm.url}</connection> <developerConnection>scm:git:${project.scm.url}</developerConnection> <url>https://github.com/Djaytan/bukkit-slf4j.git</url> </scm> <issueManagement> <url>https://github.com/Djaytan/bukkit-slf4j/issues</url> </issueManagement> <ciManagement> <url>https://github.com/Djaytan/bukkit-slf4j/actions</url> </ciManagement> <profiles> <profile> <id>ci</id> <activation> <property> <name>env.CI</name> <value>true</value> </property> </activation> <properties> <format.perform.skip>true</format.perform.skip> <format.check.skip>false</format.check.skip> </properties> </profile> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.11.2</version> <configuration> <quiet>true</quiet> <additionalJOptions> <additionalJOption>-Xdoclint:all,-html</additionalJOption> </additionalJOptions> </configuration> <executions> <execution> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.7</version> <executions> <execution> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.7.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <autoPublish>true</autoPublish> <waitUntil>published</waitUntil> <deploymentName>${project.build.finalName}</deploymentName> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>