webjar-showdown
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.fujion.webjars</groupId>
<artifactId>webjar-showdown</artifactId>
<version>2.0.3</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>org.fujion.webjars</groupId>
<artifactId>fujion-webjars</artifactId>
<version>3.0.0</version>
</parent>
<name>Highcharts Library</name>
<artifactId>webjar-showdown</artifactId>
<version>2.0.3</version>
<description>Markdown to HTML converter.</description>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<executions>
<execution>
<id>npm-install</id>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>precompile</id>
<configuration>
<target>
<copy tofile="${src.rootdir}/package.json" file="${basedir}/package-template.json">
<filterchain>
<expandproperties/>
</filterchain>
</copy>
</target>
</configuration>
</execution>
<execution>
<id>postcompile</id>
<configuration>
<target>
<copy todir="${webjar.target}/dist">
<fileset dir="${src.rootdir}/node_modules/showdown" includes="license.txt,README.md"/>
<fileset dir="${src.rootdir}/node_modules/showdown/dist" />
</copy>
</target>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>