Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How do you specify the java compiler version in a pom.xml file?



How do you specify the java compiler version in a pom.xml file?..

Answer / Sachin Jain

To specify the Java compiler version in a pom.xml file, use the `<maven.compiler.source>` and `<maven.compiler.target>` elements within the `<properties>` tag. For example:

```xml
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
```

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Apache Maven Interview Questions

How to tackle duplicate classes in maven build?

1 Answers  


What does maven dependency plugin do?

1 Answers  


What would the “jar: jar” goal do?

1 Answers  


What is an archetype?

1 Answers  


How you can produce execution debug output or error messages?

1 Answers  


What are the methods for constructing an uber jar?

1 Answers  


What is an uber jar?

1 Answers  


List all the dependency scope in maven.

1 Answers  


How you can exclude dependency?

1 Answers  


What information does pom contain?

1 Answers  


How to add local jar files to a maven project?

1 Answers  


What is mojo?

1 Answers  


Categories