Submitted by heartin on Tue, 04/22/2014 - 20:58
We will download, install and configure gradle, and then execute a simple program.
Prerequisites
-
Gradle 1.x requires a Java JDK 5 or higher to be installed and the location needs to be added to an environment variable JAVA_HOME.
-
Gradle 2.x requires a Java JDK 6 or higher to be installed and the location needs to be added to an environment variable JAVA_HOME.
Submitted by heartin on Tue, 04/22/2014 - 20:51
Gradle is a project automation tool designed for large multi-project builds that builds upon the concepts of Ant and Maven, and introduces a Groovy-based domain-specific language (DSL) instead of traditional XML form of declaring the project configuration.
Submitted by heartin on Tue, 04/22/2014 - 20:48
Build automation is the act of automating a wide variety of tasks that software developers do in their day-to-day activities including things like compiling source code, packaging, running tests, deployment, creating documentation and/or release notes. A build automation tool saves you lot of time by automating various build related activities, especially for enterprise level applications with lot of source files and dependencies. There are many such tools to assist us in the build process and build automation such as Ant, Maven, Gradle etc.
Submitted by heartin on Sun, 04/20/2014 - 13:27
JSON stands for JavaScript Object Notation. JSON is an open standard format that transmits data using human-readable text in the form of attribute–value pairs. Although originally derived from the JavaScript scripting language, JSON is a language-independent data format, and code for parsing and generating JSON data is readily available in a large variety of programming languages including Java.
Submitted by heartin on Sun, 04/20/2014 - 07:13
JavaScript (JS) is a dynamic computer programming language which is most commonly used as part of web browsers to allow client-side scripts to interact with the user, control the browser, communicate asynchronously, and alter the document content that is displayed. JavaScript is however not limited to web browsers and applies to other areas as well like PDF documents, VXML documents and desktop widgets.
Pages