Loader Tutorial Set Up. Requirements Java 7 Eclipse IvyIDE plugin Git Optional: Ant Maven.

Slides:



Advertisements
Similar presentations
August 2012 This work is licensed under the Creative Commons Attribution 3.0 Unported License. To view a copy of this license, visit
Advertisements

Using Eclipse. Getting Started There are three ways to create a Java project: 1:Select File > New > Project, 2 Select the arrow of the button in the upper.
1 eclipse Tips. 2 What is eclipse? Eclipse is a popular IDE (Integrated Development Environment) that we will use to create, compile, execute, and test.
MC365 Ant. Today We Will Cover: Overview of Ant Installing Ant Using the Ant command line tool Various Ant commands available Using Ant in Eclipse.
INF 123: Software Architectures, Distributed Systems, and Interoperability Discussion Session Week 3 - Spring 2008 Instructor: Prof. Richard N. Taylor.
Lab 0 Objectives Input a basic Java Program Learn the basics of VisualAge.
Introduction to Android Studio
Introduction to CVS 7/3/20151UMBC CMSC 341. Outline Introduction to Source Code Management What is CVS? CVS for Project Submission Basic commands Checkout,
CRSX plug-in development. Prerequisites Software and Libraries Eclipse RCP (3.5 or higher) –Go –Select.
JSP and Servlets Lecture notes by Theodoros Anagnostopoulos.
Getting Started with GIT. Basic Navigation cd means change directory cd.. moves you up a level cd dir_name moves you to the folder named dir_name A dot.
1 eclipse Tips. 2 What is eclipse? Eclipse is a popular IDE (Integrated Development Environment) that we will use to create, compile, execute, and test.
IPT2 user interface customization and locale translation Alan Yang, Kun Chi Lai, Jim Hsu Biodiversity Research Center, Academia Sinica.
Eclipse Overview Introduction to Web Programming Kirkwood Continuing Education Fred McClurg © Copyright 2015, Fred McClurg, All Rights Reserved.
Chapter 1a© copyright Janson Industries RAD ▮ Explain Eclipse, RAD, and their relationship ▮ Basic RAD concepts ▮ How to install RAD ▮ How to import.
Android. The Eclipse IDE Installation Requirements: Eclipse Java Windows All must match (32-bit OR 64-bit) If you have a 64-bit OS & 32-bit browser,
Introduction to Android. Android as a system, is a java based operating system that runs on the Linux kernel. The system is very lightweight and full.
1 IMPORTANT NOTE  IMPORTANT NOTE not  As of this writing the default project you will download, import and use in this class is not enabled for Tomcat.
Setting up Eclipse Computer Organization I 1 August 2009 ©2009 McQuain Getting Eclipse for C/C++ Development Go to and click on Download.
26/05/2016 E.R.Edwards 26/05/2016 Staffordshire University School of Computing Introduction to Android Practical 1 Changing the Eclipse Workspace Importing.
Plug-in Development Environment. Session Outline Tools Installation Configuration New Project Basic Debugging Remote Debugging.
SENG 301 – Tutorial 1 Introduction to Eclipse, Subclipse, and JUnit Slides: Theodore D. Hellmann.
SVN in Eclipse Presented by David Eisler 10/09/2014.
OpenModelica Eclipse Setup
Project Deployment IT [211 CAP] How to convert your project to a full application.
Welcome To Eclipse. Basic Concepts Workspace – directory where your projects are stored –Projects grouping of related works –Resources generic term to.
9/2/ CS171 -Math & Computer Science Department at Emory University.
Android Development Environment Environment/tools Windows Eclipse IDE for Java Developers (v3.5 Galileo) Java Platform (JDK 6 Update 18) Android.
Setting Up Eclipse. What is Eclipse? Eclipse is a free, downloadable software that allows us to create, compile, and run JAVA programs.
GumTree Development Environment Setup Windows Only Compatible with Eclipse 3.2 M3 (Last update: 16/11/05)
Using Microsoft Visual Studio C++ Express 2005 Name: Dr Ju Wang Ashwin Belle Course Resource:
DEVS M&S Tutorial with eclipse IDE Chungman Seo
Nissan FAST Installation
Liferay Installation Prepared by: Do Xuan Hai 8 August 2011.
Installing Repast in the Eclipse IDE Charlie Gieseler 6/28/04.
First Venture into the Android World Chapter 1 Part 2.
Managed by UT-Battelle for the Department of Energy Kay Kasemir, Xihui Chen ORNL/SNS April Control System Studio Training - Development.
Tool Install How to download & install Java 6 & Eclipse updated version based on Dr. G. L. Ray’s slides.
® IBM Software Group © 2009 IBM CorporationLast Update: 5/27/2009 Setup Guide for the RUI EGL Distance Learning Course RBD v7.5.1 Workstation.
1 Installing Java on Your PC. Installing Java To develop Java programs on your PC: Install JDK (Java Development Kit) Add the directory where JDK was.
Introduction to Eclipse Programming with an Integrated Development Environment.
1 Getting Started with C++ Part 1 Windows. 2 Objective You will be able to create, compile, and run a very simple C++ program on Windows, using Microsoft.
Building the CarryDrop simulation in Eclipse Creating a new project with existing code from John Murphy’s RePast tutorial.
Time to apply stuff… Faculty of Mathematics and Physics Charles University in Prague 5 th October 2015 Workshop 1 – Java Wrestling.
Git with Eclipse (EGit) /article.html.
Maven. Introduction Using Maven (I) – Installing the Maven plugin for Eclipse – Creating a Maven Project – Building the Project Understanding the POM.
CF Eclipse Nick Kwiatkowski Michigan State University, Physical Plant 8/8/2006.
Installing git In Linux: sudo apt-get install git In Windows: download it from run the setuphttp://git-scm.com/download/win.
Java IDE Dwight Deugo Nesa Matic
Objectives Update IDE used to develop AWIPS2 plugins  Learn about API Baseline/Target Platform  Configure formatter and code templates.
PyDev: Python plug-in for Eclipse Yevgeniy Bangiyev 02/07/07 Yevgeniy Bangiyev 02/07/07.
GIT Version control. Version Control Sharing code via a centralized DB Also provides for Backtracking (going back to a previous version of code), Branching.
The eclipse IDE IDE = “Integrated Development Environment”
Getting Eclipse for C/C++ Development
SENG 301 – Tutorial 1 Introduction to Eclipse, Subclipse, and JUnit
Install and Configure CLion
Installing and running the local check projects in Eclipse
Setting up Eclipse Locally
Install Ruby If you are running on Mac OS X, Ruby is preinstalled.
JavaTeaching and Importing a github repository
Setting up an Eclipse project from a repository on GitHub
Introduction to Git and GitHub
Convert an Eclipse Project to a Git repository and push up to GitHub
Getting Eclipse for C/C++ Development
Carthage ios 8 onwards Dependency manager that streamlines the process of integrating the libraries into the project.
Working with Libraries
Java Code Review with CheckStyle
Configuring Classification Management
Presentation transcript:

