Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nether Factories! #70

Open
wants to merge 52 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 35 commits
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
2a22a82
Super Awesome Nether
Jul 23, 2014
75bd490
Update config.yml
Jul 23, 2014
65e1e93
Update config.yml
Jul 23, 2014
992e0fd
Update config.yml
Jul 24, 2014
da67888
Update config.yml
Jul 24, 2014
006a997
Update config.yml
Jul 24, 2014
f0bfcb8
Update config.yml
Aug 6, 2014
99716b0
Update config.yml
Aug 12, 2014
eac5534
Updatting to self git
Aug 14, 2014
b01b5c3
Update config.yml
Aug 27, 2014
3272c82
s
Aug 27, 2014
55d1d4f
Update FactoryObject.java
Aug 27, 2014
430f3cf
Update FactoryModPlugin.java
Aug 27, 2014
9c8d560
Update ItemList.java
Aug 27, 2014
bdeef98
Update InteractionResponse.java
Aug 27, 2014
80f2450
Update NamedItemStack.java
Aug 27, 2014
f1d449b
Update config.yml
Aug 27, 2014
458a9f9
Update FactoryObject.java
Aug 27, 2014
dd1976b
Update FactoryModPlugin.java
Aug 27, 2014
8e4d561
Update FactoryModPlugin.java
Aug 27, 2014
e5600b7
Update FactoryModPlugin.java
Aug 27, 2014
64b9001
Update BaseFactory.java
Aug 27, 2014
bb4b709
Update FactoryModListener.java
Aug 27, 2014
517dbea
Update NoteStackListener.java
Aug 27, 2014
3ce845a
Update FactoryModManager.java
Aug 27, 2014
e52f047
Update PrintingPressManager.java
Aug 27, 2014
33c4cbd
Update ProductionManager.java
Aug 27, 2014
8a92601
Update ProductionManager.java
Aug 27, 2014
5e46b88
Nether Comps
Aug 27, 2014
342554e
Update config.yml
Aug 27, 2014
1c568a2
Update config.yml
Aug 27, 2014
0c8e6d2
Update config.yml
Aug 27, 2014
801043f
Update config.yml
Aug 27, 2014
86098a3
Update config.yml
Aug 27, 2014
bf30edf
Update config.yml
Aug 27, 2014
2e251ce
Header of Aspect Factory in wrong spot
Oct 3, 2014
d12c9a8
Update config.yml
Nov 1, 2014
e42afa2
Armor Trees
Nov 1, 2014
2038023
Armor Trees
Nov 1, 2014
925712a
Update config.yml
Nov 1, 2014
80762cf
Weapon Merge
Nov 1, 2014
3d854a9
Update config.yml
Nov 2, 2014
cec91c9
Update config.yml
Nov 2, 2014
06deaf3
Update config.yml
Nov 2, 2014
1db84d1
Update config.yml
Nov 2, 2014
b1f327f
Update config.yml
Nov 2, 2014
2caa10a
Update config.yml
Nov 2, 2014
4fc4486
Update config.yml
Nov 2, 2014
81f6308
Update config.yml
Nov 2, 2014
05ae312
Tools push
Nov 6, 2014
f795e5f
Update config.yml
May 14, 2015
6a4ee11
Update config.yml
May 14, 2015
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added FactoryMod-20140619.jar
Binary file not shown.
Binary file removed FactoryMod.jar
Binary file not shown.
1,248 changes: 1,041 additions & 207 deletions config.yml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion plugin.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: FactoryMod
main: com.github.igotyou.FactoryMod.FactoryModPlugin
author: igotyou
version: 1.0
version: 1.1
53 changes: 53 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<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>com.github.igotyou</groupId>
<artifactId>FactoryMod</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>FactoryMod</name>
<url>https://github.com/ttk2/FactoryMod</url>

<properties>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
</properties>

<build>
<sourceDirectory>${basedir}/src</sourceDirectory>

<resources>
<resource>
<directory>${basedir}</directory>
<includes>
<include>*.yml</include>
<include>license.txt</include>
</includes>
</resource>
</resources>
</build>

<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.7.2-R0.3</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.untamedears</groupId>
<artifactId>Citadel</artifactId>
<version>[2.5,)</version>
<scope>provided</scope>
</dependency>
</dependencies>

<repositories>
<repository>
<id>bukkit-repo</id>
<url>http://repo.bukkit.org/content/groups/public/</url>
</repository>
</repositories>
</project>
Loading