| 组织ID: |
com.carrotsearch |
| 项目ID: |
smartsprites |
| 版本: |
0.2.11 |
| 最后修改时间: |
2018-09-03 00:25:02 |
| 包类型: |
jar |
| 标题: |
SmartSprites |
| 描述: |
CSS Sprites Generator Done Right. SmartSprites maintains CSS sprites in your designs,
fully automatically. No tedious copying and pasting to your CSS when adding or changing
sprited images.
|
| 相关URL: |
http://csssprites.org |
| 大小: |
89.32KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>com.carrotsearch</groupId>
<artifactId>smartsprites</artifactId>
<version>0.2.11</version>
</dependency>
|
| Gradle引入代码: |
com.carrotsearch:smartsprites:0.2.11
|
| 下载Jar包: |
|
| POM文件内容: |
<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>
<!-- We use SonaType for publishing artefacts. Parent POM makes things easier here. -->
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>5</version>
</parent>
<!-- Project info. -->
<groupId>com.carrotsearch</groupId>
<artifactId>smartsprites</artifactId>
<version>0.2.11</version>
<packaging>jar</packaging>
<name>SmartSprites</name>
<description>
CSS Sprites Generator Done Right. SmartSprites maintains CSS sprites in your designs,
fully automatically. No tedious copying and pasting to your CSS when adding or changing
sprited images.
</description>
<url>http://csssprites.org</url>
<!-- Extended project info. -->
<licenses>
<license>
<name>BSD license</name>
<url>http://csssprites.org/smartsprites.LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<organization>
<name>Carrot Search s.c.</name>
<url>http://www.carrotsearch.com</url>
</organization>
<issueManagement>
<system>Jira</system>
<url>http://issues.carrot2.org/browse/SMARTSPRITES</url>
</issueManagement>
<mailingLists>
<mailingList>
<name>Announcements and bug reports mailing list</name>
<subscribe>smartsprites-css-sprite-generator+subscribe@googlegroups.com</subscribe>
<unsubscribe>smartsprites-css-sprite-generator+unsubscribe@googlegroups.com</unsubscribe>
<post>smartsprites-css-sprite-generator@googlegroups.com</post>
</mailingList>
</mailingLists>
<scm>
<url>git@github.com:carrotsearch/smartsprites.git</url>
<connection>scm:git:git@github.com:carrotsearch/smartsprites.git</connection>
<developerConnection>scm:git:git@github.com:carrotsearch/smartsprites.git</developerConnection>
</scm>
<developers>
<developer>
<id>stanislaw.osinski</id>
<name>Stanis艂aw Osi艅ski</name>
<email>stanislaw.osinski@carrotsearch.com</email>
</developer>
<developer>
<id>dawid.weiss</id>
<name>Dawid Weiss</name>
<email>dawid.weiss@carrotsearch.com</email>
</developer>
</developers>
<!-- Global properties. -->
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
</properties>
<!-- Dependencies. -->
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>18.0</version>
</dependency>
<dependency>
<groupId>args4j</groupId>
<artifactId>args4j</artifactId>
<version>2.0.16</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math3</artifactId>
<version>3.0</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.1</version>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>1.8.4</version>
<optional>true</optional>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.easytesting</groupId>
<artifactId>fest-assert</artifactId>
<version>1.4</version>
<scope>test</scope>
<optional>true</optional>
</dependency>
</dependencies>
<!-- Build tuning. -->
<build>
<defaultGoal>install</defaultGoal>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.6.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.1</version>
</plugin>
</plugins>
</pluginManagement>
<!-- Confugure maven release plugin to make use of the profiles. -->
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<useReleaseProfile>true</useReleaseProfile>
<releaseProfiles>release,maven-release</releaseProfiles>
<pushChanges>false</pushChanges>
<scmCommentPrefix>Release: </scmCommentPrefix>
</configuration>
</plugin>
</plugins>
<!-- Exclude these resources when packaging. -->
<resources>
<resource>
<directory>${project.basedir}/src/main/resources</directory>
<excludes>
</excludes>
</resource>
</resources>
</build>
<!-- Reports -->
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>2.5</version>
<configuration>
<targetJdk>${maven.compiler.target}</targetJdk>
<aggregate>true</aggregate>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>2.7.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<version>2.2</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>2.3.1</version>
<configuration>
<findbugsXmlOutput>true</findbugsXmlOutput>
<effort>max</effort>
<includeTests>true</includeTests>
</configuration>
</plugin>
</plugins>
</reporting>
<profiles>
<!-- No tests, no additional checks. -->
<profile>
<id>fastinstall</id>
<properties>
<maven.test.skip>true</maven.test.skip>
</properties>
<build>
<defaultGoal>install</defaultGoal>
</build>
</profile>
<profile>
<id>clover</id>
<build>
<plugins>
<plugin>
<groupId>com.atlassian.maven.plugins</groupId>
<artifactId>maven-clover2-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<includesTestSourceRoots>false</includesTestSourceRoots>
</configuration>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>instrument</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>com.atlassian.maven.plugins</groupId>
<artifactId>maven-clover2-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<generateXml>true</generateXml>
<generateHtml>true</generateHtml>
</configuration>
</plugin>
</plugins>
</reporting>
</profile>
<!-- Release mode. -->
<profile>
<id>release</id>
<build>
<defaultGoal>install</defaultGoal>
<plugins>
<!-- Attach and modify JavaDocs. -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<encoding>${project.build.sourceEncoding}</encoding>
<stylesheetfile>${basedir}/src/main/javadoc/stylesheet.css</stylesheetfile>
<docfilessubdirs>true</docfilessubdirs>
<windowtitle>SmartSprites v${project.version} API Documentation (JavaDoc)</windowtitle>
<doctitle>SmartSprites v${project.version} API Documentation</doctitle>
<header><![CDATA[<div id='header'><a class='logo' target='_top' href='http://labs.carrotsearch.com'><img src='resources/logo.png'></a>SmartSprites v${project.version} <br>API Documentation</div>]]></header>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Attach sources -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Configure assembly of ZIP and TAR.GZ bundles (stand-alone distributions). -->
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/main/assembly/bin.xml</descriptor>
</descriptors>
<attach>false</attach>
<appendAssemblyId>false</appendAssemblyId>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<!-- Sonatype manual release mode. Prepare bundle ZIPs, sign everything once
completed and prepare the release bundle JAR. -->
<profile>
<id>sonatype</id>
<build>
<defaultGoal>verify</defaultGoal>
<plugins>
<!-- GPG sign artefacts. -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.1</version>
<configuration>
<excludes>
<exclude>**/*.gz</exclude>
<exclude>**/*.zip</exclude>
</excludes>
</configuration>
<executions>
<execution>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Create a release bundle for SonaType. -->
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/main/assembly/release.xml</descriptor>
</descriptors>
<finalName>release-bundle</finalName>
<attach>false</attach>
<appendAssemblyId>false</appendAssemblyId>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>verify</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
amd.Quantize$Cube$Node.class
amd.Quantize$Cube$Search.class
amd.Quantize$Cube.class
amd.Quantize.class
org.carrot2.labs.smartsprites.ant.SmartSpritesTask$1.class
org.carrot2.labs.smartsprites.ant.SmartSpritesTask$AntLogMessageSink.class
org.carrot2.labs.smartsprites.ant.SmartSpritesTask$FailureDetectorMessageSink.class
org.carrot2.labs.smartsprites.ant.SmartSpritesTask.class
org.carrot2.labs.smartsprites.css.CssProperty.class
org.carrot2.labs.smartsprites.css.CssSyntaxUtils.class
org.carrot2.labs.smartsprites.message.LevelCounterMessageSink.class
org.carrot2.labs.smartsprites.message.MemoryMessageSink.class
org.carrot2.labs.smartsprites.message.Message$MessageLevel$1.class
org.carrot2.labs.smartsprites.message.Message$MessageLevel.class
org.carrot2.labs.smartsprites.message.Message$MessageType.class
org.carrot2.labs.smartsprites.message.Message.class
org.carrot2.labs.smartsprites.message.MessageLog.class
org.carrot2.labs.smartsprites.message.MessageSink.class
org.carrot2.labs.smartsprites.message.PrintStreamMessageSink.class
org.carrot2.labs.smartsprites.resource.FileSystemResourceHandler.class
org.carrot2.labs.smartsprites.resource.ResourceHandler.class
org.carrot2.labs.smartsprites.SmartSprites.class
org.carrot2.labs.smartsprites.SmartSpritesParameters$PngDepth.class
org.carrot2.labs.smartsprites.SmartSpritesParameters.class
org.carrot2.labs.smartsprites.SpriteBuilder$1.class
org.carrot2.labs.smartsprites.SpriteBuilder.class
org.carrot2.labs.smartsprites.SpriteDirectiveOccurrence.class
org.carrot2.labs.smartsprites.SpriteDirectiveOccurrenceCollector.class
org.carrot2.labs.smartsprites.SpriteImage.class
org.carrot2.labs.smartsprites.SpriteImageBuilder$BufferedImageEqualsWrapper.class
org.carrot2.labs.smartsprites.SpriteImageBuilder.class
org.carrot2.labs.smartsprites.SpriteImageDirective$Ie6Mode.class
org.carrot2.labs.smartsprites.SpriteImageDirective$SpriteImageFormat.class
org.carrot2.labs.smartsprites.SpriteImageDirective$SpriteImageLayout.class
org.carrot2.labs.smartsprites.SpriteImageDirective$SpriteUidType.class
org.carrot2.labs.smartsprites.SpriteImageDirective.class
org.carrot2.labs.smartsprites.SpriteImageOccurrence.class
org.carrot2.labs.smartsprites.SpriteImageRenderer.class
org.carrot2.labs.smartsprites.SpriteLayoutProperties$SpriteAlignment.class
org.carrot2.labs.smartsprites.SpriteLayoutProperties.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
| 依赖Jar: |
guava-18.0.jar
/com.google.guava/guava/18.0
查看guava所有版本文件
args4j-2.0.16.jar
/args4j/args4j/2.0.16
查看args4j所有版本文件
commons-math3-3.0.jar
/org.apache.commons/commons-math3/3.0
查看commons-math3所有版本文件
commons-io-2.4.jar
/commons-io/commons-io/2.4
查看commons-io所有版本文件
commons-lang3-3.1.jar
/org.apache.commons/commons-lang3/3.1
查看commons-lang3所有版本文件
ant-1.8.4.jar
/org.apache.ant/ant/1.8.4
查看ant所有版本文件
junit-4.10.jar
/junit/junit/4.10
查看junit所有版本文件
fest-assert-1.4.jar
/org.easytesting/fest-assert/1.4
查看fest-assert所有版本文件
|