hunspell
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.gitlab.dumonts</groupId>
<artifactId>hunspell</artifactId>
<version>2.1.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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.gitlab.dumonts</groupId>
<artifactId>hunspell</artifactId>
<version>2.1.2</version>
<name>${project.groupId}:${project.artifactId}</name>
<description>Java Bindings to Hunspell 1.7</description>
<url>https://gitlab.com/dumonts/hunspell-java</url>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>https://gitlab.com/dumonts/hunspell-java/blob/master/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<organization>
<name>com.gitlab.dumonts</name>
<url>https://gitlab.com/dumonts</url>
</organization>
<scm>
<url>https://gitlab.com/dumonts/hunspell-java</url>
<connection>
scm:git:git://gitlab.com/dumonts/hunspell-java.git
</connection>
<developerConnection>
scm:git:ssh://git@gitlab.com:dumonts/hunspell-java.git
</developerConnection>
</scm>
<issueManagement>
<system>GitLab</system>
<url>https://github.com/dumonts/hunspell-java/issues</url>
</issueManagement>
<developers>
<developer>
<name>Ole Schönburg</name>
<email>ole.schoenburg@gmail.com</email>
<organization>Dumonts</organization>
<organizationUrl>https://gitlab.com/dumonts</organizationUrl>
</developer>
</developers>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<hunspell.version>1.7</hunspell.version>
</properties>
<dependencies>
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna-platform</artifactId>
<version>5.12.1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.nativelibs4java</groupId>
<artifactId>maven-jnaerator-plugin</artifactId>
<version>0.12</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.2</version>
<configuration>
<argLine>-Dfile.encoding=UTF-8</argLine>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<excludePackageNames>dumonts.hunspell.bindings</excludePackageNames>
</configuration>
</plugin>
</plugins>
</build>
</project>