MOTOSHARE 🚗🏍️
Turning Idle Vehicles into Shared Rides & Earnings

From Idle to Income. From Parked to Purpose.
Earn by Sharing, Ride by Renting.
Where Owners Earn, Riders Move.
Owners Earn. Riders Move. Motoshare Connects.

With Motoshare, every parked vehicle finds a purpose. Owners earn. Renters ride.
🚀 Everyone wins.

Start Your Journey with Motoshare

How to run ant build in intellij? – IntelliJ/Ant integration Guide

intellij-ant-integration

IntelliJ/Ant integration By Alvin J. Alexander, devdaily.com The fact that IntelliJ is off-the-shelf ready to work with Ant is a great, great feature. It’s also simple to configure and use. Assuming that you already know how to use Ant, and you have a build.xml file ready to go, just follow these steps to (a) configure … Read more

A sample Ant build script that builds a WAR file – Guide

ant-build-script-war-file

A sample Ant build script that builds a WAR file <project name=”MyWebApplication” basedir=”..” default=”install”> <!– project-specific variables –> <property name=”jsp.dir.name” value=”myapp” /> <property name=”package.name” value=”${jsp.dir.name}.war” /> <property name=”webapp.dir” value=”/Users/al/tomcat-6.0.16/webapps” /> <property environment=”env” /> <property name=”build.dir” value=”build” /> <property file=”${build.dir}/build.${env.HOSTNAME}” /> <property name=”lib.dir” value=”lib” /> <property name=”pages.dir” value=”pages” /> <property name=”src.dir” value=”src” /> <property name=”src.tests.dir” value=”src-tests” … Read more

Simple Ant Example – clean, prepare, and compile tasks

ant-clean-prepare-and-compile-tasks

Sample Ant clean, prepare, and compile tasks <target name=”clean”> <echo>=== CLEAN ===</echo> <delete failonerror=”false”> <fileset dir=”${dest.dir}” includes=”**/*”/> </delete> <delete dir=”${temp.dir}” /> </target> <target name=”prepare” depends=”clean”> <echo>=== PREPARE ===</echo> <mkdir dir=”${dest.dir}” /> <mkdir dir=”${temp.dir}” /> <mkdir dir=”${temp.dir.lib}” /> <mkdir dir=”${temp.dir.meta-inf}” /> <mkdir dir=”${temp.dir.web-inf}” /> <mkdir dir=”${temp.dir.classes}” /> </target> <target name=”compile” depends=”prepare”> <echo>=== COMPILE ===</echo> <echo>Compiling ${src.dir} … Read more

How to Integrate Subversion Into Your Ant Build ? – Step by step guide

svn-integration-in-ant-build

SVNAnt SVNAnt is an Ant task allowing you to interact with Subversion within the convenience of your Ant build script. No more writing custom scripts to get the revision of your repository to tag your release jars. Nor do you have to make command line calls to checkout your latest and greatest as part of … Read more