wcomponents-sass-compiler
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.bordertech.wcomponents</groupId>
<artifactId>wcomponents-sass-compiler</artifactId>
<version>1.0.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.bordertech.wcomponents</groupId>
<artifactId>wcomponents-sass-compiler</artifactId>
<name>wcomponents-sass-compiler</name>
<version>1.0.0</version>
<packaging>jar</packaging>
<parent>
<groupId>com.github.bordertech.wcomponents</groupId>
<artifactId>wcomponents-parent</artifactId>
<version>1.1.0</version>
</parent>
<description>Wrapper for Vaadin Sass Compiler which adds an Ant task and the ability to input a directory rather than a single sass file.</description>
<!-- url is a required section for Maven Central -->
<url>http://bordertech.github.io/wcomponents-sass-compiler/</url>
<scm>
<url>https://github.com/bordertech/wcomponents-sass-compiler</url>
<connection>scm:git:https://github.com/bordertech/wcomponents-sass-compiler.git</connection>
<developerConnection>scm:git:https://github.com/bordertech/wcomponents-sass-compiler.git</developerConnection>
<tag>wcomponents-sass-compiler-1.0.0</tag>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/BorderTech/wcomponents-sass-compiler/issues</url>
</issueManagement>
<ciManagement>
<system>TravisCI</system>
<url>https://travis-ci.org/BorderTech/wcomponents-sass-compiler/</url>
</ciManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${surefire.version}</version>
<configuration>
<argLine>-disableassertions</argLine>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-sass-compiler</artifactId>
<version>0.9.13</version>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>1.9.6</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant-testutil</artifactId>
<version>1.9.6</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>