Thanks Everyone for Help!! I have got the answer. Below is step-wise solution
Flavor - Cucumber-JVM
IDE - Eclipse
1- What?-Remove Your Test Runner File
Why? -For parallel testing, JVM automatically creates each runner for each parallel process
When?-This Might be the first step before any config
2- What?-Add Below mentioned properties in your POM.xml
Why? -Will add this later
When?-Before compiling

3- What?-Add Below mentioned plugins in your POM.xml
Why? -This will automatically create runner
When?-Before compiling
org.apache.maven.plugins
maven-surefire-plugin
2.19.1
<configuration>
<additionalClasspathElements>
<additionalClasspathElement>resources</additionalClasspathElement>
</additionalClasspathElements>
<forkCount>5</forkCount>
<reuseForks>true</reuseForks>
<includes>
<include>**/*IT.class</include>
</includes>
</configuration>

4- What?-Add Below mentioned plugins in your POM.xml
Why? -This will create parallel execution on basis of FEATURE or SCENARIO and
will create jason,HTML report as well
When?-Before compiling
com.github.temyers
cucumber-jvm-parallel-plugin
2.2.0
generateRunners
validate
generateRunners
<configuration>
<glue>russel.StepDefination.Option1.IN451</glue>
<featuresDirectory>Login</featuresDirectory>
<cucumberOutputDir>target/Parallel-report</cucumberOutputDir>
<format>json,html</format>
<parallelScheme>SCENARIO</parallelScheme>
<!-- <parallelScheme>FEATURE</parallelScheme> -->
</configuration>
</execution>
</executions>

5- Goto Console of and run commomd
- mvn clean
- mvn compile
- mvn verify