mcproxy
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>dev.outfluencer.mcproxy</groupId>
<artifactId>mcproxy</artifactId>
<version>0.1</version>
</dependency><?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>dev.outfluencer.mcproxy</groupId>
<artifactId>mcproxy</artifactId>
<version>0.1</version>
<packaging>pom</packaging>
<name>mcproxy</name>
<description>A Minecraft proxy</description>
<url>https://github.com/Outfluencer/mcproxy</url>
<licenses>
<license>
<name>BSD 3-Clause License</name>
<url>https://opensource.org/licenses/BSD-3-Clause</url>
</license>
</licenses>
<developers>
<developer>
<id>outfluencer</id>
<name>Outfluencer</name>
<url>https://github.com/Outfluencer</url>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/Outfluencer/mcproxy.git</connection>
<developerConnection>scm:git:ssh://git@github.com/Outfluencer/mcproxy.git</developerConnection>
<url>https://github.com/Outfluencer/mcproxy</url>
</scm>
<modules>
<module>log</module>
<module>config</module>
<module>api</module>
<module>event</module>
<module>networking</module>
<module>proxy</module>
<module>launcher</module>
<module>sample-plugin</module>
</modules>
<properties>
<maven.compiler.source>25</maven.compiler.source>
<maven.compiler.target>25</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<gson.version>2.13.2</gson.version>
<netty.version>4.2.12.Final</netty.version>
<lombok.version>1.18.44</lombok.version>
<lambdaevents.version>2.4.2</lambdaevents.version>
<junit.version>5.11.4</junit.version>
<guava.version>33.5.0-jre</guava.version>
<!-- Only the `api` module publishes to Maven Central; every other
module overrides these to false. -->
<maven.deploy.skip>true</maven.deploy.skip>
<maven.javadoc.skip>true</maven.javadoc.skip>
<maven.source.skip>true</maven.source.skip>
<gpg.skip>true</gpg.skip>
</properties>
<dependencies>
<!-- Lombok in every module -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency>
<!-- Guava in every module -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<!-- Internal modules -->
<dependency>
<groupId>dev.outfluencer.mcproxy</groupId>
<artifactId>api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>dev.outfluencer.mcproxy</groupId>
<artifactId>networking</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>dev.outfluencer.mcproxy</groupId>
<artifactId>log</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>dev.outfluencer.mcproxy</groupId>
<artifactId>config</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>dev.outfluencer.mcproxy</groupId>
<artifactId>proxy</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>dev.outfluencer.mcproxy</groupId>
<artifactId>event</artifactId>
<version>${project.version}</version>
</dependency>
<!-- LambdaEvents -->
<dependency>
<groupId>net.lenni0451</groupId>
<artifactId>LambdaEvents</artifactId>
<version>${lambdaevents.version}</version>
</dependency>
<!-- Gson -->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${gson.version}</version>
</dependency>
<!-- Netty -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>${netty.version}</version>
</dependency>
<!-- Testing -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<repositories>
<repository>
<id>minecraft-libraries</id>
<url>https://libraries.minecraft.net</url>
</repository>
</repositories>
<distributionManagement>
<snapshotRepository>
<id>central</id>
<url>https://central.sonatype.com/repository/maven-snapshots/</url>
</snapshotRepository>
</distributionManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.14.0</version>
<configuration>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.6.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.11.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.7</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.4.2</version>
</plugin>
<plugin>
<groupId>io.github.git-commit-id</groupId>
<artifactId>git-commit-id-maven-plugin</artifactId>
<version>9.0.1</version>
<configuration>
<failOnNoGitDirectory>false</failOnNoGitDirectory>
<includeOnlyProperties>
<includeOnlyProperty>^git.commit.id$</includeOnlyProperty>
<includeOnlyProperty>^git.commit.id.abbrev$</includeOnlyProperty>
</includeOnlyProperties>
</configuration>
<executions>
<execution>
<id>get-git-info</id>
<goals>
<goal>revision</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<doclint>none</doclint>
<source>25</source>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<!-- Release via Central Portal Publisher API (vs. the snapshot URL
in distributionManagement). Activated by the release workflow. -->
<profile>
<id>central-portal</id>
<properties>
<!-- During a Central release, publish every module the plugin
doesn't explicitly exclude, and sign/source/javadoc them. -->
<maven.deploy.skip>false</maven.deploy.skip>
<maven.source.skip>false</maven.source.skip>
<maven.javadoc.skip>false</maven.javadoc.skip>
<gpg.skip>false</gpg.skip>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.7.0</version>
<extensions>true</extensions>
<configuration>
<autoPublish>true</autoPublish>
<waitUntil>published</waitUntil>
<!-- Application modules stay private; only the
library modules go to Central. -->
<excludeArtifacts>
<excludeArtifact>proxy</excludeArtifact>
<excludeArtifact>launcher</excludeArtifact>
<excludeArtifact>sample-plugin</excludeArtifact>
</excludeArtifacts>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>