Skip to content
This repository has been archived by the owner on Jun 1, 2024. It is now read-only.

Commit

Permalink
Update pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
gmitch215 committed May 31, 2022
1 parent 653a09b commit f84d511
Show file tree
Hide file tree
Showing 2 changed files with 73 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
package me.gamercoder215.mobchip.ai.goal;

import me.gamercoder215.mobchip.util.ChipConversions;
import net.minecraft.world.entity.PathfinderMob;
import net.minecraft.world.entity.ai.goal.Goal;
import org.bukkit.entity.Mob;
import org.jetbrains.annotations.NotNull;

import java.lang.reflect.Field;
import java.lang.reflect.Modifier;
import java.util.EnumSet;
import java.util.HashSet;
import java.util.Set;

import org.bukkit.entity.Mob;
import org.jetbrains.annotations.NotNull;

import me.gamercoder215.mobchip.util.ChipConversions;
import net.minecraft.world.entity.PathfinderMob;
import net.minecraft.world.entity.ai.goal.Goal;

/**
* Represents a Pathfinder Goal of an Entity.
* <p>
Expand Down
67 changes: 67 additions & 0 deletions mobchip-bukkit/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,73 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.0.0-M2</version>
<executions>
<execution>
<id>default-deploy</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
</goals>
<configuration>
<skip>true</skip>
</configuration>
</execution>
<execution>
<phase>deploy</phase>
<id>deploy-obf</id>
<goals>
<goal>deploy-file</goal>
</goals>
<configuration>
<file>${project.build.directory}/${project.build.finalName}-remapped-obf.jar</file>
<url>file:///home/jitpack/deploy</url>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${project.version}</version>
<packaging>${project.packaging}</packaging>
<javadoc>${project.build.directory}/${project.build.finalName}-javadoc.jar</javadoc>
<classifier>remapped-obf</classifier>
</configuration>
</execution>
<execution>
<phase>deploy</phase>
<id>deploy-mojang</id>
<goals>
<goal>deploy-file</goal>
</goals>
<configuration>
<file>${project.build.directory}/${project.build.finalName}-remapped-mojang.jar</file>
<url>file:///home/jitpack/deploy</url>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${project.version}</version>
<packaging>${project.packaging}</packaging>
<javadoc>${project.build.directory}/${project.build.finalName}-javadoc.jar</javadoc>
<classifier>remapped-mojang</classifier>
</configuration>
</execution>
<execution>
<phase>deploy</phase>
<id>deploy-spigot</id>
<goals>
<goal>deploy-file</goal>
</goals>
<configuration>
<file>${project.build.directory}/${project.build.finalName}.jar</file>
<url>file:///home/jitpack/deploy</url>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${project.version}</version>
<packaging>${project.packaging}</packaging>
<javadoc>${project.build.directory}/${project.build.finalName}-javadoc.jar</javadoc>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit f84d511

Please sign in to comment.