<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://wiki.mystcraft.xcompwiz.com/index.php?action=history&amp;feed=atom&amp;title=v0.13%3AAPI</id>
		<title>v0.13:API - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://wiki.mystcraft.xcompwiz.com/index.php?action=history&amp;feed=atom&amp;title=v0.13%3AAPI"/>
		<link rel="alternate" type="text/html" href="http://wiki.mystcraft.xcompwiz.com/index.php?title=v0.13:API&amp;action=history"/>
		<updated>2026-05-24T03:50:34Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.27.1</generator>

	<entry>
		<id>http://wiki.mystcraft.xcompwiz.com/index.php?title=v0.13:API&amp;diff=1476&amp;oldid=prev</id>
		<title>Veovis Muad'dib: Show how to include the Mystcraft API via build.gradle</title>
		<link rel="alternate" type="text/html" href="http://wiki.mystcraft.xcompwiz.com/index.php?title=v0.13:API&amp;diff=1476&amp;oldid=prev"/>
				<updated>2018-08-17T01:44:15Z</updated>
		
		<summary type="html">&lt;p&gt;Show how to include the Mystcraft API via build.gradle&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Mystcraft provides an API to allow other mods to add interactions with Mystcraft mechanics to their own mods.  Using the API directly requires some basic knowledge of Java-based mod development, search for Forge modding tutorials for more information.&lt;br /&gt;
&lt;br /&gt;
=Setup=&lt;br /&gt;
&lt;br /&gt;
==Getting the API==&lt;br /&gt;
&lt;br /&gt;
The Mystcraft API file is available in a [https://maven.apache.org/ Maven] repository, which makes it very convenient to manage in your [https://gradle.org/ Gradle] [https://forgegradle.readthedocs.io/en/latest/ build script].&lt;br /&gt;
&lt;br /&gt;
 NOTE: Only edit your &amp;lt;code&amp;gt;build.gradle&amp;lt;/code&amp;gt; file below the following line:&lt;br /&gt;
 &lt;br /&gt;
 //Only edit below this line, the above code adds and enables the necessary things for Forge to be setup.&lt;br /&gt;
&lt;br /&gt;
The following snippet will allow you to compile against the Mystcraft API, and will automatically include the full Mystcraft mod when debugging.&lt;br /&gt;
&lt;br /&gt;
 def mystcraft_version = &amp;quot;0.13.6.00&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 repositories {&lt;br /&gt;
     maven {&lt;br /&gt;
         name &amp;quot;xcompwiz&amp;quot;&lt;br /&gt;
         url &amp;quot;http://maven.xcompwiz.com&amp;quot;&lt;br /&gt;
     }&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 dependencies {&lt;br /&gt;
     compileOnly &amp;quot;com.xcompwiz.mystcraft:mystcraft-api:${mystcraft_version}&amp;quot;&lt;br /&gt;
     runtime &amp;quot;com.xcompwiz.mystcraft:mystcraft:${mystcraft_version}&amp;quot;&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
If you would prefer to manage the &amp;lt;code&amp;gt;.jar&amp;lt;/code&amp;gt; yourself, the API is available for [https://minecraft.curseforge.com/projects/mystcraft download on Curseforge] under the &amp;quot;Additional Files&amp;quot; section for a given Mystcraft release.&lt;/div&gt;</summary>
		<author><name>Veovis Muad'dib</name></author>	</entry>

	</feed>