mirror of
https://github.com/darverdevs/PluginInstaller.git
synced 2024-11-21 08:56:05 -08:00
Changed compile output to use maven
This commit is contained in:
parent
2cd66e2cda
commit
39a20018cb
57
dependency-reduced-pom.xml
Normal file
57
dependency-reduced-pom.xml
Normal file
|
@ -0,0 +1,57 @@
|
||||||
|
<?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/maven-v4_0_0.xsd">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>tech.nully</groupId>
|
||||||
|
<artifactId>EaglerPluginInstaller</artifactId>
|
||||||
|
<name>EaglerPluginInstaller</name>
|
||||||
|
<version>1.1.5</version>
|
||||||
|
<description>A plugin made to install other plugins from an online repository to eaglercraft servers with a single command</description>
|
||||||
|
<url>nully.tech</url>
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-shade-plugin</artifactId>
|
||||||
|
<version>3.3.0</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<phase>package</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>shade</goal>
|
||||||
|
</goals>
|
||||||
|
<configuration>
|
||||||
|
<outputFile>${project.basedir}/out/${project.artifactId}.jar</outputFile>
|
||||||
|
</configuration>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
|
<version>3.8.1</version>
|
||||||
|
<configuration>
|
||||||
|
<source>1.8</source>
|
||||||
|
<target>1.8</target>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
<repositories>
|
||||||
|
<repository>
|
||||||
|
<id>PrimCoreRepos-repos</id>
|
||||||
|
<url>https://github.com/darverdevs/EaglerMavenRepo/raw/main</url>
|
||||||
|
</repository>
|
||||||
|
</repositories>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.github.EaglerMaven</groupId>
|
||||||
|
<artifactId>craftbukkit</artifactId>
|
||||||
|
<version>1.5.2-R1.0</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
<properties>
|
||||||
|
<java.version>1.8</java.version>
|
||||||
|
<maven.compiler.source>1.8</maven.compiler.source>
|
||||||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
|
<maven.compiler.target>1.8</maven.compiler.target>
|
||||||
|
</properties>
|
||||||
|
</project>
|
Binary file not shown.
38
pom.xml
38
pom.xml
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
<groupId>tech.nully</groupId>
|
<groupId>tech.nully</groupId>
|
||||||
<artifactId>EaglerPluginInstaller</artifactId>
|
<artifactId>EaglerPluginInstaller</artifactId>
|
||||||
<version>1.0.0</version>
|
<version>1.1.5</version>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
<name>EaglerPluginInstaller</name>
|
<name>EaglerPluginInstaller</name>
|
||||||
|
@ -32,13 +32,47 @@
|
||||||
<groupId>com.github.EaglerMaven</groupId>
|
<groupId>com.github.EaglerMaven</groupId>
|
||||||
<artifactId>craftbukkit</artifactId>
|
<artifactId>craftbukkit</artifactId>
|
||||||
<version>1.5.2-R1.0</version>
|
<version>1.5.2-R1.0</version>
|
||||||
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.googlecode.json-simple</groupId>
|
<groupId>com.googlecode.json-simple</groupId>
|
||||||
<artifactId>json-simple</artifactId>
|
<artifactId>json-simple</artifactId>
|
||||||
<version>1.1</version>
|
<version>1.1.1</version>
|
||||||
|
<scope>compile</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-shade-plugin</artifactId>
|
||||||
|
<version>3.3.0</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<phase>package</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>shade</goal>
|
||||||
|
</goals>
|
||||||
|
|
||||||
|
<configuration>
|
||||||
|
<outputFile>${project.basedir}/out/${project.artifactId}.jar</outputFile>
|
||||||
|
</configuration>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
|
<version>3.8.1</version>
|
||||||
|
<configuration>
|
||||||
|
<source>1.8</source>
|
||||||
|
<target>1.8</target>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
|
||||||
|
|
||||||
</project>
|
</project>
|
|
@ -1,11 +1,11 @@
|
||||||
name: EaglerPluginInstaller
|
name: EaglerPluginInstaller
|
||||||
version: 1.1.2
|
version: 1.1.4
|
||||||
main: tech.nully.PluginInstaller.Main
|
main: tech.nully.PluginInstaller.Main
|
||||||
prefix: [EaglerPluginInstaller]
|
prefix: [EaglerPluginInstaller]
|
||||||
loadbefore: [EaglerPluginUpdater]
|
loadbefore: [EaglerPluginUpdater]
|
||||||
authors: [BongoCat]
|
authors: [BongoCat]
|
||||||
description: A plugin that is capable of installing the latest compatible version of plugins with eaglercraft from an online repository weith the executing of a command.
|
description: A plugin that is capable of installing the latest compatible version of plugins with eaglercraft from an online repository weith the executing of a command.
|
||||||
website: nully.tech
|
website: bnogocarft.games
|
||||||
commands:
|
commands:
|
||||||
install:
|
install:
|
||||||
usage: /<command> <plugin>
|
usage: /<command> <plugin>
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
name: EaglerPluginInstaller
|
name: EaglerPluginInstaller
|
||||||
version: 1.1.2
|
version: 1.1.4
|
||||||
main: tech.nully.PluginInstaller.Main
|
main: tech.nully.PluginInstaller.Main
|
||||||
prefix: [EaglerPluginInstaller]
|
prefix: [EaglerPluginInstaller]
|
||||||
loadbefore: [EaglerPluginUpdater]
|
loadbefore: [EaglerPluginUpdater]
|
||||||
authors: [BongoCat]
|
authors: [BongoCat]
|
||||||
description: A plugin that is capable of installing the latest compatible version of plugins with eaglercraft from an online repository weith the executing of a command.
|
description: A plugin that is capable of installing the latest compatible version of plugins with eaglercraft from an online repository weith the executing of a command.
|
||||||
website: nully.tech
|
website: bnogocarft.games
|
||||||
commands:
|
commands:
|
||||||
install:
|
install:
|
||||||
usage: /<command> <plugin>
|
usage: /<command> <plugin>
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -1,5 +1,5 @@
|
||||||
#Generated by Maven
|
#Generated by Maven
|
||||||
#Wed Jun 08 13:04:28 PDT 2022
|
#Sat Aug 06 13:41:02 PDT 2022
|
||||||
|
version=1.1.5
|
||||||
groupId=tech.nully
|
groupId=tech.nully
|
||||||
artifactId=EaglerPluginInstaller
|
artifactId=EaglerPluginInstaller
|
||||||
version=1.0.0
|
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
tech\nully\PluginInstaller\InstallCommand.class
|
|
||||||
tech\nully\PluginInstaller\plistCommand.class
|
|
||||||
tech\nully\PluginInstaller\Installer.class
|
|
||||||
tech\nully\PluginInstaller\Main.class
|
|
Loading…
Reference in New Issue
Block a user