Merge changes I6885e623,Ie5e68f28
authorRobert Varga <rovarga@cisco.com>
Sun, 1 Dec 2013 11:10:01 +0000 (11:10 +0000)
committerGerrit Code Review <gerrit@opendaylight.org>
Sun, 1 Dec 2013 11:10:01 +0000 (11:10 +0000)
* changes:
  BUG-110 : integration test : pcep message -> topology provider -> md sal
  Fixed a few FIXMEs and deleted commented code.

framework/src/test/java/org/opendaylight/protocol/framework/ServerTest.java
pom.xml

index e86b40ee6be5f8f1b403cfff062a91d01ef791f5..1570b969c0217866141ebbc3645054a3cfe3c858 100644 (file)
@@ -43,7 +43,7 @@ public class ServerTest {
        @Before
        public void setUp() {
                final int port = 10000 + (int)(10000 * Math.random());
-               serverAddress = new InetSocketAddress("127.0.0.5", port);
+               serverAddress = new InetSocketAddress("127.0.0.1", port);
                eventLoopGroup = new NioEventLoopGroup();
        }
 
diff --git a/pom.xml b/pom.xml
index 91ef0b81135e13bb4a84716a8daf874a43b666b7..74121b8decc92daa9c6d967e96426365d4d10141 100644 (file)
--- a/pom.xml
+++ b/pom.xml
                     </reportSet>
                 </reportSets>
             </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <reportSets>
+                    <reportSet>
+                        <id>non-aggregate</id>
+                        <reports>
+                            <report>javadoc</report>
+                        </reports>
+                    </reportSet>
+                    <reportSet>
+                        <id>aggregate</id>
+                        <reports>
+                            <report>aggregate</report>
+                        </reports>
+                    </reportSet>
+                </reportSets>
+            </plugin>
             <!--plugin>
                 <groupId>org.codehaus.mojo</groupId>
                 <artifactId>findbugs-maven-plugin</artifactId>
                     <target>${java.version.target}</target>
                     <testSource>${java.version.source}</testSource>
                     <testTarget>${java.version.target}</testTarget>
+                    <showDeprecation>true</showDeprecation>
+                    <showWarnings>true</showWarnings>
+                    <optimize>true</optimize>
                 </configuration>
             </plugin>
             <plugin>
                             <goal>jar</goal>
                         </goals>
                     </execution>
+                    <execution>
+                        <id>aggregate</id>
+                        <goals>
+                            <goal>aggregate</goal>
+                        </goals>
+                        <phase>site</phase>
+                    </execution>
                 </executions>
             </plugin>