summaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authormokha <mokha@cisco.com>2019-05-05 20:03:10 -0600
committermokha <mokha@cisco.com>2019-05-05 20:03:10 -0600
commit72737214a2ff0858c8a47bbafb2225eac919594c (patch)
treec68515377bd0dff1e674b06ee025676f0cc88680 /pom.xml
parent7b4cb6a2eef3a0fcde7e998832427c73599e4a0a (diff)
start to setup javadoc
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml65
1 files changed, 38 insertions, 27 deletions
diff --git a/pom.xml b/pom.xml
index 800d635..22872ec 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,6 +1,6 @@
<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">
<modelVersion>4.0.0</modelVersion>
- <groupId>ca.mokhan.assignment1</groupId>
+ <groupId>ca.mokhan.comp268</groupId>
<artifactId>assignment1</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
@@ -11,29 +11,40 @@
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
- <!--<scope>test</scope>-->
- </dependency>
- </dependencies>
- <properties>
- <maven.compiler.source>1.8</maven.compiler.source>
- <maven.compiler.target>1.8</maven.compiler.target>
- </properties>
- <build>
- <sourceDirectory>src</sourceDirectory>
- <testSourceDirectory>src</testSourceDirectory>
- <plugins>
- <plugin>
- <groupId>com.coveo</groupId>
- <artifactId>fmt-maven-plugin</artifactId>
- <version>2.8</version>
- <executions>
- <execution>
- <goals>
- <goal>format</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
-</project>
+ <!--<scope>test</scope>-->
+ </dependency>
+ </dependencies>
+ <properties>
+ <maven.compiler.source>1.8</maven.compiler.source>
+ <maven.compiler.target>1.8</maven.compiler.target>
+ </properties>
+ <build>
+ <sourceDirectory>src</sourceDirectory>
+ <testSourceDirectory>src</testSourceDirectory>
+ <plugins>
+ <plugin>
+ <groupId>com.coveo</groupId>
+ <artifactId>fmt-maven-plugin</artifactId>
+ <version>2.8</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>format</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ <reporting>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>3.1.0</version>
+ <configuration>
+ </configuration>
+ </plugin>
+ </plugins>
+ </reporting>
+ </project>