master
 1<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/maven-v4_0_0.xsd">
 2  <modelVersion>4.0.0</modelVersion>
 3  <groupId>ca.mokhan.comp268</groupId>
 4  <artifactId>assignment2</artifactId>
 5  <packaging>jar</packaging>
 6  <version>1.0-SNAPSHOT</version>
 7  <name>assignment2</name>
 8  <url>http://maven.apache.org</url>
 9  <dependencies>
10    <dependency>
11      <groupId>junit</groupId>
12      <artifactId>junit</artifactId>
13      <version>3.8.1</version>
14    </dependency>
15  </dependencies>
16  <properties>
17    <maven.compiler.source>1.8</maven.compiler.source>
18    <maven.compiler.target>1.8</maven.compiler.target>
19  </properties>
20  <build>
21    <sourceDirectory>src</sourceDirectory>
22    <testSourceDirectory>src</testSourceDirectory>
23    <plugins>
24      <plugin>
25        <groupId>com.coveo</groupId>
26        <artifactId>fmt-maven-plugin</artifactId>
27        <version>2.8</version>
28        <executions>
29          <execution>
30            <goals>
31              <goal>format</goal>
32            </goals>
33          </execution>
34        </executions>
35      </plugin>
36    </plugins>
37  </build>
38  <reporting>
39    <plugins>
40      <plugin>
41        <groupId>org.apache.maven.plugins</groupId>
42        <artifactId>maven-javadoc-plugin</artifactId>
43        <version>3.1.0</version>
44        <configuration>
45          <excludePackageNames>ca.mokhan.*</excludePackageNames>
46        </configuration>
47      </plugin>
48    </plugins>
49  </reporting>
50</project>