add a contributor to generate project-team.html
diff --git a/pom.xml b/pom.xml
index cccb732..f97941a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -82,6 +82,17 @@
         </mailingList>
     </mailingLists>
 
+    <developers>
+        <developer>
+            <id>sblackmon</id>
+            <name>Steve Blackmon</name>
+            <email>sblackmon@apache.org</email>
+            <url>https://github.com/steveblackmon</url>
+            <organization>Apache Software Foundation</organization>
+            <organizationUrl>http://streams.incubator.apache.org</organizationUrl>
+        </developer>
+    </developers>
+
     <repositories>
         <repository>
             <id>apache-repo</id>
@@ -138,6 +149,7 @@
         <bundle.plugin.version>1.4.3</bundle.plugin.version>
         <compiler.plugin.version>3.0</compiler.plugin.version>
         <clean.plugin.version>2.6</clean.plugin.version>
+        <dependency.plugin.version>2.8</dependency.plugin.version>
         <depgraph.plugin.version>1.0.2</depgraph.plugin.version>
         <docker.plugin.version>0.11.5-M1</docker.plugin.version>
         <enforcer.plugin.version>1.3.1</enforcer.plugin.version>
@@ -147,6 +159,7 @@
         <pax.plugin.version>1.5</pax.plugin.version>
         <reflections.plugin.version>0.9.8</reflections.plugin.version>
         <remote-resources.plugin.version>1.4</remote-resources.plugin.version>
+        <reports.plugin.version>2.8.1</reports.plugin.version>
         <resources.plugin.version>2.7</resources.plugin.version>
         <scm.plugin.version>1.9.4</scm.plugin.version>
         <shade.plugin.version>2.3</shade.plugin.version>
@@ -449,14 +462,20 @@
                 </plugin>
                 <plugin>
                     <artifactId>maven-project-info-reports-plugin</artifactId>
+                    <version>${reports.plugin.version}</version>
                     <configuration>
                         <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
                     </configuration>
                 </plugin>
                 <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-dependency-plugin</artifactId>
+                    <version>${dependency.plugin.version}</version>
+                </plugin>
+                <plugin>
                     <groupId>com.github.ferstl</groupId>
                     <artifactId>depgraph-maven-plugin</artifactId>
-                    <version>1.0.2</version>
+                    <version>${depgraph.plugin.version}</version>
                 </plugin>
             </plugins>
         </pluginManagement>
@@ -536,6 +555,7 @@
                     <minmemory>128m</minmemory>
                     <maxmemory>1g</maxmemory>
                 </configuration>
+
             </plugin>
 
         </plugins>
@@ -544,32 +564,24 @@
     </build>
 
     <reporting>
-        <plugins>
+      <plugins>
             <plugin>
                 <artifactId>maven-project-info-reports-plugin</artifactId>
-                <configuration>
-                    <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
-                </configuration>
-            </plugin>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-javadoc-plugin</artifactId>
                 <reportSets>
-                    <reportSet>
-                        <id>aggregate</id>
-                        <reports>
-                            <report>javadoc-no-fork</report>
-                            <report>test-javadoc-no-fork</report>
-                            <report>aggregate</report>
-                        </reports>
-                    </reportSet>
-                    <reportSet>
-                        <id>html</id>
-                        <reports>
-                            <report>javadoc</report>
-                        </reports>
-                    </reportSet>
+                  <reportSet>
+                    <reports><!-- select reports -->
+                      <report>cim</report>
+                      <report>license</report>
+                      <report>mailing-list</report>
+                      <report>project-team</report>
+                      <report>issue-tracking</report>
+                      <report>distribution-management</report>
+                    </reports>
+                  </reportSet>
                 </reportSets>
+                <configuration>
+                  <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
+                </configuration>
             </plugin>
             <plugin>
                 <artifactId>maven-site-plugin</artifactId>
@@ -578,7 +590,6 @@
             <plugin>
                 <groupId>com.github.ferstl</groupId>
                 <artifactId>depgraph-maven-plugin</artifactId>
-                <version>${depgraph.plugin.version}</version>
             </plugin>
         </plugins>
     </reporting>