Apache Sanselan.
Apache Sanselan is a pure-Java image library..
Here is the list of declaration for sanselan. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.apache.sanselan</groupId> <artifactId>sanselan</artifactId> <version>0.97-incubator</version> </dependency>
If you think this Maven repository POM file listing for sanselan is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Apache License.
The sanselan-0.97-incubator has 1 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
JUnit | junit 3.8.2 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 555 |
The following table lists the most popular artifacts which are depending on sanselan-0.97-incubator. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Development | core-image 1.3 Core definitions of images, pixels and connected components. Also contains interfaces for processors for these basic types. Includes loading, saving and displaying images. | 9 |
Development | core-image 1.3.1 Core definitions of images, pixels and connected components. Also contains interfaces for processors for these basic types. Includes loading, saving and displaying images. | 8 |
The following plugins are used in the sanselan-0.97-incubator.jar
The following packages are defined in the sanselan-0.97-incubator.jar
org.apache.sanselan org.apache.sanselan.color org.apache.sanselan.common org.apache.sanselan.common.byteSources org.apache.sanselan.common.mylzw org.apache.sanselan.formats.bmp org.apache.sanselan.formats.bmp.pixelparsers org.apache.sanselan.formats.bmp.writers org.apache.sanselan.formats.gif org.apache.sanselan.formats.ico org.apache.sanselan.formats.jpeg org.apache.sanselan.formats.jpeg.exifRewrite org.apache.sanselan.formats.jpeg.iptc org.apache.sanselan.formats.jpeg.segments org.apache.sanselan.formats.jpeg.xmp org.apache.sanselan.formats.png org.apache.sanselan.formats.png.chunks org.apache.sanselan.formats.png.scanlinefilters org.apache.sanselan.formats.pnm org.apache.sanselan.formats.psd org.apache.sanselan.formats.psd.dataparsers org.apache.sanselan.formats.psd.datareaders org.apache.sanselan.formats.tga org.apache.sanselan.formats.tiff org.apache.sanselan.formats.tiff.constants org.apache.sanselan.formats.tiff.datareaders org.apache.sanselan.formats.tiff.fieldtypes org.apache.sanselan.formats.tiff.photometricinterpreters org.apache.sanselan.formats.tiff.write org.apache.sanselan.formats.transparencyfilters org.apache.sanselan.icc org.apache.sanselan.palette org.apache.sanselan.util
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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> <!-- ====================================================================== --> <!-- P R O J E C T D E S C R I P T I O N --> <!-- ====================================================================== --> <parent> <groupId>org.apache</groupId> <artifactId>apache</artifactId> <version>4</version> </parent> <groupId>org.apache.sanselan</groupId> <artifactId>sanselan</artifactId> <name>Apache Sanselan</name> <version>0.97-incubator</version> <packaging>bundle</packaging> <!-- Keep the description on a single line. Otherwise Maven might generate a corrupted MANIFEST.MF (see http://jira.codehaus.org/browse/MJAR-4) --> <description>Apache Sanselan is a pure-Java image library.</description> <url>http://sanselan.apache.org/</url> <organization> <url>http://cwiki.apache.org/SANSELAN/</url> </organization> <scm> <connection>scm:svn:http://svn.apache.org/repos/asf/incubator/sanselan/tags/sanselan-0.97-incubator</connection> <developerConnection>scm:svn:https://svn.apache.org/repos/asf/incubator/sanselan/tags/sanselan-0.97-incubator</developerConnection> <url>http://svn.apache.org/viewvc/incubator/sanselan/tags/sanselan-0.97-incubator</url> </scm> <issueManagement> <system>Jira</system> <url>http://issues.apache.org/jira/browse/SANSELAN</url> </issueManagement> <inceptionYear>2007</inceptionYear> <prerequisites> <maven>2.0.7</maven> </prerequisites> <build> <plugins> <!-- Use Java 1.4 everywhere --> <plugin> <inherited>true</inherited> <artifactId>maven-compiler-plugin</artifactId> <configuration> <target>1.4</target> <source>1.4</source> </configuration> </plugin> <!-- Add manifest entries for OSGi environments --> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <configuration> <instructions> <Bundle-SymbolicName>${pom.groupId}.${pom.artifactId}</Bundle-SymbolicName> <Export-Package>org.apache.sanselan.*</Export-Package> <Specification-Title>${project.name}</Specification-Title> <Specification-Version>${project.version}</Specification-Version> <Specification-Vendor>${project.organization.name}</Specification-Vendor> <Implementation-Title>${project.name}</Implementation-Title> <Implementation-Version>${project.version}</Implementation-Version> <Implementation-Vendor>${project.organization.name}</Implementation-Vendor> <Implementation-Vendor-Id>org.apache</Implementation-Vendor-Id> </instructions> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.0.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.4.3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.5</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.0.4</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <version>1.3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <configuration> <tagBase>https://svn.apache.org/repos/asf/incubator/sanselan/tags</tagBase> <useReleaseProfile>false</useReleaseProfile> <goals>deploy</goals> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <argLine>-Xmx512m</argLine> </configuration> </plugin> </plugins> <!-- Let's be sure that we use the latest releases of the plugins --> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.0-beta-7</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.0-alpha-4</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>2.2-beta-2</version> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>1.4.0</version> </plugin> </plugins> </pluginManagement> <!-- Include LICENSE and NOTICE in binary distributions --> <resources> <resource> <directory>src/main/resources</directory> </resource> <resource> <directory>.</directory> <targetPath>META-INF</targetPath> <includes> <include>LICENSE</include> <include>NOTICE</include> <include>README.txt</include> </includes> </resource> </resources> </build> <profiles> <profile> <!-- The release profile contains specifal configuration of releases. --> <id>release</id> <build> <plugins> <!-- Sign the release --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>generate-javadocs</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <!-- - Copy LICENSE.txt and NOTICE.txt so that they are included - in the -javadoc jar file for the component. --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>javadoc.resources</id> <phase>generate-sources</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <copy todir="${project.build.directory}/apidocs/META-INF"> <fileset dir="${basedir}"> <include name="LICENSE" /> <include name="NOTICE" /> </fileset> </copy> </tasks> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>create-source-jar</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- The release artifacts --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <configuration> <descriptors> <descriptor>src/assemble/bin.xml</descriptor> <descriptor>src/assemble/src.xml</descriptor> </descriptors> <descriptorRefs> </descriptorRefs> </configuration> <executions> <execution> <id>make-assembly</id> <phase>package</phase> <goals> <goal>attached</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.2</version> <scope>test</scope> </dependency> </dependencies> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> </plugin> </plugins> </reporting> <!-- ====================================================================== --> <!-- M A I L I N G L I S T S --> <!-- ====================================================================== --> <mailingLists> <mailingList> <name>Sanselan Development List</name> <subscribe>sanselan-dev-subscribe at incubator.apache.org</subscribe> <unsubscribe>sanselan-dev-unsubscribe at incubator.apache.org</unsubscribe> <post>sanselan-dev at incubator.apache.org</post> <archive>http://mail-archives.apache.org/mod_mbox/sanselan-dev/</archive> </mailingList> <mailingList> <name>Sanselan Source Control List</name> <subscribe>sanselan-commits-subscribe@apache.org</subscribe> <unsubscribe>sanselan-commits-unsubscribe@apache.org</unsubscribe> <archive>http://mail-archives.apache.org/mod_mbox/sanselan-commits/</archive> </mailingList> </mailingLists> <!-- ====================================================================== --> <!-- P E O P L E --> <!-- ====================================================================== --> </project>