You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by se...@apache.org on 2011/02/04 19:23:13 UTC

svn commit: r1067251 - /cxf/trunk/rt/management-web/pom.xml

Author: sergeyb
Date: Fri Feb  4 18:23:12 2011
New Revision: 1067251

URL: http://svn.apache.org/viewvc?rev=1067251&view=rev
Log:
Excluding the log browser package from the compilation

Modified:
    cxf/trunk/rt/management-web/pom.xml

Modified: cxf/trunk/rt/management-web/pom.xml
URL: http://svn.apache.org/viewvc/cxf/trunk/rt/management-web/pom.xml?rev=1067251&r1=1067250&r2=1067251&view=diff
==============================================================================
--- cxf/trunk/rt/management-web/pom.xml (original)
+++ cxf/trunk/rt/management-web/pom.xml Fri Feb  4 18:23:12 2011
@@ -168,8 +168,9 @@
 
     <build>
         <outputDirectory>${gwt.classes.dir}</outputDirectory>
-        <plugins>
 
+        <plugins>
+            <!--
             <plugin>
                 <groupId>org.codehaus.mojo</groupId>
                 <artifactId>gwt-maven-plugin</artifactId>
@@ -187,14 +188,28 @@
                     <disableCastChecking>true</disableCastChecking>
                     <webappDirectory>${gwt.classes.dir}/static-content</webappDirectory>
 
-                    <!--Hosted mode configuration-->
                     <hostedWebapp>${gwt.hostedmode.dir}</hostedWebapp>
                     <runTarget>logbrowser/LogBrowser.html</runTarget>
                 </configuration>
             </plugin>
+            -->
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                    <source>1.5</source>
+                    <target>1.5</target>
+                    <excludes>
+                        <exclude>${basedir}/src/main/java/org/apache/cxf/management/web/browser/**</exclude>
+                    </excludes>
+                </configuration>
+             </plugin>
+
         </plugins>
-    </build>
 
+        
+    </build>
+<!--
     <profiles>
         <profile>
             <id>dev</id>
@@ -244,6 +259,6 @@
             </build>
         </profile>
     </profiles>
-
+-->
 
 </project>