Layout des Seitenkopfes sauber von der Seitenaufteilung getrennt
[website] / pom.xml
diff --git a/pom.xml b/pom.xml
index 8af44c8..b9e7a1b 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -45,6 +45,7 @@
     <slf4j.version>1.5.8</slf4j.version>
     <springframework.version>3.2.4.RELEASE</springframework.version>
     <tiles.version>3.0.1</tiles.version>
+    <wro4j.version>1.7.3-SNAPSHOT</wro4j.version>
 
   </properties>
 
         </configuration>
       </plugin>
       <plugin>
-        <groupId>org.lesscss</groupId>
-        <artifactId>lesscss-maven-plugin</artifactId>
-        <version>1.3.3</version>
+        <groupId>ro.isdc.wro4j</groupId>
+        <artifactId>wro4j-maven-plugin</artifactId>
+        <version>${wro4j.version}</version>
+        <configuration>
+          <wroManagerFactory>ro.isdc.wro.maven.plugin.manager.factory.ConfigurableWroManagerFactory</wroManagerFactory>
+          <cssDestinationFolder>${project.build.directory}/${project.build.finalName}/css/</cssDestinationFolder>
+          <jsDestinationFolder>${project.build.directory}/${project.build.finalName}/js/</jsDestinationFolder>
+        </configuration>
         <executions>
           <execution>
+            <phase>prepare-package</phase>
             <goals>
-              <goal>compile</goal>
+              <goal>run</goal>
             </goals>
           </execution>
         </executions>
       </plugin>
+      <plugin>
+        <artifactId>maven-war-plugin</artifactId>
+        <configuration>
+          <warSourceExcludes>
+            WEB-INF/wro.*,
+            js/**,
+            less/**
+          </warSourceExcludes>
+        </configuration>
+      </plugin>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-source-plugin</artifactId>
       <plugin>
         <groupId>org.eclipse.jetty</groupId>
         <artifactId>jetty-maven-plugin</artifactId>
+        <configuration>
+          <webApp>
+            <overrideDescriptor>${project.basedir}/src/test/resources/jetty-web.xml</overrideDescriptor>
+          </webApp>
+        </configuration>
+        <dependencies>
+          <dependency>
+            <groupId>ro.isdc.wro4j</groupId>
+            <artifactId>wro4j-core</artifactId>
+            <version>${wro4j.version}</version>
+          </dependency>
+          <dependency>
+            <groupId>ro.isdc.wro4j</groupId>
+            <artifactId>wro4j-extensions</artifactId>
+            <version>${wro4j.version}</version>
+            <exclusions>
+              <exclusion>
+                <groupId>javax.servlet</groupId>
+                <artifactId>servlet-api</artifactId>
+              </exclusion>
+              <exclusion>
+                <groupId>org.apache.commons</groupId>
+                <artifactId>commons-lang3</artifactId>
+              </exclusion>
+              <exclusion>
+                <groupId>commons-io</groupId>
+                <artifactId>commons-io</artifactId>
+              </exclusion>
+              <exclusion>
+                <groupId>org.springframework</groupId>
+                <artifactId>spring-web</artifactId>
+              </exclusion>
+              <exclusion>
+                <groupId>com.google.code.gson</groupId>
+                <artifactId>gson</artifactId>
+              </exclusion>
+              <exclusion>
+                <groupId>com.google.javascript</groupId>
+                <artifactId>closure-compiler</artifactId>
+              </exclusion>
+              <exclusion>
+                <groupId>com.github.lltyk</groupId>
+                <artifactId>dojo-shrinksafe</artifactId>
+              </exclusion>
+              <exclusion>
+                <groupId>org.jruby</groupId>
+                <artifactId>jruby-core</artifactId>
+              </exclusion>
+              <exclusion>
+                <groupId>org.jruby</groupId>
+                <artifactId>jruby-stdlib</artifactId>
+              </exclusion>
+              <exclusion>
+                <groupId>me.n4u.sass</groupId>
+                <artifactId>sass-gems</artifactId>
+              </exclusion>
+              <exclusion>
+                <groupId>nz.co.edmi</groupId>
+                <artifactId>bourbon-gem-jar</artifactId>
+              </exclusion>
+              <exclusion>
+                <groupId>org.codehaus.gmaven.runtime</groupId>
+                <artifactId>gmaven-runtime-1.7</artifactId>
+              </exclusion>
+              <exclusion>
+                <groupId>org.webjars</groupId>
+                <artifactId>jshint</artifactId>
+              </exclusion>
+              <exclusion>
+                <groupId>org.webjars</groupId>
+                <artifactId>emberjs</artifactId>
+              </exclusion>
+              <exclusion>
+                <groupId>org.webjars</groupId>
+                <artifactId>handlebars</artifactId>
+              </exclusion>
+              <exclusion>
+                <groupId>org.webjars</groupId>
+                <artifactId>coffee-script</artifactId>
+              </exclusion>
+              <exclusion>
+                <groupId>org.webjars</groupId>
+                <artifactId>jslint</artifactId>
+              </exclusion>
+              <exclusion>
+                <groupId>org.webjars</groupId>
+                <artifactId>json2</artifactId>
+              </exclusion>
+              <exclusion>
+                <groupId>org.webjars</groupId>
+                <artifactId>jquery</artifactId>
+              </exclusion>
+            </exclusions>
+          </dependency>
+        </dependencies>
       </plugin>
       <plugin>
         <groupId>org.codehaus.mojo</groupId>