| 组织ID: |
com.gitlab.dumonts |
| 项目ID: |
hunspell |
| 版本: |
1.1.0 |
| 最后修改时间: |
2019-12-16 15:07:40 |
| 包类型: |
jar |
| 标题: |
${project.groupId}:${project.artifactId} |
| 描述: |
Java Bindings to Hunspell 1.7 |
| 相关URL: |
https://gitlab.com/dumonts/hunspell-java |
| 大小: |
856.90KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>com.gitlab.dumonts</groupId>
<artifactId>hunspell</artifactId>
<version>1.1.0</version>
</dependency>
|
| Gradle引入代码: |
com.gitlab.dumonts:hunspell:1.1.0
|
| 下载Jar包: |
|
| POM文件内容: |
<?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>1.1.0</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>com.nativelibs4java</groupId>
<artifactId>bridj</artifactId>
<version>0.7.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.nativelibs4java</groupId>
<artifactId>maven-jnaerator-plugin</artifactId>
<version>0.12</version>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
</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>3.0.0-M3</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>
|
| Jar包内容: |
META-INF/MANIFEST.MF
org/bridj/lib/darwin_x64/libhunspell.dylib
org/bridj/lib/linux_x64/libhunspell.so
org/bridj/lib/win64/hunspell.dll
dumonts.hunspell.Hunspell.class
dumonts.hunspell.bindings.HunspellLibrary$Hunhandle.class
dumonts.hunspell.bindings.HunspellLibrary.class
META-INF/maven/com.gitlab.dumonts/hunspell/pom.xml
META-INF/maven/com.gitlab.dumonts/hunspell/pom.properties
|
| 依赖Jar: |
bridj-0.7.0.jar
/com.nativelibs4java/bridj/0.7.0
查看bridj所有版本文件
junit-4.10.jar
/junit/junit/4.10
查看junit所有版本文件
|