组织ID: |
com.levigo.jbig2 |
项目ID: |
levigo-jbig2-imageio |
版本: |
2.0 |
最后修改时间: |
2018-07-24 07:47:32 |
包类型: |
jar |
标题: |
jbig2-imageio |
描述: |
Java Image I/O plugin for reading JBIG2-compressed image data |
相关URL: |
https://github.com/levigo/jbig2-imageio |
大小: |
136.12KB |
|
Maven引入代码: |
<dependency>
<groupId>com.levigo.jbig2</groupId>
<artifactId>levigo-jbig2-imageio</artifactId>
<version>2.0</version>
</dependency>
|
Gradle引入代码: |
com.levigo.jbig2:levigo-jbig2-imageio:2.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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.levigo.jbig2</groupId>
<artifactId>levigo-jbig2-imageio</artifactId>
<name>jbig2-imageio</name>
<version>2.0</version>
<description>Java Image I/O plugin for reading JBIG2-compressed image data</description>
<url>https://github.com/levigo/jbig2-imageio</url>
<licenses>
<license>
<name>GPL v3</name>
<url>http://www.gnu.org/licenses/gpl.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Matth盲us Mayer</name>
<email>m.mayer@levigo.de</email>
</developer>
</developers>
<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshot Repository</name>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-staging</id>
<name>Sonatype Nexus Release Staging Repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<scm>
<connection>scm:git:ssh://github.com/levigo/jbig2-imageio.git</connection>
<developerConnection>scm:git:ssh://git@github.com/levigo/jbig2-imageio.git</developerConnection>
<url>https://github.com/levigo/jbig2-imageio</url>
<tag>levigo-jbig2-imageio-2.0</tag>
</scm>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<debug>false</debug>
<optimize>true</optimize>
</configuration>
</plugin>
<plugin>
<inherited>false</inherited>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<version>1.5.0</version>
<configuration>
<header>${basedir}/LICENSE-HEADER.txt</header>
<failIfMissing>true</failIfMissing>
<aggregate>true</aggregate>
<useDefaultExcludes>false</useDefaultExcludes>
<excludes>
<exclude>**/.classpath</exclude>
<exclude>**/.project</exclude>
<exclude>**/.settings/**</exclude>
<exclude>**/target/**</exclude>
<exclude>**/pom.xml</exclude>
<exclude>**/.idea/**</exclude>
<exclude>**/atlassian-ide-plugin.xml</exclude>
</excludes>
<includes>
<include>**/*.xml</include>
<include>**/src/**/*.java</include>
<include>**/src/**/*.properties</include>
</includes>
</configuration>
<executions>
<execution>
<id>check-headers</id>
<phase>verify</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.4.2</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<!-- Keep changes in the local repo, push will be done afterwards -->
<pushChanges>false</pushChanges>
<localCheckout>true</localCheckout>
<!-- Use a better name for the tag -->
<tagNameFormat>${project.artifactId}-${project.version}</tagNameFormat>
</configuration>
<dependencies>
<dependency>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-provider-gitexe</artifactId>
<version>1.9</version>
</dependency>
</dependencies>
</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.1</version>
<configuration>
<homedir>${levigo-jbig2-imageio.gpg.homedir}</homedir>
<keyname>${levigo-jbig2-imageio.gpg.keyname}</keyname>
<passphrase>${levigo-jbig2-imageio.gpg.passphrase}</passphrase>
</configuration>
<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.levigo.jbig2.Bitmap.class
com.levigo.jbig2.decoder.arithmetic.ArithmeticDecoder.class
com.levigo.jbig2.decoder.arithmetic.ArithmeticIntegerDecoder.class
com.levigo.jbig2.decoder.arithmetic.CX.class
com.levigo.jbig2.decoder.huffman.EncodedTable.class
com.levigo.jbig2.decoder.huffman.FixedSizeTable.class
com.levigo.jbig2.decoder.huffman.HuffmanTable$Code.class
com.levigo.jbig2.decoder.huffman.HuffmanTable.class
com.levigo.jbig2.decoder.huffman.InternalNode.class
com.levigo.jbig2.decoder.huffman.Node.class
com.levigo.jbig2.decoder.huffman.OutOfBandNode.class
com.levigo.jbig2.decoder.huffman.StandardTables$1.class
com.levigo.jbig2.decoder.huffman.StandardTables$StandardTable.class
com.levigo.jbig2.decoder.huffman.StandardTables.class
com.levigo.jbig2.decoder.huffman.ValueNode.class
com.levigo.jbig2.decoder.mmr.MMRConstants.class
com.levigo.jbig2.decoder.mmr.MMRDecompressor$Code.class
com.levigo.jbig2.decoder.mmr.MMRDecompressor$RunData.class
com.levigo.jbig2.decoder.mmr.MMRDecompressor.class
com.levigo.jbig2.Dictionary.class
com.levigo.jbig2.err.IntegerMaxValueException.class
com.levigo.jbig2.err.InvalidHeaderValueException.class
com.levigo.jbig2.err.JBIG2Exception.class
com.levigo.jbig2.image.Bitmaps$1.class
com.levigo.jbig2.image.Bitmaps.class
com.levigo.jbig2.image.BitmapScanline.class
com.levigo.jbig2.image.Filter$1.class
com.levigo.jbig2.image.Filter$Bessel.class
com.levigo.jbig2.image.Filter$Blackman.class
com.levigo.jbig2.image.Filter$Box.class
com.levigo.jbig2.image.Filter$Catrom.class
com.levigo.jbig2.image.Filter$Cubic.class
com.levigo.jbig2.image.Filter$Gaussian.class
com.levigo.jbig2.image.Filter$Hamming.class
com.levigo.jbig2.image.Filter$Hanning.class
com.levigo.jbig2.image.Filter$Hermite.class
com.levigo.jbig2.image.Filter$Lanczos.class
com.levigo.jbig2.image.Filter$Mitchell.class
com.levigo.jbig2.image.Filter$Point.class
com.levigo.jbig2.image.Filter$Quadratic.class
com.levigo.jbig2.image.Filter$Sinc.class
com.levigo.jbig2.image.Filter$Triangle.class
com.levigo.jbig2.image.Filter.class
com.levigo.jbig2.image.FilterType.class
com.levigo.jbig2.image.ParameterizedFilter.class
com.levigo.jbig2.image.Resizer$Mapping.class
com.levigo.jbig2.image.Resizer$Order.class
com.levigo.jbig2.image.Resizer.class
com.levigo.jbig2.image.Scanline$ByteBGRScanline.class
com.levigo.jbig2.image.Scanline$ByteBiLevelPackedScanline.class
com.levigo.jbig2.image.Scanline$GenericRasterScanline.class
com.levigo.jbig2.image.Scanline$IntegerSinglePixelPackedScanline.class
com.levigo.jbig2.image.Scanline$ScanlineFilter.class
com.levigo.jbig2.image.Scanline.class
com.levigo.jbig2.image.Weighttab.class
com.levigo.jbig2.io.DefaultInputStreamFactory.class
com.levigo.jbig2.io.InputStreamFactory.class
com.levigo.jbig2.io.SubInputStream.class
com.levigo.jbig2.JBIG2Document.class
com.levigo.jbig2.JBIG2Globals.class
com.levigo.jbig2.JBIG2ImageMetadata.class
com.levigo.jbig2.JBIG2ImageMetadataFormat.class
com.levigo.jbig2.JBIG2ImageReader.class
com.levigo.jbig2.JBIG2ImageReaderSpi.class
com.levigo.jbig2.JBIG2Page.class
com.levigo.jbig2.JBIG2ReadParam.class
com.levigo.jbig2.Region.class
com.levigo.jbig2.SegmentData.class
com.levigo.jbig2.SegmentHeader.class
com.levigo.jbig2.segments.EndOfStripe.class
com.levigo.jbig2.segments.GenericRefinementRegion$1.class
com.levigo.jbig2.segments.GenericRefinementRegion$Template.class
com.levigo.jbig2.segments.GenericRefinementRegion$Template0.class
com.levigo.jbig2.segments.GenericRefinementRegion$Template1.class
com.levigo.jbig2.segments.GenericRefinementRegion.class
com.levigo.jbig2.segments.GenericRegion.class
com.levigo.jbig2.segments.HalftoneRegion.class
com.levigo.jbig2.segments.PageInformation.class
com.levigo.jbig2.segments.PatternDictionary.class
com.levigo.jbig2.segments.Profiles.class
com.levigo.jbig2.segments.RegionSegmentInformation.class
com.levigo.jbig2.segments.SymbolDictionary.class
com.levigo.jbig2.segments.Table.class
com.levigo.jbig2.segments.TextRegion.class
com.levigo.jbig2.TestImage$ImageComponent.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
junit-4.10.jar
/junit/junit/4.10
查看junit所有版本文件
|