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

Flow Diagram and GUI tools for Apache Ant

apache-ant-flow-diagram-and-gui-tools

Nurflugel AntScript Visualizer Link: http://www.nurflugel.com/webstart/AntScriptVisualizer About: Ant Script Visualizer is a program I’ve written to make visualizing how your Ant targets and scripts are related to one another. Ever take a look at an Ant build script and, although perfectly readable, not really “see” all the dependencies between targets? What targets depend on a certain … Read more

Usage of ANT_OPTS in Ant Script | ANT_OPTS capabilities

ant_opts-in-ant-script

Usage of ANT_OPTS in Ant Script | ANT_OPTS capabilities Ant has three environment variables that you can use to set its default behavior. • ANT_ARGS Set this variable to include those options you use frequently. • ANT_OPTS is a list of arguments that you want to pass to the JVM that will run Ant. • … Read more

How to use ant Script to Reset BuildNumber?

To use this code, you need to have the file build.number containging: major.number=1 minor.number=0 hotfix.number=0 revision.number=0 continuous.number=0 Then the following 3 targets:   <taskdef resource=”net/sf/antcontrib/antlib.xml”/> <taskdef name=”unset” classname=”ise.antelope.tasks.Unset”/>     <target name=”initBuildNum” description=”Get current build number properties”> <property file=”build.number”/> <var name=”next.major” value=”${major.number}”/> <var name=”next.minor” value=”${minor.number}”/> <var name=”next.hotfix” value=”${hotfix.number}”/> <var name=”next.revision” value=”${revision.number}”/> <var name=”next.continuous” value=”${continuous.number}”/> </target>     <target name=”getBuildNum”> … Read more

Ant Script with Shell script, How to run shell script from Ant Script?

ant-script-with-shell-script

Ant Script with Shell script How to set files Permission in Ant | How to set files Permission in Unix | Set files Permission in Ant in Unix Environment Command:     Ant Script to Replace some character in any files     How to run shell script using ant/   To Remove Some Special … Read more