maven-reflow-skin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>nl.demon.shadowland.freedumbytes.maven.custom.skins</groupId> <artifactId>maven-reflow-skin</artifactId> <version>1.3.3</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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>nl.demon.shadowland.freedumbytes.maven.custom.skins</groupId> <artifactId>foundation</artifactId> <version>1.3.3</version> </parent> <artifactId>maven-reflow-skin</artifactId> <packaging>jar</packaging> <name>${organizationName} Reflow Skin</name> <description>${organizationName} repackaged Reflow skin for the Maven site.</description> <inceptionYear>2015</inceptionYear> <properties> <skinGroupId>${project.groupId}</skinGroupId> <skinArtifactId>${project.artifactId}</skinArtifactId> <skinVersion>${customSkinsVersion}</skinVersion> </properties> <dependencies> <dependency> <groupId>nl.demon.shadowland.freedumbytes.maven.dependencies</groupId> <artifactId>log</artifactId> <version>${groupVersion}</version> <scope>provided</scope> </dependency> <dependency> <groupId>nl.demon.shadowland.freedumbytes.maven.dependencies</groupId> <artifactId>test</artifactId> <version>${groupVersion}</version> <type>pom</type> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <dependencies> <dependency> <groupId>nl.demon.shadowland.freedumbytes.patch.lt.velykis.maven.skins</groupId> <artifactId>reflow-velocity-tools</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.velocity</groupId> <artifactId>velocity</artifactId> <version>${velocityVersion}</version> </dependency> </dependencies> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>unpack-reflow-skin-stuff</id> <phase>generate-resources</phase> <goals> <goal>unpack</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>lt.velykis.maven.skins</groupId> <artifactId>reflow-maven-skin</artifactId> <version>${mavenReflowSkinVersion}</version> <overWrite>true</overWrite> <outputDirectory>${project.build.outputDirectory}</outputDirectory> </artifactItem> </artifactItems> <excludes> **/MANIFEST.MF, **/META-INF/maven/lt.velykis.maven.skins/**, </excludes> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>