You can download jcolorbrewer-5.2.jar in this page.
GNU LGPL v2
jcolorbrewer-5.2.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/org.biojava/jcolorbrewer/pom.properties META-INF/maven/org.biojava/jcolorbrewer/pom.xml demo.GetColorGradient.class demo.ShowColorChooserDialog.class org.jcolorbrewer.ColorBrewer.class org.jcolorbrewer.ui.ColorPaletteChooserDialog.class org.jcolorbrewer.ui.ColorPanelSelectionModel.class org.jcolorbrewer.ui.DivergingColorPalettePanel.class org.jcolorbrewer.ui.PaletteIcon.class org.jcolorbrewer.ui.QualitativeColorPalettePanel.class org.jcolorbrewer.ui.SequentialColorPalettePanel.class
jcolorbrewer-5.2.pom file content.
<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> <!-- for releasing to Maven Central / OSS Sonatype --> <!-- this is how to release: mvn clean install source:jar javadoc:jar deploy --> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>9</version> </parent> <groupId>org.biojava</groupId> <artifactId>jcolorbrewer</artifactId> <version>5.2</version> <packaging>jar</packaging> <name>ColorBrewer</name> <description>Create color blind friendly color palettes in Java.</description> <licenses> <license> <name>GNU LGPL v2</name> <url>http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt</url> <distribution>repo</distribution> </license> </licenses> <properties> <jdk.version>1.6</jdk.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.targetEncoding>UTF-8</project.build.targetEncoding> <maxmem>512M</maxmem> </properties> <scm> <developerConnection>https://github.com/rcsb/colorbrewer</developerConnection> <connection>git://github.com/rcsb/colorbrewer.git</connection> <url>https://github.com/rcsb/colorbrewer</url> </scm> <issueManagement> <url>https://github.com/rcsb/colorbrewer/issues</url> <system>Github</system> </issueManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.4</version> </plugin> <!-- for deployment on OSS Sonatype --> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.1</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> </plugin> <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> </plugins> <pluginManagement> <plugins> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>2.5</version> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>${jdk.version}</source> <target>${jdk.version}</target> </configuration> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <version>2.8</version> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>2.5</version> </plugin> <plugin> <artifactId>maven-scm-plugin</artifactId> <version>1.9</version> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>2.3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.1</version> <configuration> <maxmemory>256m</maxmemory> <footer><script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script><script type="text/javascript">_uacct = "UA-1326640-1";urchinTracker();</script></footer> </configuration> </plugin> </plugins> </pluginManagement> <extensions> <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-ssh</artifactId> <version>2.6</version> </extension> </extensions> </build> <reporting> <plugins> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.1</version> <configuration> <aggregate>true</aggregate> <breakiterator>true</breakiterator> <quiet>true</quiet> <source>1.5</source> <verbose>false</verbose> <linksource>true</linksource> <detectlinks>true</detectlinks> </configuration> </plugin> </plugins> </reporting> <profiles> <!-- Note: before you can use this build profile you need to set up an environment that contains correctly signed keys. Configure the keystore properties and the profile in ~/.m2/settings.xml --> <profile> <id>codesigning</id> <activation> <activeByDefault>false</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jarsigner-plugin</artifactId> <version>1.2</version> <executions> <execution> <id>sign</id> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <verbose>true</verbose> <certs>true</certs> <storetype>${keystore.type}</storetype> <keystore>${keystore.path}</keystore> <alias>${keystore.alias}</alias> <storepass>${keystore.store.password}</storepass> <keypass>${keystore.key.password}</keypass> <signedjar>${project.build.directory}/${project.build.finalName}.jar</signedjar> <verify>true</verify> <verbose>true</verbose> <goal>sign</goal> <arguments> <argument>-tsa</argument> <argument>https://timestamp.geotrust.com/tsa</argument> </arguments> </configuration> </plugin> </plugins> </build> </profile> <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.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <developers> <developer> <id>andreas</id> <name>Andreas Prlic</name> <email>andreas.prlic@gmail.com</email> <url>http://www.rcsb.org</url> <organization>University of California, San Diego</organization> <organizationUrl>http://www.rcsb.org</organizationUrl> <timezone>-9</timezone> <properties> <picUrl>http://tinyurl.com/mymsfga</picUrl> </properties> </developer> <developer> <name>Peter W. Rose</name> <email>peter.rose@rcsb.com</email> <url>http://www.rcsb.org</url> <organization>University of California, San Diego</organization> <organizationUrl>http://www.rcsb.org</organizationUrl> <timezone>-9</timezone> </developer> </developers> </project>
<dependency> <groupId>org.biojava</groupId> <artifactId>jcolorbrewer</artifactId> <version>5.2</version> </dependency>
If you think the following jcolorbrewer-5.2.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download jcolorbrewer-5.2.jar file