Maven
Q1. What element in the pom.xml file allows you to provide values that can be reused in other elements of the pom.xml?
Q2. If you wish to build and package your artifact using the Maven package goal but don't want to execute the unit tests, which environment variable and value would you use?
Q3. When building a Maven EAR project and specifying the configuration of which projects to include, what is the element in the plugin configuration that contains Enterprise Java Bean projects?
Q4. The goal that is executed to generate and deploy a documentation website is _.
Q5. What does the mvn -version command do?
Q6. There are several properties available for use in a pom.xml file that refer to details of the project, such as groupId and version. What do all of these properties start with?
Q7. What directory structure contains the source code of your artifact?
Q8. Which command is used to run the clean lifecyle followed by verify, install, and package with Maven?
mvn clean
mvn package
mvn verify
mvn install
Q9. Which goal would you use with the Dependency plugin to determine which included dependencies are not used, as well as those you are using that you have not defined?
Q10. In a multimodule project, if you have a plugin bound to a phase in the parent, it will be bound to the same phase in the module. What strategy could you employ to prevent the plugin from executing in the module?
Q11. When building a web application with a WAR type project, which project directory should contain the style sheet, JavaScript, and other static file?
Q12. When performing a build, which Maven plugin will allow you to set the specific version of the artifact to be built without manual modifying the pom.xml file?
Q13. When building a Maven Archetype, what is the filepath and file of the archetype descriptor that specifies how to lay out the prototype files?
Q14. What is a valid packaging type for a Maven project?
Q15. When two dependencies of your Maven project introduce the same transitive dependency with different versions, which one(s) will be included in the dependency list for your project?
Q16. Many organizations set up local mirrors to the Maven central repository. In order to leverage your company's Maven repository as a proxy for the Maven central repository, which element should you put into the settings.xml file?
Q17. Which Maven plugin would you leverage to specify the version of the compiler to target as well as the source level of the language?
Q18. If your machine is behind a proxy, where should you specify the proxy server settings in order for Maven to access remote resources?
Q19. What environment variable can you alter to increase the memory Maven uses?
Q20. How can you use Maven to run unit tests in parallel?
Q21. What will the mvn dependency:tree command do?
Q22. How do you run a single unit test in Maven?
Q23. How can Maven profiles be triggered?
Q24. Why will an mvn install command not deploy any artifacts to a remote repository?
Q25. Suppose you want to include a properties file in the JAR generated by your Maven build. What directory should you put it in?
Q26. Which structure in a settings.xml file allows for flexing properties based on some value for the runtime of Maven?
Q27. What does it mean if the scope of a dependency is runtime?
Q28. If you want to utilitze a locally developed JAR file in another project and that JAR file has not been deployed to either the Maven central repository or your own locally sourced mirror repository, what Maven goal do you need to execute on the locally developed JAR project?
Q29. What is the default packaging type for a Maven project build artifact?
Q30. What does the following command do?
> mvn archetype:generate \
-DgroupID=sample-maven-project \
-DartifactID=com.palmer.bethan.sample \
-Dversion=1.0.0 \
-DinteractiveMode=false
Q31. When defining a dependency that is included with the runtime container, what scope do you use in the pom.xml?
Q32. What argument do you pass to Maven in order to update SNAPSHOT from the remote repository?
Q33. When performing a release using the Maven release plugin, which environment variable for batch mode is used to define the stamp placed in SCM to indicate the state of the artifact for the actual release?
Q34. These are two general uses of plugins. The first is build and the second is _
Q35. What does the mvn clean command do?
Q36. If you want to utilize a locally develop JAR file in another project and that JAR file has not been deployed to either the Maven central repository or your own locally sourced mirror repository, what Maven goal do you need to execute on the locally developed JAR project?
Q37. Bellow is a definition of the Maven JAR Plugin, where the main class is set to com.palmer.bethan.App. What is the effect of this?
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>com.palmer.bethan.App</mainClass>
</manifest>
</archive>
</configuration>
Q38. Suppose you are packaging a Maven project and see the following error "[WARNING] Using platform encoding (CP1252 actually) to copy filtered resources, i.e. build platform dependent!" What do you add to your POM file to set platform encoding to ensure your build is not platform dependet ?
Q39. Why might you not want to include groupId and version elements in child POM files?
Q40. The settings.xml file that provides the user-specific settings for Maven is contained in which directory by default?
Q41. Suppose you are using Maven in a corporate environment and, to save bandwidth, you want to prevent the need for large numbers of developers to download the same dependency from the internet. What do you do to limit this?
Q42. In multimodule projects, what do child POMs inherit from the parent POM?
Q43. Below is a report generated for a multimodule project with the Checkstyle Plugin. Why might the highlighted links to the two child projects not work?

Q44. Which build plugin allows you to create a "fat" JAR file that contains all of the dependencies in the final JAR file?
Q45. What is the default scope for Maven dependencies?