What is the difference between -dwtpversion and wtpversion?

I am new to Maven. I am going to develop my first application with Maven. Therefore, reading the documentation, I foundmvn eclipse:eclipse -Dwtpversion=2.0

I know WTP is a "web tool platform", but what is it -Dwtpversion? I searched the Internet but found nothing.

+4
source share
2 answers

The prefix "-D" in the argument means that this is a system property.

The system property is defined as follows ( http://docs.oracle.com/javase/jndi/tutorial/beyond/env/source.html#SYS ):

- /, Java , Java. . Java -D Java.

+6

mvn eclipse: eclipse -Dwtpversion = 2.0 maven, eclipse

+3

All Articles