easy-captcha
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.sonsure</groupId>
<artifactId>easy-captcha</artifactId>
<version>1.6.2</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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>sonsure-replay-parent</artifactId>
<groupId>com.sonsure</groupId>
<version>1.0.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>easy-captcha</artifactId>
<version>1.6.2</version>
<packaging>bundle</packaging>
<properties>
<easy-captcha.version>1.6.2</easy-captcha.version>
</properties>
<dependencies>
<dependency>
<groupId>com.github.whvcse</groupId>
<artifactId>easy-captcha</artifactId>
<version>${easy-captcha.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack-dependencies</id>
<phase>prepare-package</phase>
<goals>
<goal>unpack-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/classes</outputDirectory>
<overWriteReleases>true</overWriteReleases>
<overWriteSnapshots>true</overWriteSnapshots>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<unpackBundle>true</unpackBundle>
<instructions>
<Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
<Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
<Bundle-Description>OSGI version of jar ${project.artifactId}</Bundle-Description>
<Export-Package>*,META-INF.services.*</Export-Package>
<Include-Resource>
${project.build.directory}/classes/actionj.ttf,
${project.build.directory}/classes/epilog.ttf,
${project.build.directory}/classes/fresnel.ttf,
${project.build.directory}/classes/headache.ttf,
${project.build.directory}/classes/lexo.ttf,
${project.build.directory}/classes/prefix.ttf,
${project.build.directory}/classes/progbot.ttf,
${project.build.directory}/classes/ransom.ttf,
${project.build.directory}/classes/robot.ttf,
${project.build.directory}/classes/scandal.ttf
</Include-Resource>
<Import-Package>
!javax.*
!sun.*,
!com.sun.*,
!jdk.*,
!com.intellij.*,
*;resolution:=optional
</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>