Loader Tutorial Set Up

Requirements Java 7 Eclipse IvyIDE plugin Git Optional: Ant Maven

Initialize a Git Repository Folder If you haven’t used Git before you should create a folder on your drive and run the command: git init. This is where you want to clone your repositories from GitHub.

First Steps Clone the lexevs repository from GItHub: Command line: git clone

Checkout Stable Branch Navigate to lexevs folder Execute git checkout at command line: git checkout v6.3.0

Install and Configure IDE Download and install Eclipse: Install IvyIDE Follow the directions under the Update Site heading here: wnload.html

Pull LexEVS into Eclipse Right click on any white space in the package explorer tab Select “Import” From the resulting window open the Git folder and select “Projects from Git” Click next and select “Existing Local Repositories”

Pull LexEVS into Eclipse Click next If lexevs does not appear in the list click “add” button and browse to the lexevs folder that resulted from the command line clone of the GitHub repository. Select and click next.

Pull LexEVS into Eclipse Leave the settings at “Import Existing Eclipse Projects” Click next and select all if not already selected. You should be able to click “Finish” at this point.

Configure Ivy and Resolve Compilation Issues Navigate to Preferences menu and select Ivy. Select “Settings” Under the first text entry window click “workspace” button Browse to the lbPackager project and select the ivysettings.xml file Click on the Ok button

Build LexEVS You must build LexEVS in order to have some of the model classes created -- otherwise projects won’t compile. Navigate to lbPackager and select build.xml. Right click and select Run As -> Ant Build.

Build LexEVS If you wait for all Ivy resolutions and build tasks to complete you should have a clean install. You may have to re-initialize project specific Ivy settings if compilation errors persist: Right click on each problem project (Those with x or !). Select Ivy->Reload Settings

Import the Loader Tutorial Project Clone the LoaderTutorial project to your local repository and do so outside the lexevs directory. (Should be your local repository root.) git clone t t Import into eclipse as detailed above You may have to point ivy to the packager project.