1 / 3

Using Ant with Minecraft Forge

Using Ant with Minecraft Forge. CSCI 3130 Summer 2014. Steps to using Ant. Make sure your project is set up as covered in the last class Download the starter build file from here . Place this file in the src folder Create a folder called ‘lib’

cassie
Download Presentation

Using Ant with Minecraft Forge

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Using Ant with Minecraft Forge CSCI 3130 Summer 2014

  2. Steps to using Ant • Make sure your project is set up as covered in the last class • Download the starter build file from here. • Place this file in the src folder • Create a folder called ‘lib’ • Download JUnit and hamcrest from https://github.com/junit-team/junit/wiki/Download-and-Install • Rename the Junit jar to JUnit.jar (leave hamcrest-core as is) • Copy both jars into the lib folder • Create a new folder in src called “test” and a folder inside that called “java” • Find this folder in Eclipse, right click it, choose “Build Path”->”Add to Build Path”

  3. How the Ant File works • Build your project with the “build” target • Run all your tests with the “test” target • Generate a test report with the “testReport” target • Clean your output with the “clean” target

More Related