Download jxmapviewer2-1.3.1.jar file

Introduction

You can download jxmapviewer2-1.3.1.jar in this page.

License

GNU Lesser General Public License

Type List

jxmapviewer2-1.3.1.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.jdesktop.swingx/jxmapviewer2/pom.properties
META-INF/maven/org.jdesktop.swingx/jxmapviewer2/pom.xml
org.jdesktop.beans.AbstractBean.class
org.jdesktop.beans.AbstractSerializableBean.class
org.jdesktop.swingx.JXMapKit.class
org.jdesktop.swingx.JXMapViewer.class
org.jdesktop.swingx.OSMTileFactoryInfo.class
org.jdesktop.swingx.VirtualEarthTileFactoryInfo.class
org.jdesktop.swingx.WMSTileFactoryInfo.class
org.jdesktop.swingx.input.CenterMapListener.class
org.jdesktop.swingx.input.MapClickListener.class
org.jdesktop.swingx.input.PanKeyListener.class
org.jdesktop.swingx.input.PanMouseInputListener.class
org.jdesktop.swingx.input.ZoomMouseWheelListenerCenter.class
org.jdesktop.swingx.input.ZoomMouseWheelListenerCursor.class
org.jdesktop.swingx.mapviewer.AbstractTileFactory.class
org.jdesktop.swingx.mapviewer.DefaultTileFactory.class
org.jdesktop.swingx.mapviewer.DefaultWaypoint.class
org.jdesktop.swingx.mapviewer.DefaultWaypointRenderer.class
org.jdesktop.swingx.mapviewer.GeoBounds.class
org.jdesktop.swingx.mapviewer.GeoPosition.class
org.jdesktop.swingx.mapviewer.LocalResponseCache.class
org.jdesktop.swingx.mapviewer.Tile.class
org.jdesktop.swingx.mapviewer.TileCache.class
org.jdesktop.swingx.mapviewer.TileFactory.class
org.jdesktop.swingx.mapviewer.TileFactoryInfo.class
org.jdesktop.swingx.mapviewer.TileListener.class
org.jdesktop.swingx.mapviewer.Waypoint.class
org.jdesktop.swingx.mapviewer.WaypointPainter.class
org.jdesktop.swingx.mapviewer.WaypointRenderer.class
org.jdesktop.swingx.mapviewer.bmng.CylindricalProjectionTileFactory.class
org.jdesktop.swingx.mapviewer.bmng.SLMapServerInfo.class
org.jdesktop.swingx.mapviewer.empty.EmptyTileFactory.class
org.jdesktop.swingx.mapviewer.esri.ESRITileFactory.class
org.jdesktop.swingx.mapviewer.util.GeoUtil.class
org.jdesktop.swingx.mapviewer.util.MercatorUtils.class
org.jdesktop.swingx.mapviewer.wms.WMSService.class
org.jdesktop.swingx.mapviewer.wms.WMSTileFactory.class
org.jdesktop.swingx.painter.AbstractPainter.class
org.jdesktop.swingx.painter.CompoundPainter.class
org.jdesktop.swingx.painter.Painter.class
org.jdesktop.swingx.util.GraphicsUtilities.class
org.jdesktop.swingx.util.ShapeUtils.class
org/jdesktop/swingx/JXMapKit.form
org/jdesktop/swingx/mapviewer/resources/loading.png
org/jdesktop/swingx/mapviewer/resources/minus.png
org/jdesktop/swingx/mapviewer/resources/plus.png
org/jdesktop/swingx/mapviewer/resources/standard_waypoint.png

Pom

jxmapviewer2-1.3.1.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>
  <groupId>org.jdesktop.swingx</groupId>
  <artifactId>jxmapviewer2</artifactId>
  <version>1.3.1</version>
  <name>jxmapviewer2</name>
  <packaging>jar</packaging>
  <description>This project is based on the JXMapViewer component of SwingX-WS.</description>
  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>
  <parent>
  	<groupId>org.sonatype.oss</groupId>
  	<artifactId>oss-parent</artifactId>
  	<version>7</version>
  </parent>
  <build>
    <sourceDirectory>src</sourceDirectory>
    <resources>
      <resource>
        <directory>src</directory>
        <excludes>
          <exclude>**/*.java</exclude>
        </excludes>
      </resource>
    </resources>
    
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>2.5.1</version>
        <configuration>
          <source>1.6</source>
          <target>1.6</target>
        </configuration>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-source-plugin</artifactId>
        <version>2.2.1</version>
        <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</version>
        <executions>
          <execution>
            <id>attach-javadocs</id>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
	    </executions>
      </plugin>      
    </plugins>    
  </build>
  
  <url>https://github.com/msteiger/jxmapviewer2</url>
  <dependencies>
  	<dependency>
  		<groupId>commons-logging</groupId>
  		<artifactId>commons-logging</artifactId>
  		<version>1.1.1</version>
  	</dependency>
  </dependencies>
  <scm>
  	<connection>scm:git:git@github.com:msteiger/jxmapviewer2.git</connection>
  	<developerConnection>scm:git:git@github.com:msteiger/jxmapviewer2.git</developerConnection>
	<url>git@github.com:msteiger/jxmapviewer2.git</url>
  </scm>
  <issueManagement>
  	<url>https://github.com/msteiger/jxmapviewer2/issues</url>
  </issueManagement>
  <licenses>
 	<license>
		<name>GNU Lesser General Public License</name>
		<url>http://www.gnu.org/licenses/lgpl-3.0-standalone.html</url>
	</license>
  </licenses>  

</project>

POM Entry

<dependency>
   <groupId>org.jdesktop.swingx</groupId>
   <artifactId>jxmapviewer2</artifactId>
   <version>1.3.1</version>
</dependency>

Download

If you think the following jxmapviewer2-1.3.1.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download jxmapviewer2-1.3.1.jar file




PreviousNext

Related