Publish jar for ap & other fixes

This commit is contained in:
RednedEpic 2022-02-27 17:17:34 -06:00
parent 865ee5684c
commit bf20f2821d
10 changed files with 15 additions and 25 deletions

View file

@ -1,14 +0,0 @@
<?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>
<parent>
<groupId>org.geysermc</groupId>
<artifactId>geyser-parent</artifactId>
<version>2.0.1-SNAPSHOT</version>
</parent>
<artifactId>ap</artifactId>
<version>2.0.1-SNAPSHOT</version>
</project>

View file

@ -23,7 +23,7 @@
* @link https://github.com/GeyserMC/Geyser * @link https://github.com/GeyserMC/Geyser
*/ */
package org.geysermc.processor; package org.geysermc.geyser.processor;
import javax.annotation.processing.SupportedAnnotationTypes; import javax.annotation.processing.SupportedAnnotationTypes;
import javax.annotation.processing.SupportedSourceVersion; import javax.annotation.processing.SupportedSourceVersion;

View file

@ -23,7 +23,7 @@
* @link https://github.com/GeyserMC/Geyser * @link https://github.com/GeyserMC/Geyser
*/ */
package org.geysermc.processor; package org.geysermc.geyser.processor;
import javax.annotation.processing.AbstractProcessor; import javax.annotation.processing.AbstractProcessor;
import javax.annotation.processing.ProcessingEnvironment; import javax.annotation.processing.ProcessingEnvironment;

View file

@ -23,7 +23,7 @@
* @link https://github.com/GeyserMC/Geyser * @link https://github.com/GeyserMC/Geyser
*/ */
package org.geysermc.processor; package org.geysermc.geyser.processor;
import javax.annotation.processing.SupportedAnnotationTypes; import javax.annotation.processing.SupportedAnnotationTypes;
import javax.annotation.processing.SupportedSourceVersion; import javax.annotation.processing.SupportedSourceVersion;

View file

@ -23,7 +23,7 @@
* @link https://github.com/GeyserMC/Geyser * @link https://github.com/GeyserMC/Geyser
*/ */
package org.geysermc.processor; package org.geysermc.geyser.processor;
import javax.annotation.processing.SupportedAnnotationTypes; import javax.annotation.processing.SupportedAnnotationTypes;
import javax.annotation.processing.SupportedSourceVersion; import javax.annotation.processing.SupportedSourceVersion;

View file

@ -23,7 +23,7 @@
* @link https://github.com/GeyserMC/Geyser * @link https://github.com/GeyserMC/Geyser
*/ */
package org.geysermc.processor; package org.geysermc.geyser.processor;
import javax.annotation.processing.SupportedAnnotationTypes; import javax.annotation.processing.SupportedAnnotationTypes;
import javax.annotation.processing.SupportedSourceVersion; import javax.annotation.processing.SupportedSourceVersion;

View file

@ -23,7 +23,7 @@
* @link https://github.com/GeyserMC/Geyser * @link https://github.com/GeyserMC/Geyser
*/ */
package org.geysermc.processor; package org.geysermc.geyser.processor;
import javax.annotation.processing.SupportedAnnotationTypes; import javax.annotation.processing.SupportedAnnotationTypes;
import javax.annotation.processing.SupportedSourceVersion; import javax.annotation.processing.SupportedSourceVersion;

View file

@ -1,5 +1,5 @@
org.geysermc.processor.BlockEntityProcessor org.geysermc.geyser.processor.BlockEntityProcessor
org.geysermc.processor.CollisionRemapperProcessor org.geysermc.geyser.processor.CollisionRemapperProcessor
org.geysermc.processor.ItemRemapperProcessor org.geysermc.geyser.processor.ItemRemapperProcessor
org.geysermc.processor.PacketTranslatorProcessor org.geysermc.geyser.processor.PacketTranslatorProcessor
org.geysermc.processor.SoundHandlerProcessor org.geysermc.geyser.processor.SoundHandlerProcessor

View file

@ -37,5 +37,7 @@ publishing {
groupId = project.group as String groupId = project.group as String
artifactId = project.name artifactId = project.name
version = project.version as String version = project.version as String
artifact(tasks["jar"])
} }
} }

View file

@ -1,3 +1,5 @@
import org.gradle.accessors.dm.ApProjectDependency
plugins { plugins {
`java-library` `java-library`
id("geyser.build-logic") id("geyser.build-logic")