sasscss-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>es.nitaur</groupId> <artifactId>sasscss-maven-plugin</artifactId> <version>1.5</version> </dependency>
<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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>es.nitaur</groupId> <artifactId>sasscss-maven-plugin</artifactId> <version>1.5</version> <packaging>maven-plugin</packaging> <name>Sass CSS Maven Plugin</name> <description>Sass CSS Maven Plugin</description> <url>http://github.com/t0xa/sasscss-maven-plugin</url> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <repositories> <repository> <id>rubygems-proxy</id> <name>Rubygems Proxy</name> <url>http://rubygems-proxy.torquebox.org/releases</url> <layout>default</layout> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>false</enabled> <updatePolicy>never</updatePolicy> </snapshots> </repository> </repositories> <properties> <project.build.sourceVersion>1.6</project.build.sourceVersion> <project.build.targetVersion>1.6</project.build.targetVersion> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <sass.version>3.4.0</sass.version> <compass.version>1.0.1</compass.version> <inotify.version>0.9.5</inotify.version> <fsevent.version>0.9.4</fsevent.version> <json.version>1.8.1</json.version> <oily_png.version>1.1.1</oily_png.version> <jruby.version>1.7.11</jruby.version> </properties> <dependencies> <dependency> <groupId>org.jruby</groupId> <artifactId>jruby-complete</artifactId> <version>${jruby.version}</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>3.0.5</version> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>3.3</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.sonatype.plexus</groupId> <artifactId>plexus-build-api</artifactId> <version>0.0.7</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.4</version> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>14.0.1</version> </dependency> <!-- rubygems --> <dependency> <groupId>rubygems</groupId> <artifactId>sass</artifactId> <version>${sass.version}</version> <!--<scope>provided</scope>--> <type>gem</type> </dependency> <dependency> <groupId>rubygems</groupId> <artifactId>rb-inotify</artifactId> <version>${inotify.version}</version> <!--<scope>provided</scope>--> <type>gem</type> </dependency> <dependency> <groupId>rubygems</groupId> <artifactId>rb-fsevent</artifactId> <version>${fsevent.version}</version> <!--<scope>provided</scope>--> <type>gem</type> </dependency> <dependency> <groupId>rubygems</groupId> <artifactId>json</artifactId> <version>${json.version}</version> <!--<scope>provided</scope>--> <type>gem</type> </dependency> <!--<dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>3.0</version> </dependency> <dependency> <groupId>org.sonatype.aether</groupId> <artifactId>aether-api</artifactId> <version>1.8</version> </dependency> <dependency> <groupId>org.sonatype.aether</groupId> <artifactId>aether-util</artifactId> <version>1.8</version> </dependency>--> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>3.3</version> <configuration> <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound> </configuration> <executions> <execution> <id>mojo-descriptor</id> <goals> <goal>descriptor</goal> </goals> </execution> <!-- if you want to generate help goal --> <execution> <id>help-goal</id> <goals> <goal>helpmojo</goal> </goals> </execution> </executions> </plugin> <!-- Downloads and installs the required Ruby Gems --> <plugin> <groupId>de.saumya.mojo</groupId> <artifactId>gem-maven-plugin</artifactId> <version>1.0.6</version> <executions> <execution> <id>install-gems</id> <!-- downloads and unpacks gems --> <goals> <goal>initialize</goal> </goals> <configuration> <installRDoc>false</installRDoc> <installRI>false</installRI> <includeOpenSSL>false</includeOpenSSL> <includeRubygemsInTestResources>false</includeRubygemsInTestResources> <includeRubygemsInResources>true</includeRubygemsInResources> <jrubyVersion>${jruby.version}</jrubyVersion> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.jasig.maven</groupId> <artifactId>maven-site-plugin</artifactId> <configuration> <defaultMergePolicy>MERGE</defaultMergePolicy> <reportPlugins combine.children="append"> <plugin> <artifactId>maven-plugin-plugin</artifactId> <version>2.9</version> </plugin> </reportPlugins> </configuration> </plugin> </plugins> <resources> <resource> <directory>target/rubygems</directory> <filtering>false</filtering> <excludes> <exclude>bin/**</exclude> <exclude>cache/**</exclude> <exclude>doc/**</exclude> <exclude>**/spec/**</exclude> <exclude>**/test/**</exclude> <exclude>**/examples/**</exclude> </excludes> </resource> </resources> </build> <profiles> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.2</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> </plugin> </plugins> </build> </profile> </profiles> <licenses> <license> <name>Apache License</name> <url>https://github.com/t0xa/sasscss-maven-plugin/blob/master/LICENSE</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>antonyakimov</id> <name>Anton Yakimov</name> <email>anton@tds.lv</email> </developer> </developers> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/t0xa/sasscss-maven-plugin/issues</url> </issueManagement> <ciManagement> <system>Travis CI</system> <url>https://travis-ci.org/t0xa/sasscss-maven-plugin</url> </ciManagement> <scm> <connection>scm:git:git@github.com:t0xa/sasscss-maven-plugin.git</connection> <developerConnection>scm:git:git@github.com:t0xa/sasscss-maven-plugin.git</developerConnection> <url>git@github.com:t0xa/sasscss-maven-plugin.git</url> <tag>HEAD</tag> </scm> <prerequisites> <maven>3.0</maven> </prerequisites> </project>