组织ID: |
com.zaxxer |
项目ID: |
SparseBitSet |
版本: |
1.0 |
最后修改时间: |
2018-07-29 16:10:53 |
包类型: |
jar |
标题: |
SparseBitSet |
描述: |
An efficient sparse bitset implementation for Java |
相关URL: |
https://github.com/brettwooldridge/SparseBitSet |
大小: |
23.90KB |
|
Maven引入代码: |
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>SparseBitSet</artifactId>
<version>1.0</version>
</dependency>
|
Gradle引入代码: |
com.zaxxer:SparseBitSet:1.0
|
下载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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.zaxxer</groupId>
<artifactId>SparseBitSet</artifactId>
<version>1.0</version>
<packaging>jar</packaging>
<name>SparseBitSet</name>
<description>An efficient sparse bitset implementation for Java</description>
<url>https://github.com/brettwooldridge/SparseBitSet</url>
<organization>
<name>Zaxxer.com</name>
<url>https://github.com/brettwooldridge/SparseBitSet</url>
</organization>
<scm>
<connection>scm:git:git@github.com:brettwooldridge/SparseBitSet.git</connection>
<developerConnection>scm:git:git@github.com:brettwooldridge/SparseBitSet.git</developerConnection>
<url>git@github.com:brettwooldridge/SparseBitSet.git</url>
</scm>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Brett Wooldridge</name>
<email>brett.wooldridge@gmail.com</email>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<sourceDirectory>src/main/java</sourceDirectory>
<testSourceDirectory>src/test/java</testSourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<configuration>
<attach>true</attach>
</configuration>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<configuration>
<show>public</show>
<attach>true</attach>
</configuration>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
com.zaxxer.sparsebits.SparseBitSet$AbstractStrategy.class
com.zaxxer.sparsebits.SparseBitSet$AndNotStrategy.class
com.zaxxer.sparsebits.SparseBitSet$AndStrategy.class
com.zaxxer.sparsebits.SparseBitSet$Cache.class
com.zaxxer.sparsebits.SparseBitSet$ClearStrategy.class
com.zaxxer.sparsebits.SparseBitSet$CopyStrategy.class
com.zaxxer.sparsebits.SparseBitSet$EqualsStrategy.class
com.zaxxer.sparsebits.SparseBitSet$FlipStrategy.class
com.zaxxer.sparsebits.SparseBitSet$IntersectsStrategy.class
com.zaxxer.sparsebits.SparseBitSet$OrStrategy.class
com.zaxxer.sparsebits.SparseBitSet$SetStrategy.class
com.zaxxer.sparsebits.SparseBitSet$Statistics.class
com.zaxxer.sparsebits.SparseBitSet$UpdateStrategy.class
com.zaxxer.sparsebits.SparseBitSet$XorStrategy.class
com.zaxxer.sparsebits.SparseBitSet.class
META-INF/maven/com.zaxxer/SparseBitSet/pom.xml
META-INF/maven/com.zaxxer/SparseBitSet/pom.properties
|
依赖Jar: |
junit-3.8.1.jar
/junit/junit/3.8.1
查看junit所有版本文件
|