Introduction of Apache Ant

Apache Ant is a software tool for automating software build processes. It is similar to Make but is implemented using the Java language, requires the Java platform, and is best suited…

Read more »

Apache Ant: A Build Tool

Apache Ant (or simply Ant) is an XML-based build scripting language used heavily by the Open Source community. Ant automates tasks such as compiling source code, building deployment packages and automatically…

Read more »

Using Ant to build J2EE Applications

Apache Ant (Another Neat Tool) is a build tool, mainly for Java projects. A build tool can be used to automate certain repetitive tasks, e.g. compiling source code, running software tests,…

Read more »

Tools for Java test automation by Daniel Wildt

Tools for Java test automation by Daniel Wildt Tools for Java test automation by Daniel Wildt

Read more »

Java Command Line Options

-client       to select the “client” VM -server       to select the “server” VM -hotspot      is a synonym for the “client” VM  [deprecated] The default VM is client. -cp <class search path…

Read more »

Java.lang.NoClassDefFoundError: com/vladium/emma/rt/RT

rajeshkumar created the topic: “java.lang.NoClassDefFoundError: com/vladium/emma/rt/RT” I got sometime following error while using emma… “java.lang.NoClassDefFoundError: com/vladium/emma/rt/RT” Solution can be found in… devnet.jetbrains.net/thread/275232 Regards, Rajesh Kumar Twitt me @ twitter.com/RajeshKumarIn

Read more »

Bundling Java Runtime Environments

deployexpert created the topic: Bundling Java Runtime Environments Since InstallAnywhere installers are Java based, they require a Java Virtual Machine (VM) to run. InstallAnywhere installers can bundle a virtual machine…

Read more »

Creating Launchers for Java Applications

deployexpert created the topic: Creating Launchers for Java Applications InstallAnywhere provides an action that is available from the Install task which will create launchers for Java applications. Click the Create…

Read more »

Any Possible Software/Plugin FoR SCM Workflow

pankaj2252369@gmail.com created the topic: Any possible Software/plugin for SCM workflow? Hey Team, Thanks for lot of information on the site. wonderful work. Any idea on SCM workflow software/framework ? which…

Read more »
jstack-utility

The jstack Utility | jstack Tutorial | scmGalaxy

The release of JDK 8 introduced Java Mission Control, Java Flight Recorder, and jcmd utility for diagnosing problems with JVM and Java applications. It is suggested to use the latest utility, jcmd instead of…

Read more »
running-java-ee-applications-on-amazon-ec2

How to Run/Deploy Java EE applications on Amazon EC2?

Running Java EE applications on Amazon EC2: deploying to 20 machines with no money down Computer hardware has traditionally been a scarce, expensive resource. In the early days of computing…

Read more »
jacksum-introduction

Jacksum – a java checksum utility – Introduction and usage

Jacksum, a java checksum utility Software Name : Jacksum Website : http://jacksum.net/en/index.html Version : 1.7.0 Jacksum is a platform independent checksum utility (written entirely in Java) for computing and verifying (integrity…

Read more »
java-system-properties

How to access all Java system properties directly?

You could access all Java system properties directly via ${name}, e.g. ${user.name}, ${user.dir}, ${user.home}, … You could read environment properties and use them   <properties environment=”env”/>   ${env.ENVIRONMENT_VARIABLE} e.g.  …

Read more »