You can download foodmart-data-json-0.4.jar in this page.
The Apache Software License, Version 2.0
foodmart-data-json-0.4.jar file has the following types.
META-INF/LICENSE META-INF/MANIFEST.MF META-INF/NOTICE META-INF/git.properties META-INF/maven/net.hydromatic/foodmart-data-json/pom.properties META-INF/maven/net.hydromatic/foodmart-data-json/pom.xml account.json agg_c_10_sales_fact_1997.json agg_c_14_sales_fact_1997.json agg_c_special_sales_fact_1997.json agg_g_ms_pcat_sales_fact_1997.json agg_l_03_sales_fact_1997.json agg_l_04_sales_fact_1997.json agg_l_05_sales_fact_1997.json agg_lc_06_sales_fact_1997.json agg_lc_100_sales_fact_1997.json agg_ll_01_sales_fact_1997.json agg_pl_01_sales_fact_1997.json category.json createTables.sql currency.json customer.json days.json department.json employee.json employee_closure.json expense_fact.json inventory_fact_1997.json inventory_fact_1998.json net.hydromatic.foodmart.data.json.FoodmartJson.class position.json product.json product_class.json promotion.json region.json reserve_employee.json salary.json sales_fact_1997.json sales_fact_1997_collapsed.json sales_fact_1998.json sales_fact_dec_1998.json sales_transactions.json store.json store_ragged.json time_by_day.json warehouse.json warehouse_class.json
foodmart-data-json-0.4.pom file content.
<?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to Julian Hyde 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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>net.hydromatic</groupId> <artifactId>parent</artifactId> <version>0.1</version> </parent> <artifactId>foodmart-data-json</artifactId> <version>0.4</version> <packaging>jar</packaging> <name>foodmart-data-json</name> <description>Foodmart data set in JSON format</description> <url>http://github.com/julianhyde/foodmart-data-json</url> <inceptionYear>2015</inceptionYear> <organization> <name>Julian Hyde</name> <url>http://www.hydromatic.net</url> </organization> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>julianhyde</id> <name>Julian Hyde</name> <email>jhyde@apache.org</email> <url>https://github.com/julianhyde</url> <roles> <role>architect</role> <role>developer</role> </roles> <timezone>-8</timezone> <properties /> </developer> </developers> <mailingLists> <mailingList> <name>Apache Calcite developers list</name> <subscribe>dev-subscribe@calcite.incubator.apache.org</subscribe> <unsubscribe>dev-unsubscribe@calcite.incubator.apache.org</unsubscribe> <post>dev@calcite.incubator.apache.org</post> <archive>http://mail-archives.apache.org/mod_mbox/incubator-calcite-dev</archive> </mailingList> </mailingLists> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <top.dir>${project.basedir}</top.dir> </properties> <issueManagement> <system>github</system> <url>https://github.com/julianhyde/foodmart-data-json/issues</url> </issueManagement> <scm> <connection>scm:git:git://github.com/julianhyde/foodmart-data-json.git</connection> <developerConnection>scm:git:git@github.com:julianhyde/foodmart-data-json.git</developerConnection> <url>scm:git:git://github.com/julianhyde/foodmart-data-json.git</url> <tag>foodmart-data-json-0.4</tag> </scm> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <version>1.6</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>prepare</id> <phase>compile</phase> <configuration> <tasks> <bunzip2 src="src/main/compressed-resources/sales_fact_1997_collapsed.json.bz2" dest="target/classes" /> </tasks> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <!-- Make sure every sub-project has LICENSE, NOTICE and git.properties in its jar's META-INF directory. --> <executions> <execution> <id>add-resource</id> <phase>generate-resources</phase> <goals> <goal>add-resource</goal> <goal>add-test-resource</goal> </goals> <configuration> <resources> <resource> <directory>${top.dir}</directory> <targetPath>META-INF</targetPath> <includes> <include>LICENSE</include> <include>NOTICE</include> </includes> </resource> <resource> <directory>${top.dir}/target</directory> <targetPath>META-INF</targetPath> <includes> <include>git.properties</include> </includes> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>pl.project13.maven</groupId> <artifactId>git-commit-id-plugin</artifactId> <inherited>false</inherited> <executions> <execution> <goals> <goal>revision</goal> </goals> </execution> </executions> <configuration> <dateFormat>yyyy-MM-dd'T'HH:mm:ssZ</dateFormat> <verbose>false</verbose> <skipPoms>false</skipPoms> <generateGitPropertiesFile>true</generateGitPropertiesFile> <generateGitPropertiesFilename>target/git.properties</generateGitPropertiesFilename> <failOnNoGitDirectory>false</failOnNoGitDirectory> <gitDescribe> <skip>false</skip> <always>false</always> <abbrev>7</abbrev> <dirty>-dirty</dirty> <forceLongFormat>true</forceLongFormat> </gitDescribe> </configuration> </plugin> </plugins> </build> </project>
<dependency> <groupId>net.hydromatic</groupId> <artifactId>foodmart-data-json</artifactId> <version>0.4</version> </dependency>
If you think the following foodmart-data-json-0.4.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download foodmart-data-json-0.4.jar file