The heart of a Maven managed project is the Project Object Model file named pom.xml. This determines what actions Maven will carry out. What follows is the pom file I require my students to use in their Software Development Project where they code a desktop application. A JEE version will be used in the next semester’s Web Development Project. Let’s look at this #KFCStandard pom.xml one section at a time.
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
These first line is the XML declaration. The W3C states that the current version of XML is still 1.0 even though it is shown as the fifth edition. There may be a version 2.0 in the future. The encoding refers to the character set that is used in the document. UTF-8 is the most common form of encoding and it means that the document fully supports Unicode. The number 8 means that the supported character sets may consist of 8, 16, 32 or some other multiple of 8 bits to represent the characters of any language.
The next line contains the XML root tag named project. Following the tag are references to the namespace and schema used in the document. An XML validator uses this information to verify that the tags you use in the document are legal Maven pom tags.
<modelVersion>4.0.0</modelVersion>
The modelVersion tag defines the version of the object model that the pom is using. It is required and as of Maven version 2.x it has been 4.0.0 and remains so for Maven 3.x
<groupId>com.kenfogel</groupId> <artifactId>FXMavenDemo</artifactId> <version>1.0-SNAPSHOT</version>
These three tags make up the GAV. The groupId, artifactId and version taken together represent the unique name for the project. When you look at the dependency section you will see these tags and Maven uses them to locate the libraries you may need to add to your code. If your code becomes a dependency for another project then this is how you will identify it.
The groupId tag typically defines a package name although it can be any string of characters that adheres to the naming conventions for Java. Most organizations will use their company’s domain name reversed for the groupId and as the first part of all the packages their developers create. The artifactId follows the same Java naming conventions and is typically the name of the project.
The version tag defines the current version of the project. Whatever you place here will be appended to the JAR file that Maven creates. You are free to use any versioning scheme that you want such as 1.0.0 or Best Version Ever Mark 2. A common convention in versioning is to include either the string -SNAPSHOT to indicate a project under development or the string -FINAL to indicate a project in production.
<packaging>jar</packaging>
The packaging tag tells us the format of the file that will be built. The choices are jar, war and ear.
<name>FXMavenDemo</name>
The optional name tag allows us to associate a name with the build. This name can contain any characters including spaces.
<description>A sample pom.xml file for this article</description>
The optional description tag lets you write any text that want to provide any information to someone reading this file.
<developers> <developer> <id>9999999</id> <name>Ken Fogel</name> <email>kfogel@anemailaddress.com</email> </developer> </developers>
The developers tag and its child tags allow you to identify the members of a project.
<organization> <!-- Used as the 'Vendor' for JNLP generation --> <name>Your Organization</name> </organization>
JNLP stands for Java Network Launch Protocol. It is used to enable Java applets or applications to be delivered via the web to a client computer. To be able to use this method of application delivery you must be able to sign your application with a valid certificate just like those used for SSL security for web transactions. If you are developing commercial Java applications then you will need to have a certificate.
If you are a student then use the name tag to show the school you are attending.
<properties> <project.build.sourceEncoding> UTF-8 </project.build.sourceEncoding> <mainClass> com.kenfogel.fxmavendemo.MainApp </mainClass> </properties>
The properties section allows you to declare variables that can be used in later sections of the pom. Within the properties tag you can make up any tag names you want.
${project.build.sourceEncoding}
Some plugins assume that the files are encoded in standard ASCII. In those cases they must be informed that the encoding is really UTF-8. This is not currently used in this pom example but is considered a tag to have just in case.
${mainClass}
There are two cases in this pom where a plugin needs to know the full path to the class file that contains the main method. The exec plugin needs to know where to start the program when it runs. The shade plugin must list the main class in the jar’s MANIFEST.MF file.
<dependencies>
The most significant function that Maven provides is the management of the required libraries for projects and having them available in the build path. In the dependencies section of a pom file you place a dependency block that must have the groupId, artifactId and version. When Maven process the pom file it will look for the files required for the dependency in the local Maven repository, the .m2 folder. If it’s not found here Maven will go online to the standard repository, maven.org, and use the information there to download the necessary files to .m2. If it cannot be found anywhere then an error will occur. Not every library can be located through maven.org so there is a repository tag that can be used in a pom if you wish to have Maven look in other online repositories. See http://bit.ly/1IlaoVx for more details on using multiple repositories.
<dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.12</version> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j-impl</artifactId> <version>2.3</version> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> <version>2.3</version> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>2.3</version> </dependency>
This first block of dependencies defines the logging library we will use. There are two parts to this particular logging approach. The first two dependency blocks define the SLF4J or Simple Logging Framework for Java. This is a façade that provides an interface for logging that is independent from the specific implementation of a logging framework. The second two dependency blocks define log4J as the logging implementation. The version numbers here are very important as there is still a widely used version 1.x of log4j. Version 1.x will no longer be maintained and version 2.x is the new standard.
<dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency>
This is the dependency for the JUnit testing framework. It includes an additional tag named scope. This means that this dependency is only used during the test phase of the build. The JUnit jar will not be included in the executable shaded jar.
From this point on you can add any additional dependencies that you may need. Students in my courses almost always need MySQL.
<dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.36</version> </dependency>
Students in my third year project course also need Jodd Mail.
<dependency> <groupId>org.jodd</groupId> <artifactId>jodd-mail</artifactId> <version>3.6.6</version> </dependency> </dependencies>
The dependencies are complete and now we move on to the build.
<build>
The build section contains the information that Maven needs to compile, assemble and execute the project. Plugins define the operations needed to carry out these actions.
<defaultGoal>clean compile package exec:java</defaultGoal>
The tag defaultGoal is used to define the Maven goals, sometimes also called phases. Goals are actions that Maven must carry out. Most IDEs allow you to declare the goals that you want in their run command. If you do that then it will override what you see here. In this tag I have the most common goals.
Clean deletes all class files and jar files. If you use clean then you must close any running instance of your project. Clean deletes the target folder and then recreates it. Your code is run from the target folder so it cannot be deleted if a process is running somewhere from the folder.
Compile does just that. If you do not use clean first then only source code files newer than their compiled class files will be compiled. For small projects clean is not an issue but in large systems you will not necessarily clean for every compile.
Package means to create the JAR file. All the class files produced by the compile goal are added to the jar file. The default behaviour here is to not include dependencies in the jar.
Exec means to execute the program. There are two flavours of exec, one is exec:java and the other is exec:exec. You must use one of these. The exec:exec runs the packaged jar as if it were being run from the command line and in a separate Java Virtual Machine from the IDE and Maven. This will fail if the dependencies are not in the jar.
The exec:java runs the program from the compiled class files and not the jar within the same JVM as the IDE. The Maven dependencies are in the build path so they are available to the executing code. The exec:exec gives a better picture of how your code will perform on its own. On a slow machine exec:java will execute faster because a new instance of the JVM is not needed. One drawback to exec:exec is that logging messages or System.out messages will not appear in the IDE’s console until the program ends. Therefore I recommend exec:java during early development and exec:exec as you near the production release.
<plugins>
The plugins are the components of Maven that carry out the required tasks of the build. They look a lot like dependencies and require code downloaded from a repository if not already in your .m2 repository.
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.3</version> <configuration> <source>1.8</source> <target>1.8</target> <compilerArgument>-Xlint:all</compilerArgument> <showWarnings>true</showWarnings> <showDeprecation>true</showDeprecation> </configuration> </plugin>
The Maven Compiler plugin is responsible for executing the javac compiler on your code. This means that when using an IDE it is Maven and not the IDE that compiles the code. The configuration tag defines some parameters for the compiler. The first two, source and target, defines the format of the .java files and the format of the .class files. It therefore defines the major version of the compiler which in this example is 1.8.
The tag compilerArgument adds the string to the compiler execution such as javac –Xlint:all. This means that we want the messages that the compiler generates to be available. It does not mean that they will be displayed. That is the role of the next two tags, showWarnings and showDeprecation.
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>2.4.1</version> <configuration> <transformers> <transformer implementation= "org.apache.maven.plugins.shade. resource.ManifestResourceTransformer"> <mainClass>${mainClass}</mainClass> </transformer> </transformers> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> </plugin>
This is the Shade plugin. It is responsible for creating an executable jar file. To be a standalone executable jar there are two changes that have to be made to a basic jar. The first is to include all the dependencies in the jar. The second is to create a text file called MANIFEST.MF in the META_INF folder in the jar that contains the name of the class where the main method is found. The execution of shade is defined in the executions tag to occur as part of the package phase when the plain jar is made. You will end up with two jars when this is done. The original and the executable. The following image gives you a sense of the difference between a plain jar and and an executable or shaded jar.
<plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.4.0</version> <executions> <execution> <id>default-cli</id> <goals> <goal>exec</goal> <goal>java</goal> </goals> <configuration> <mainClass>${mainClass}</mainClass> <executable>${java.home}/bin/java</executable> <commandlineArgs>-jar ${project.build.directory}/ ${project.build.finalName}.jar</commandlineArgs> </configuration> </execution> </executions> </plugin>
The exec plugin defines how the program will be run. As there are two ways to run a program, exec:exec and exec:java they are both defined here. The executable tag defines where the java virtual machine, either java.exe or javaw.exe, can be found. The commandlineArgs defines what is added to the JVM to run the executable jar in a separate JVM.
If you are using exec:java then the mainClass tag is used to identify which class file contains the main method.
The values for all the $ values except ${mainClass}, that was defined in properties, are provided by the IDE.
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.18.1</version> <configuration> <skipTests>false</skipTests> </configuration> </plugin> </plugins> </build> </project>
The last plugin at the end of the pom file is Surefire. It runs the JUnit tests and then writes the results of the text to a text file and an xml file. These results can also be seen in the console. There is one configuration and that is to skipTests. Set this true with caution as forgetting to set it back to false may result in delivering code you think works but really does not.
A complete pom follows. It comes from the sample project my students in my first class must run. It is commented throughout. If you want to learn more about the pom visit http://maven.apache.org/pom.html
Useful info. Lucky me I found your website by accident, and I
am shocked why this twist of fate did not came about earlier!
I bookmarked it.
Hi Ken
I read your article on Maven with Raspberry Pi.
I authored a maven MOJO a while back to solve this specific problem.
Basically it replaces the Maven exec plugin, automatically SSH’s the project under target to the remote host (in this case Raspberry Pi), can attach a debugger and execute.
So this gives you full debugging from Netbeans on the remote pi using the normal Maven targets.
https://bitbucket.org/jingram/ssh-maven-plugin
Would you be interested in a Part III of the article covering the MOJO which is already released on Maven central.
Regards
Johnathan Ingram
jingram@rogueware.org