aboutsummaryrefslogtreecommitdiffstats
path: root/themes/pom.xml
diff options
context:
space:
mode:
authorAleksi Hietanen <aleksi@vaadin.com>2016-10-13 10:21:41 +0300
committerPekka Hyvönen <pekka@vaadin.com>2016-10-13 11:58:59 +0000
commit24e11dca6b074217d594e618727dfe7abf7c3a90 (patch)
treef310c0dffd9e2a814f543d3238d97dcc523086c4 /themes/pom.xml
parent7c8a03ce9e37d4abc172c050976a15d7f269b55e (diff)
downloadvaadin-framework-24e11dca6b074217d594e618727dfe7abf7c3a90.tar.gz
vaadin-framework-24e11dca6b074217d594e618727dfe7abf7c3a90.zip
Move all themes except Valo into a new compatibility-themes package
Change-Id: Ife0707c69bac83f190b5497af5fef1af43af6e46
Diffstat (limited to 'themes/pom.xml')
-rw-r--r--themes/pom.xml147
1 files changed, 0 insertions, 147 deletions
diff --git a/themes/pom.xml b/themes/pom.xml
index b0d3d87360..76af861d0c 100644
--- a/themes/pom.xml
+++ b/themes/pom.xml
@@ -66,7 +66,6 @@
<directory>src/main/themes</directory>
<filtering>false</filtering>
<excludes>
- <exclude>**/base.scss</exclude>
<exclude>**/valo/shared/_global.scss</exclude>
</excludes>
</resource>
@@ -74,7 +73,6 @@
<directory>src/main/themes</directory>
<filtering>true</filtering>
<includes>
- <include>**/base.scss</include>
<include>**/valo/shared/_global.scss</include>
</includes>
</resource>
@@ -107,120 +105,6 @@
<artifactId>exec-maven-plugin</artifactId>
<executions>
<execution>
- <id>compile-legacy-base</id>
- <phase>process-resources</phase>
- <goals>
- <goal>exec</goal>
- </goals>
- <configuration>
- <classpathScope>compile</classpathScope>
- <executable>${java.home}/bin/java</executable>
- <arguments>
- <argument>-classpath</argument>
- <classpath />
-
- <argument>com.vaadin.sass.SassCompiler</argument>
- <argument>
- ${project.build.outputDirectory}/VAADIN/themes/base/legacy-styles.scss</argument>
- <argument>
- ${project.build.outputDirectory}/VAADIN/themes/base/legacy-styles.css</argument>
- </arguments>
- </configuration>
- </execution>
-
- <execution>
- <id>compile-legacy-chameleon</id>
- <phase>process-resources</phase>
- <goals>
- <goal>exec</goal>
- </goals>
- <configuration>
- <classpathScope>compile</classpathScope>
- <executable>${java.home}/bin/java</executable>
- <arguments>
- <argument>-classpath</argument>
- <classpath />
-
- <argument>com.vaadin.sass.SassCompiler</argument>
- <argument>
- ${project.build.outputDirectory}/VAADIN/themes/chameleon/legacy-styles.scss</argument>
- <argument>
- ${project.build.outputDirectory}/VAADIN/themes/chameleon/legacy-styles.css</argument>
- </arguments>
- </configuration>
- </execution>
- <execution>
- <id>compile-legacy-reindeer</id>
- <phase>process-resources</phase>
- <goals>
- <goal>exec</goal>
- </goals>
- <configuration>
- <classpathScope>compile</classpathScope>
- <executable>${java.home}/bin/java</executable>
- <arguments>
- <argument>-classpath</argument>
- <classpath />
-
- <argument>com.vaadin.sass.SassCompiler</argument>
- <argument>
- ${project.build.outputDirectory}/VAADIN/themes/reindeer/legacy-styles.scss</argument>
- <argument>
- ${project.build.outputDirectory}/VAADIN/themes/reindeer/legacy-styles.css</argument>
- </arguments>
- </configuration>
- </execution>
- <execution>
- <id>compile-legacy-runo</id>
- <phase>process-resources</phase>
- <goals>
- <goal>exec</goal>
- </goals>
- <configuration>
- <classpathScope>compile</classpathScope>
- <executable>${java.home}/bin/java</executable>
- <arguments>
- <argument>-classpath</argument>
- <classpath />
-
- <argument>com.vaadin.sass.SassCompiler</argument>
- <argument>
- ${project.build.outputDirectory}/VAADIN/themes/runo/legacy-styles.scss</argument>
- <argument>
- ${project.build.outputDirectory}/VAADIN/themes/runo/legacy-styles.css</argument>
- </arguments>
- </configuration>
- </execution>
- <execution>
- <id>smart-sprite-reindeer</id>
- <phase>process-resources</phase>
- <goals>
- <goal>exec</goal>
- </goals>
- <configuration>
- <classpathScope>compile</classpathScope>
- <executable>${java.home}/bin/java</executable>
- <arguments>
- <argument>-classpath</argument>
- <classpath />
-
- <argument>org.carrot2.labs.smartsprites.SmartSprites</argument>
-
- <argument>--sprite-png-depth</argument>
- <argument>AUTO</argument>
-
- <argument>--css-file-encoding</argument>
- <argument>UTF-8</argument>
-
- <argument>--root-dir-path</argument>
- <argument>${project.build.outputDirectory}/VAADIN/themes/reindeer</argument>
-
- <argument>--log-level</argument>
- <argument>WARN</argument>
- </arguments>
- </configuration>
- </execution>
- <execution>
<id>generate-export-package</id>
<phase>package</phase>
<goals>
@@ -247,37 +131,6 @@
</plugin>
<plugin>
- <artifactId>maven-antrun-plugin</artifactId>
- <executions>
- <execution>
- <id>repackage-reindeer</id>
- <phase>process-classes</phase>
- <goals>
- <goal>run</goal>
- </goals>
- <configuration>
- <target>
- <property name="reindeer.theme.path"
- value="${project.build.outputDirectory}/VAADIN/themes/reindeer/" />
-
- <move
- file="${reindeer.theme.path}/styles-sprite.css"
- tofile="${reindeer.theme.path}/styles.css" />
-
- <move
- file="${reindeer.theme.path}/legacy-styles-sprite.css"
- tofile="${reindeer.theme.path}/legacy-styles.css" />
-
- <gzip
- src="${reindeer.theme.path}/styles.css"
- destfile="${reindeer.theme.path}/styles.css.gz" />
- </target>
- </configuration>
- </execution>
- </executions>
- </plugin>
-
- <plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>