Download jgrapht-ext-1.0.1.jar file

Introduction

You can download jgrapht-ext-1.0.1.jar in this page.

License

GNU Lesser General Public License Version 2.1, February 1999

Type List

jgrapht-ext-1.0.1.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.jgrapht/jgrapht-ext/pom.properties
META-INF/maven/org.jgrapht/jgrapht-ext/pom.xml
graphml.xsd
org.jgrapht.ext.CSVBaseListener.class
org.jgrapht.ext.CSVExporter.class
org.jgrapht.ext.CSVFormat.class
org.jgrapht.ext.CSVImporter.class
org.jgrapht.ext.CSVLexer.class
org.jgrapht.ext.CSVListener.class
org.jgrapht.ext.CSVParser.class
org.jgrapht.ext.ComponentAttributeProvider.class
org.jgrapht.ext.ComponentNameProvider.class
org.jgrapht.ext.ComponentUpdater.class
org.jgrapht.ext.DIMACSExporter.class
org.jgrapht.ext.DIMACSFormat.class
org.jgrapht.ext.DIMACSImporter.class
org.jgrapht.ext.DOTExporter.class
org.jgrapht.ext.DOTImporter.class
org.jgrapht.ext.DOTUtils.class
org.jgrapht.ext.DSVUtils.class
org.jgrapht.ext.EdgeNameProvider.class
org.jgrapht.ext.EdgeProvider.class
org.jgrapht.ext.ExportException.class
org.jgrapht.ext.GmlBaseListener.class
org.jgrapht.ext.GmlExporter.class
org.jgrapht.ext.GmlImporter.class
org.jgrapht.ext.GmlLexer.class
org.jgrapht.ext.GmlListener.class
org.jgrapht.ext.GmlParser.class
org.jgrapht.ext.GraphExporter.class
org.jgrapht.ext.GraphImporter.class
org.jgrapht.ext.GraphMLExporter.class
org.jgrapht.ext.GraphMLImporter.class
org.jgrapht.ext.ImportException.class
org.jgrapht.ext.IntegerComponentNameProvider.class
org.jgrapht.ext.IntegerEdgeNameProvider.class
org.jgrapht.ext.IntegerNameProvider.class
org.jgrapht.ext.JGraphModelAdapter.class
org.jgrapht.ext.JGraphXAdapter.class
org.jgrapht.ext.MatrixExporter.class
org.jgrapht.ext.StringComponentNameProvider.class
org.jgrapht.ext.StringEdgeNameProvider.class
org.jgrapht.ext.StringNameProvider.class
org.jgrapht.ext.VertexNameProvider.class
org.jgrapht.ext.VertexProvider.class
org.jgrapht.ext.VertexUpdater.class
org.jgrapht.ext.VisioExporter.class
xlink.xsd

Pom

jgrapht-ext-1.0.1.pom file content.

