Apache Avro.
Avro core components.
Here is the list of declaration for avro. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.apache.avro</groupId> <artifactId>avro</artifactId> <version>1.5.3</version> </dependency>
If you think this Maven repository POM file listing for avro is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Apache License.
The following table lists the most popular artifacts which are depending on avro-1.5.3. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Document Database | hbase 0.94.3 HBase is the <a href="http://hadoop.apache.org"&rt;Hadoop</a&rt; database. Use it when you need random, realtime read/write access to your Big Data. This project's goal is the hosting of very large tables -- billions of rows X millions of columns -- atop clusters of commodity hardwar... | 28 |
Document Database | hbase 0.94.14 HBase is the <a href="http://hadoop.apache.org"&rt;Hadoop</a&rt; database. Use it when you need random, realtime read/write access to your Big Data. This project's goal is the hosting of very large tables -- billions of rows X millions of columns -- atop clusters of commodity hardwar... | 8 |
Document Database | hbase 0.94.6.1 HBase is the <a href="http://hadoop.apache.org"&rt;Hadoop</a&rt; database. Use it when you need random, realtime read/write access to your Big Data. This project's goal is the hosting of very large tables -- billions of rows X millions of columns -- atop clusters of commodity hardwar... | 19 |
Document Database | hbase 0.94.12 HBase is the <a href="http://hadoop.apache.org"&rt;Hadoop</a&rt; database. Use it when you need random, realtime read/write access to your Big Data. This project's goal is the hosting of very large tables -- billions of rows X millions of columns -- atop clusters of commodity hardwar... | 5 |
The following plugins are used in the avro-1.5.3.jar
The following packages are defined in the avro-1.5.3.jar
org.apache.avro org.apache.avro.file org.apache.avro.generic org.apache.avro.io org.apache.avro.io.parsing org.apache.avro.reflect org.apache.avro.specific org.apache.avro.util
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) 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 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>avro-parent</artifactId> <groupId>org.apache.avro</groupId> <version>1.5.3</version> <relativePath>../</relativePath> </parent> <artifactId>avro</artifactId> <name>Apache Avro</name> <url>http://avro.apache.org</url> <description>Avro core components</description> <dependencies> <dependency> <groupId>org.codehaus.jackson</groupId> <artifactId>jackson-mapper-asl</artifactId> </dependency> <dependency> <groupId>com.thoughtworks.paranamer</groupId> <artifactId>paranamer</artifactId> </dependency> <dependency> <groupId>org.xerial.snappy</groupId> <artifactId>snappy-java</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>com.thoughtworks.paranamer</groupId> <artifactId>paranamer-maven-plugin</artifactId> <version>${paranamer-version}</version> <executions> <execution> <id>paranamer-test</id> <configuration> <sourceDirectory>${project.build.testSourceDirectory}</sourceDirectory> <outputDirectory>${project.build.testOutputDirectory}</outputDirectory> </configuration> <phase>process-test-classes</phase> <goals> <goal>generate</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>interop-data-generate</id> <build> <pluginManagement> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <!-- default configuration is to generate random data for interop tests --> <configuration> <mainClass>org.apache.avro.RandomData</mainClass> <classpathScope>test</classpathScope> <arguments> <argument>../../../share/test/schemas/interop.avsc</argument> <argument>../../../build/interop/data/java.avro</argument> <argument>100</argument> </arguments> </configuration> </plugin> </plugins> </pluginManagement> </build> </profile> </profiles> </project>