Download externalsortinginjava-0.1.9.jar file

Introduction

You can download externalsortinginjava-0.1.9.jar in this page.

License

Public Domain

Type List

externalsortinginjava-0.1.9.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.google.code.externalsortinginjava/externalsortinginjava/pom.properties
META-INF/maven/com.google.code.externalsortinginjava/externalsortinginjava/pom.xml
com.google.code.externalsorting.BinaryFileBuffer.class
com.google.code.externalsorting.ExternalSort.class
com.google.code.externalsorting.StringSizeEstimator.class

Pom

externalsortinginjava-0.1.9.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/maven-v4_0_0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<groupId>com.google.code.externalsortinginjava</groupId>
	<artifactId>externalsortinginjava</artifactId>
	<packaging>jar</packaging>
	<version>0.1.9</version>
	<name>externalsortinginjava</name>
	<url>http://code.google.com/p/externalsortinginjava/</url>
	<description>Sometimes, you want to sort large file without first loading them into memory. The solution is to use External Sorting. You divide the files into small blocks, sort each block in RAM, and then merge the result.

Many database engines and the Unix sort command support external sorting. But what if you want to avoid a database? Or what if you want to sort in a non-lexicographic order? Or maybe you just want a simple external sorting example?

When we could not find such a simple program, we wrote one.  </description>
	<properties>
           <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
 	   <java.target.version>1.6</java.target.version>
	</properties>
	<issueManagement>
		<system>Google Code Issue Tracking</system>
		<url>http://code.google.com/p/externalsortinginjava/issues/list</url>
	</issueManagement>
   <parent>
    <groupId>org.sonatype.oss</groupId>
    <artifactId>oss-parent</artifactId>
    <version>5</version>
  </parent>
	<licenses>
		<license>
			<name>Public Domain</name>
			<url>http://creativecommons.org/licenses/publicdomain</url>
			<distribution>repo</distribution>
			<comments>This code is in the public domain. You can take it, modify it, and use it in your commercial projects without attribution. We encourage you, however, to acknowledge this package whenever possible and to contribute your bug fixes and reports. </comments>
		</license>
	</licenses>
	<dependencyManagement>
		<dependencies>
			<dependency>
				<groupId>junit</groupId>
				<artifactId>junit</artifactId>
				<version>4.11</version>
			</dependency>
		</dependencies>
	</dependencyManagement>
<!--	<distributionManagement>
		<repository>
			<id>externalsortinginjava.googlecode.com</id>
			<url>svn:https://externalsortinginjava.googlecode.com/svn/m2/releases</url>
		</repository>
		<snapshotRepository>
			<id>externalsortinginjava.googlecode.com</id>
			<url>svn:https://externalsortinginjava.googlecode.com/svn/m2/snapshots</url>
		</snapshotRepository>
	</distributionManagement>-->
	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<scope>test</scope>
		</dependency>
	</dependencies>
	<build>
		<plugins>
<!--			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-deploy-plugin</artifactId>
				<version>2.7</version>
				<dependencies>
					<dependency>
						<groupId>com.google.code.maven-svn-wagon</groupId>
						<artifactId>maven-svn-wagon</artifactId>
						<version>1.4</version>
					</dependency>
				</dependencies>
			</plugin>-->
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>3.1</version>
				<configuration>
					<source>${java.target.version}</source>
					<target>${java.target.version}</target>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jar-plugin</artifactId>
				<version>2.4</version>
				<configuration>
					<archive>
						<manifest>
							<addClasspath>true</addClasspath>
							<mainClass>com.google.code.externalsorting.ExternalSort</mainClass>
						</manifest>
					</archive>
				</configuration>
			</plugin>
			<plugin>
				<artifactId>maven-release-plugin</artifactId>
				<version>2.4</version>
				<configuration>
					<goals>deploy</goals>
				</configuration>
			</plugin>
			
			
			
			
			
			
			
	   <plugin>
			<groupId>org.apache.felix</groupId>
			<artifactId>maven-bundle-plugin</artifactId>
			<version>2.3.7</version>
			<extensions>true</extensions>
			<configuration>
				<instructions>
					<Export-Package>com.googlecode.javaewah.*</Export-Package>
					<Import-Package>*</Import-Package>
				</instructions>
			</configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-gpg-plugin</artifactId>
        <version>1.4</version>
        <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>
			<version>2.8</version>

			<executions>
				<execution>
					<id>attach-javadocs</id>
					<goals>
						<goal>jar</goal>
					</goals>
				</execution>
			</executions>
		</plugin>
		<plugin>
			<groupId>org.apache.maven.plugins</groupId>
			<artifactId>maven-source-plugin</artifactId>
			<version>2.1.2</version>
			<executions>
				<execution>
					<id>attach-sources</id>
					<goals>
						<goal>jar</goal>
					</goals>
				</execution>
			</executions>
		</plugin>

			
			
			
			
		</plugins>

	</build>
	<scm>
		<url>http://code.google.com/p/externalsortinginjava/source/browse/tags/externalsortinginjava-0.1.9</url>
		<connection>scm:svn:http://externalsortinginjava.googlecode.com/svn/tags/externalsortinginjava-0.1.9</connection>
		<developerConnection>scm:svn:https://externalsortinginjava.googlecode.com/svn/tags/externalsortinginjava-0.1.9</developerConnection>
	</scm>
</project>

POM Entry

<dependency>
   <groupId>com.google.code.externalsortinginjava</groupId>
   <artifactId>externalsortinginjava</artifactId>
   <version>0.1.9</version>
</dependency>

Download

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



Download externalsortinginjava-0.1.9.jar file




PreviousNext

Related