Remove target directory and add .gitignore
This commit is contained in:
parent
9f5876480c
commit
944411d0e7
12 changed files with 9 additions and 88 deletions
9
.gitignore
vendored
Normal file
9
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
target/
|
||||
*.class
|
||||
*.jar
|
||||
.idea/
|
||||
*.iml
|
||||
.project
|
||||
.settings/
|
||||
.classpath
|
||||
bin/
|
||||
Binary file not shown.
|
|
@ -1,6 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project name="maven-antrun-" default="main">
|
||||
<target name="main">
|
||||
<copy file="/home/bunchy7s/programs/mcplugins/QuickCompost/QuickComposter/target/QuickComposter-1.0.jar" todir="/home/bunchy7s/" />
|
||||
</target>
|
||||
</project>
|
||||
|
|
@ -1,63 +0,0 @@
|
|||
# QuickComposter Configuration
|
||||
|
||||
# If true, the composter will instantly drop bonemeal when it reaches the max level.
|
||||
# If false, it will stay at the full level (7) and require one more interaction or wait for the vanilla process.
|
||||
instant-bonemeal: false
|
||||
|
||||
# If true, any item can be used to compost.
|
||||
# If false, only items in the 'supported-items' list will work.
|
||||
use-any-item: false
|
||||
|
||||
# list of items that can be used for composting if 'use-any-item' is false.
|
||||
# it uses the standard material names
|
||||
supported-items:
|
||||
- WHEAT_SEEDS
|
||||
- PUMPKIN_SEEDS
|
||||
- MELON_SEEDS
|
||||
- BEETROOT_SEEDS
|
||||
- DRIED_KELP
|
||||
- GLOW_BERRIES
|
||||
- SHORT_GRASS
|
||||
- FERN
|
||||
- HANGING_ROOTS
|
||||
- MANGROVE_ROOTS
|
||||
- MOSS_CARPET
|
||||
- SMALL_DRIPLEAF
|
||||
- SUNFLOWER
|
||||
- LILAC
|
||||
- ROSE_BUSH
|
||||
- PEONY
|
||||
- PITCHER_PLANT
|
||||
- BIG_DRIPLEAF
|
||||
- WHEAT
|
||||
- POTATO
|
||||
- CARROT
|
||||
- BEETROOT
|
||||
- SUGAR_CANE
|
||||
- KELP
|
||||
- CACTUS
|
||||
- BAMBOO
|
||||
- MELON_SLICE
|
||||
- PUMPKIN
|
||||
- MELON
|
||||
- APPLE
|
||||
- BREAD
|
||||
- COOKIE
|
||||
- CAKE
|
||||
- PIE
|
||||
- MUSHROOM_STEW
|
||||
- NETHER_WART
|
||||
- SEA_PICKLE
|
||||
- SHROOMLIGHT
|
||||
- CRIMSON_FUNGUS
|
||||
- WARPED_FUNGUS
|
||||
- CRIMSON_ROOTS
|
||||
- WARPED_ROOTS
|
||||
- NETHER_SPROUTS
|
||||
- WEEPING_VINES
|
||||
- TWISTING_VINES
|
||||
- AZALEA
|
||||
- FLOWERING_AZALEA
|
||||
- MOSS_BLOCK
|
||||
- PINK_PETALS
|
||||
- DRAGON_EGG
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -1,6 +0,0 @@
|
|||
main: kcompost.QuickComposter
|
||||
version: 1.0
|
||||
name: QuickComposter
|
||||
author: bunchy7s
|
||||
api-version: 1.21
|
||||
folia-supported: true
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
#Generated by Maven
|
||||
#Tue May 19 14:00:54 CDT 2026
|
||||
artifactId=QuickComposter
|
||||
groupId=kcompost
|
||||
version=1.0
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
kcompost/utils/Utils.class
|
||||
kcompost/managers/PluginManager.class
|
||||
kcompost/listeners/PlayerListener.class
|
||||
kcompost/QuickComposter.class
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
/home/bunchy7s/programs/mcplugins/QuickCompost/QuickComposter/src/main/java/kcompost/QuickComposter.java
|
||||
/home/bunchy7s/programs/mcplugins/QuickCompost/QuickComposter/src/main/java/kcompost/listeners/PlayerListener.java
|
||||
/home/bunchy7s/programs/mcplugins/QuickCompost/QuickComposter/src/main/java/kcompost/managers/PluginManager.java
|
||||
/home/bunchy7s/programs/mcplugins/QuickCompost/QuickComposter/src/main/java/kcompost/utils/Utils.java
|
||||
Loading…
Add table
Reference in a new issue