组织ID: |
org.xerial.snappy |
项目ID: |
snappy-java |
版本: |
1.0.3.1 |
最后修改时间: |
2019-10-23 11:25:38 |
包类型: |
jar |
标题: |
Snappy for Java |
描述: |
snappy-java: A fast compression/decompression library |
大小: |
971.91KB |
|
Maven引入代码: |
<dependency>
<groupId>org.xerial.snappy</groupId>
<artifactId>snappy-java</artifactId>
<version>1.0.3.1</version>
</dependency>
|
Gradle引入代码: |
org.xerial.snappy:snappy-java:1.0.3.1
|
下载Jar包: |
|
POM文件内容: |
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.xerial.snappy</groupId>
<artifactId>snappy-java</artifactId>
<version>1.0.3.1</version>
<name>Snappy for Java</name>
<description>snappy-java: A fast compression/decompression library</description>
<packaging>bundle</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>org/xerial/snappy/VERSION</include>
</includes>
</resource>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>org/xerial/snappy/*.bytecode</include>
<include>org/xerial/snappy/native/**</include>
</includes>
</resource>
<resource>
<directory>${basedir}</directory>
<targetPath>META-INF/maven/${project.groupId}/${project.artifactId}</targetPath>
<includes>
<include>LICENSE*</include>
</includes>
</resource>
</resources>
<testResources>
<testResource>
<directory>src/test/java</directory>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</testResource>
<testResource>
<directory>src/test/resources</directory>
</testResource>
</testResources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.5</version>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.1</version>
<configuration>
<!-- do not run site-deploy goal, included in the default settings -->
<goals>deploy</goals>
<connectionUrl>scm:hg:https://snappy-java.googlecode.com/hg/</connectionUrl>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.7</version>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>verify</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
<configuration>
<excludeResources>true</excludeResources>
</configuration>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.3.4</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
<Bundle-Name>${pproject.name}</Bundle-Name>
<Bundle-Version>${project.version}</Bundle-Version>
<Bundle-Activator>org.xerial.snappy.SnappyBundleActivator</Bundle-Activator>
<Export-Package>org.xerial.snappy</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh-external</artifactId>
<version>1.0-beta-7</version>
</extension>
</extensions>
</build>
<scm>
<connection>scm:hg:https://snappy-java.googlecode.com/hg/</connection>
<developerConnection>scm:hg:default</developerConnection>
<url>scm:hg:https://snappy-java.googlecode.com/hg/</url>
</scm>
<distributionManagement>
<!-- for development releases -->
<site>
<id>xerial.scp</id>
<url>scpexe://www.xerial.org/home/web/maven.xerial.org/repository/site</url>
</site>
<repository>
<id>xerial.scp</id>
<name>Xerial Maven Repository</name>
<url>scpexe://www.xerial.org/home/web/maven.xerial.org/repository/artifact</url>
</repository>
<snapshotRepository>
<id>xerial.scp</id>
<name>Xerial Maven Snapshot Repository</name>
<url>scpexe://www.xerial.org/home/web/maven.xerial.org/repository/snapshot</url>
<uniqueVersion>false</uniqueVersion>
</snapshotRepository>
</distributionManagement>
<profiles>
<!-- for directly sending artifacts to sourceforge.net repository -->
<profile>
<id>sourceforge</id>
<distributionManagement>
<repository>
<id>xerial.sourceforge</id>
<name>Xerial maven repository at sourceforge.jp</name>
<url>scpexe://shell.sourceforge.jp/home/groups/x/xe/xerial/htdocs/maven/release</url>
</repository>
</distributionManagement>
</profile>
<!-- for local updates -->
<profile>
<id>xerial.local</id>
<distributionManagement>
<repository>
<id>xerial.local</id>
<name>Xerial Maven Repository</name>
<url>file:///home/web/maven.xerial.org/repository/artifact</url>
</repository>
<snapshotRepository>
<id>xerial.local</id>
<name>Xerial Maven Snapshot Repository</name>
<url>file:///home/web/maven.xerial.org/repository/snapshot</url>
<uniqueVersion>false</uniqueVersion>
</snapshotRepository>
<site>
<id>xerial.local</id>
<url>file:///home/web/maven.xerial.org/repository/site</url>
</site>
</distributionManagement>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<type>jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-classworlds</artifactId>
<version>2.4</version>
<type>jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>core</artifactId>
<version>4.3.0</version>
<type>jar</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.xerial</groupId>
<artifactId>xerial-core</artifactId>
<version>1.0.21</version>
<type>jar</type>
<scope>test</scope>
</dependency>
</dependencies>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
META-INF/maven/org.xerial.snappy/snappy-java/LICENSE
META-INF/maven/org.xerial.snappy/snappy-java/pom.properties
META-INF/maven/org.xerial.snappy/snappy-java/pom.xml
org.xerial.snappy.OSInfo.class
org.xerial.snappy.Snappy.class
org.xerial.snappy.SnappyBundleActivator.class
org.xerial.snappy.SnappyCodec.class
org.xerial.snappy.SnappyError.class
org.xerial.snappy.SnappyErrorCode.class
org.xerial.snappy.SnappyException.class
org.xerial.snappy.SnappyInputStream.class
org.xerial.snappy.SnappyLoader.class
org.xerial.snappy.SnappyNative.class
org.xerial.snappy.SnappyNativeAPI.class
org/xerial/snappy/SnappyNativeLoader.bytecode
org.xerial.snappy.SnappyOutputStream.class
org/xerial/snappy/VERSION
org/xerial/snappy/native/Linux/amd64/libsnappyjava.so
org/xerial/snappy/native/Linux/i386/libsnappyjava.so
org/xerial/snappy/native/Mac/i386/libsnappyjava.jnilib
org/xerial/snappy/native/Mac/x86_64/libsnappyjava.jnilib
org/xerial/snappy/native/README
org/xerial/snappy/native/Windows/amd64/snappyjava.dll
org/xerial/snappy/native/Windows/x86/snappyjava.dll
|
依赖Jar: |
junit-4.8.2.jar
/junit/junit/4.8.2
查看junit所有版本文件
plexus-classworlds-2.4.jar
/org.codehaus.plexus/plexus-classworlds/2.4
查看plexus-classworlds所有版本文件
core-4.3.0.jar
/org.osgi/core/4.3.0
查看core所有版本文件
xerial-core-1.0.21.jar
/org.xerial/xerial-core/1.0.21
查看xerial-core所有版本文件
|