<?xml version="1.0"?>
<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>
	<parent>
		<groupId>org.jgrapht</groupId>
		<artifactId>jgrapht</artifactId>
		<version>1.0.1</version>
	</parent>
	<artifactId>jgrapht-ext</artifactId>
	<name>JGraphT - Ext</name>
	<licenses>
		<license>
			<name>GNU Lesser General Public License Version 2.1, February 1999</name>
			<url>http://jgrapht.sourceforge.net/LGPL.html</url>
			<distribution>repo</distribution>
		</license>
		<license>
			<name>Eclipse Public License (EPL) 1.0</name>
			<url>http://www.eclipse.org/legal/epl-v10.html</url>
			<distribution>repo</distribution>
		</license>
	</licenses>
	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-shade-plugin</artifactId>
				<version>1.5</version>
				<executions>
					<execution>
						<phase>package</phase>
						<goals>
							<goal>shade</goal>
						</goals>
					</execution>
				</executions>
				<configuration>
					<transformers>
						<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
							<manifestEntries>
								<!-- Use unique OSGi bundle symbolic name for uber artifact. Otherwise 
									e.g. jgrapht-ext-1.0.0.jar and jgrapht-ext-1.0.0-uber.jar could not be deployed 
									to the same P2 repository. -->
								<Bundle-SymbolicName>org.jgrapht.ext.uber</Bundle-SymbolicName>
							</manifestEntries>
						</transformer>
					</transformers>
					<shadedArtifactAttached>true</shadedArtifactAttached>
					<shadedClassifierName>uber</shadedClassifierName>
					<!-- <finalName>${project.artifactId}-${project.version}-uber</finalName> -->
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jar-plugin</artifactId>
				<version>2.4</version>
				<configuration>
					<archive>
						<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
					</archive>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-resources-plugin</artifactId>
				<version>3.0.1</version>
			</plugin>
			<plugin>
				<groupId>org.apache.felix</groupId>
				<artifactId>maven-bundle-plugin</artifactId>
				<version>3.0.1</version>
				<executions>
					<execution>
						<phase>process-classes</phase>
						<goals>
							<goal>manifest</goal>
						</goals>
					</execution>
				</executions>
				<configuration>
					<instructions>
						<Bundle-Vendor>Barak Naveh, John V. Sichi and contributors (see
							http://sourceforge.net/projects/jgrapht/)</Bundle-Vendor>
						<!-- JGraph (source code at https://github.com/jgraph/legacy-jgraph5.git) 
							is legacy and it does not have a Maven based build. Therefore it is unlikely 
							that JGraph will be osgified. To be able to nevertheless use the jgraph-ext 
							bundle in an OSGi context, we tell the maven bundle plugin to mark the JGraph 
							dependencies as optional. Consequences: When using jgrapht-ext in an OSGi 
							context you can not use one of it's classes which require packages from JGraph 
							(org.jgraph.*). Otherwise you will get ClassNotFoundExceptions. -->
						<Import-Package>org.jgraph.*;resolution:=optional,*</Import-Package>
					</instructions>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.antlr</groupId>
				<artifactId>antlr4-maven-plugin</artifactId>
				<version>4.5</version>
				<executions>
					<execution>
						<id>antlr</id>
						<goals>
							<goal>antlr4</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<!-- Make antlr4 generated classes package protected, until antlr4 provides 
					official support for this. See https://github.com/antlr/antlr4/issues/972. 
					Important: this plugin must be AFTER the antlr4-maven-plugin as they are 
					bound to the same phase (generate-sources). -->
				<groupId>com.google.code.maven-replacer-plugin</groupId>
				<artifactId>replacer</artifactId>
				<version>1.5.3</version>
				<executions>
					<execution>
						<phase>generate-sources</phase>
						<goals>
							<goal>replace</goal>
						</goals>
					</execution>
				</executions>
				<configuration>
					<basedir>${project.basedir}</basedir>
					<includes>
						<include>target/generated-sources/antlr4/**/*.java</include>
					</includes>
					<variableTokenValueMap xml:space="preserve">
						<![CDATA[public class=class,public interface=interface]]>
					</variableTokenValueMap>
				</configuration>
			</plugin>
		</plugins>
		<pluginManagement>
			<plugins>
				<!--This plugin's configuration is used to store Eclipse m2e settings 
					only. It has no influence on the Maven build itself. -->
				<plugin>
					<groupId>org.eclipse.m2e</groupId>
					<artifactId>lifecycle-mapping</artifactId>
					<version>1.0.0</version>
					<configuration>
						<lifecycleMappingMetadata>
							<pluginExecutions>
								<pluginExecution>
									<pluginExecutionFilter>
										<groupId>
											com.google.code.maven-replacer-plugin
										</groupId>
										<artifactId>
											replacer
										</artifactId>
										<versionRange>
											[1.5.3,)
										</versionRange>
										<goals>
											<goal>replace</goal>
										</goals>
									</pluginExecutionFilter>
									<action>
										<execute>
											<runOnIncremental>false</runOnIncremental>
										</execute>
									</action>
								</pluginExecution>
							</pluginExecutions>
						</lifecycleMappingMetadata>
					</configuration>
				</plugin>
			</plugins>
		</pluginManagement>
	</build>
	<dependencies>
		<dependency>
			<groupId>${project.groupId}</groupId>
			<artifactId>jgrapht-core</artifactId>
		</dependency>
		<dependency>
			<groupId>org.tinyjee.jgraphx</groupId>
			<artifactId>jgraphx</artifactId>
			<version>2.0.0.1</version>
		</dependency>
		<dependency>
			<groupId>jgraph</groupId>
			<artifactId>jgraph</artifactId>
			<version>5.13.0.0</version>
		</dependency>
		<dependency>
			<groupId>xmlunit</groupId>
			<artifactId>xmlunit</artifactId>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
		</dependency>
		<dependency>
			<groupId>org.antlr</groupId>
			<artifactId>antlr4-runtime</artifactId>
			<version>4.5.3</version>
		</dependency>
	</dependencies>
</project>

POM Entry

<dependency>
   <groupId>org.jgrapht</groupId>
   <artifactId>jgrapht-ext</artifactId>
   <version>1.0.1</version>
</dependency>

Download

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



Download jgrapht-ext-1.0.1.jar file




PreviousNext

Related