ycssmin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>de.matrixweb.smaller</groupId>
<artifactId>ycssmin</artifactId>
<version>0.8.8</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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>de.matrixweb.smaller</groupId>
<artifactId>bundles</artifactId>
<version>0.8.8</version>
</parent>
<artifactId>ycssmin</artifactId>
<packaging>bundle</packaging>
<name>Smaller :: Bundles :: ycssmin</name>
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<version>${osgi.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>javascript</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>resource</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.3.7</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Export-Package />
<Bundle-Activator>de.matrixweb.smaller.ycssmin.Activator</Bundle-Activator>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>