Skip to content

Commit

Permalink
Use spaces instead of tabs for indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
hammerhead committed Aug 22, 2011
1 parent 2f9318b commit ddb952f
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 19 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
Introduction
------------
This maven plugin invokes [OptiPNG](http://optipng.sourceforge.net/ "OptiPNG Homepage") on a set of images. OptiPNG is a PNG optimizer which reduces the file size of images by running a lossless recompression.

For sufficient performance of your build process, this plugin processes images in parallel.

Requirements
------------
It is assumed that you have `optipng` installed on your system and that the executeble is available with your `$PATH`.

This plugin has only been tested on Linux.

Usage
Expand Down
39 changes: 20 additions & 19 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,20 @@
limitations under the License.
-->
<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>
<modelVersion>4.0.0</modelVersion>

<groupId>de.kabambo</groupId>
<artifactId>maven-optipng-plugin</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>maven-plugin</packaging>
<groupId>de.kabambo</groupId>
<artifactId>maven-optipng-plugin</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>maven-plugin</packaging>

<name>maven-optipng-plugin Maven Plugin</name>
<name>maven-optipng-plugin Maven Plugin</name>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<compileSource>1.6</compileSource>
<compileTarget>1.6</compileTarget>
</properties>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<compileSource>1.6</compileSource>
<compileTarget>1.6</compileTarget>
</properties>

<build>
<plugins>
Expand All @@ -43,12 +43,13 @@
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>2.0</version>
<scope>compile</scope>
</dependency>
</dependencies>
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>2.0</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>

0 comments on commit ddb952f

Please sign in to comment.