avro-converter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.vladkrava</groupId> <artifactId>avro-converter</artifactId> <version>1.0.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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>com.vladkrava</groupId> <artifactId>avro-converter</artifactId> <version>1.0.1</version> <name>${project.artifactId} - ${project.version}</name> <packaging>jar</packaging> <description>Enables conversion of Apache Avro object into popular data formats: JSON, XML, etc</description> <url>https://gitlab.com/vkrava4/avro-converter</url> <inceptionYear>2019</inceptionYear> <developers> <developer> <name>Vlad Krava</name> <email>vkrava4@gmail.com</email> <organization>VladKrava</organization> <organizationUrl>vladkrava.com</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://gitlab.com/vkrava4/avro-converter.git</connection> <developerConnection>scm:git:ssh://gitlab.com/vkrava4/avro-converter.git</developerConnection> <url>https://gitlab.com/vkrava4/avro-converter/tree/release/src</url> </scm> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://gitlab.com/vkrava4/avro-converter/blob/master/LICENSE</url> <distribution>repo</distribution> </license> </licenses> <properties> <!--Dependency--> <junit.version>4.12</junit.version> <avro.version>1.8.2</avro.version> <json.version>20180813</json.version> <commons.oi.version>2.4</commons.oi.version> <spring.mvc.version>3.0.2.RELEASE</spring.mvc.version> <!--Plugins--> <maven.compiler.version>3.7.0</maven.compiler.version> <source.jdk.version>1.8</source.jdk.version> <target.jdk.version>1.8</target.jdk.version> <nexus.staging.version>1.6.7</nexus.staging.version> <maven.source.version>2.2.1</maven.source.version> <maven.javadoc.version>3.0.0</maven.javadoc.version> <maven.gpg.version>1.5</maven.gpg.version> </properties> <dependencies> <dependency> <groupId>org.apache.avro</groupId> <artifactId>avro</artifactId> <version>${avro.version}</version> </dependency> <dependency> <groupId>org.json</groupId> <artifactId>json</artifactId> <version>${json.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>${spring.mvc.version}</version> </dependency> <!--TEST--> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>${commons.oi.version}</version> <scope>test</scope> </dependency> </dependencies> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <profiles> <profile> <id>dev</id> <activation> <activeByDefault>true</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven.compiler.version}</version> <configuration> <source>${source.jdk.version}</source> <target>${target.jdk.version}</target> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.avro</groupId> <artifactId>avro-maven-plugin</artifactId> <version>${avro.version}</version> <executions> <execution> <phase>generate-sources</phase> <goals> <goal>schema</goal> <goal>protocol</goal> <goal>idl-protocol</goal> </goals> <configuration> <sourceDirectory>${project.basedir}/src/test/resources/avro</sourceDirectory> <stringType>String</stringType> <createSetters>false</createSetters> <enableDecimalLogicalType>true</enableDecimalLogicalType> <fieldVisibility>private</fieldVisibility> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>deploy</id> <properties> <maven.test.skip>true</maven.test.skip> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven.compiler.version}</version> <configuration> <source>${source.jdk.version}</source> <target>${target.jdk.version}</target> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${nexus.staging.version}</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven.source.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven.javadoc.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven.gpg.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>