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

Project Object Model – What is POM?

pom

What is POM A Project Object Model or POM is the fundamental unit of work in Maven. It is an XML file that contains information about the project and configuration details used by Maven to build the project. It contains default values for most projects. Examples for this are the build directory, which is target; … Read more

Reporting Plugins in Maven | Maven Plugins That Provide Reports

reporting-plugins-in-maven

Reporting plugins Plugins which generate reports, are configured as reports in the POM and run under the site generation lifecycle. This plugin consists of several reports that you can run selectively, individually or even run all of them. Please see below for instructions on how to configure your pom.xml to do this. Run All Reports … Read more

Properties in Maven – List of Maven Properties

properties-in-maven

Intro It is a collection of things found in the offcial maven documentation and postings to the maven user mailing list. Build in properties ${basedir} represents the directory containing pom.xml ${version} equivalent to ${project.version} or ${pom.version} Pom/Project properties All elements in the pom.xml, can be referenced with the project. prefix or using pom. as prefix. … Read more

Profiles in Maven – How to Build Maven Profile ?

profiles-in-maven

Reference: Apache Maven,Current version User Guide Profiles in Maven  Use of profile: Maven 2.0 goes to great lengths to ensure that builds are portable. Among other things, this means allowing build configuration inside the POM, avoiding all filesystem references (in inhertiance, dependencies, and other places), and leaning much more heavily on the local repository to … Read more

issue Management in Maven

issuemanagement-in-maven

issueManagement Information about the issue tracking (or bug tracking) system used to manage this project. Element Description system The name of the issue management system, e.g. Bugzilla url URL for the issue management system used by the project. Example:

Introduction of Maven – Complete Guide

maven-introduction

Contents What is Maven? Philosophy of Maven Benefits of Maven High Level Features and Benefits of Maven Download Maven Installation Instructions Windows 2000/XP Unix-based Operating Systems (Linux, Solaris and Mac OS X) Optional configuration Settings Settings Reference First Maven project? What is Maven? Apache Maven is a software project management and comprehension tool. Based on … Read more

Difference between Maven 1 and Maven 2 | Maven 1 Vs Maven 2

maven-1-and-maven-2-differences

What is Maven 2? Maven 2.0 is a complete rewrite of the ‘original’ Maven application (‘Maven 1’). As such, it is very different from Maven 1, and not backwards-compatible (eg, it cannot execute Maven 1 plugins). However, Maven 2.0 is the latest stable release of the Maven application, and new users are generally encouraged to … 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

Apache Ant – A Complete TASK Reference

apache-ant-complete-task-reference

Apache Ant Task: zip Description: Creates a zipfile. The basedir attribute is the reference directory from where to zip. Note that file permissions will not be stored in the resulting zipfile. It is possible to refine the set of files that are being zipped. This can be done with the includes, includesfile, excludes, excludesfile and … 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