Download protobuf-dynamic-0.9.3.jar file

Introduction

You can download protobuf-dynamic-0.9.3.jar in this page.

License

The Apache Software License, Version 2.0

Type List

protobuf-dynamic-0.9.3.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.github.os72/protobuf-dynamic/pom.properties
META-INF/maven/com.github.os72/protobuf-dynamic/pom.xml
com.github.os72.protobuf.dynamic.DynamicSchema.class
com.github.os72.protobuf.dynamic.EnumDefinition.class
com.github.os72.protobuf.dynamic.MessageDefinition.class

Pom

protobuf-dynamic-0.9.3.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.github.os72</groupId>
  <artifactId>protobuf-dynamic</artifactId>
  <packaging>jar</packaging>
  <version>0.9.3</version>
  <name>protobuf-dynamic</name>
  <url>https://github.com/os72/protobuf-dynamic</url>
  <description>Protocol Buffers Dynamic Schema</description>

  <parent>
	<groupId>org.sonatype.oss</groupId>
	<artifactId>oss-parent</artifactId>
	<version>9</version>
  </parent>

  <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>os72</id>
	  <name>Oliver Suciu</name>
	</developer>
  </developers>

  <scm>
	<connection>scm:git:git@github.com:os72/protobuf-dynamic.git</connection>
	<developerConnection>scm:git:git@github.com:os72/protobuf-dynamic.git</developerConnection>
	<url>git@github.com:os72/protobuf-dynamic.git</url>
  </scm>

  <dependencies>
	<!-- compile -->
	<dependency>
		<groupId>com.google.protobuf</groupId>
		<artifactId>protobuf-java</artifactId>
		<version>2.4.1</version>
	</dependency>

	<!-- test -->
	<dependency>
		<groupId>junit</groupId>
		<artifactId>junit</artifactId>
		<version>4.12</version>
		<scope>test</scope>
	</dependency>
  </dependencies>

  <build>
	<plugins>
		<plugin>
			<groupId>com.github.os72</groupId>
			<artifactId>protoc-jar-maven-plugin</artifactId>
			<version>3.0.0-b1</version>
			<executions>
				<execution>
					<phase>generate-test-sources</phase>
					<goals>
						<goal>run</goal>
					</goals>
					<configuration>
						<protocVersion>2.4.1</protocVersion>
						<includeDirectories>
							<include>src/test/resources</include>
						</includeDirectories>
						<inputDirectories>
							<include>src/test/resources</include>
						</inputDirectories>
						<outputTargets>
							<outputTarget>
								<type>java</type>
								<addSources>none</addSources>
								<outputDirectory>src/test/java</outputDirectory>
							</outputTarget>
							<outputTarget>
								<type>descriptor</type>
								<addSources>none</addSources>
								<outputDirectory>src/test/resources</outputDirectory>
							</outputTarget>
						</outputTargets>
					</configuration>
				</execution>
			</executions>
		</plugin>
		<plugin>
		  <groupId>org.apache.maven.plugins</groupId>
		  <artifactId>maven-jar-plugin</artifactId>
		  <configuration>
			<archive>
			  <manifestEntries>
				<Build-Id>${project.name}-${project.version}-${maven.build.timestamp}</Build-Id>
			  </manifestEntries>
			</archive>
		  </configuration>
		</plugin>
		<plugin>
		  <groupId>org.apache.maven.plugins</groupId>
		  <artifactId>maven-source-plugin</artifactId>
		  <executions>
			<execution>
			  <id>attach-sources</id>
				<goals>
				 <goal>jar</goal>
				</goals>
			</execution>
		  </executions>
		</plugin>
		<plugin>
		  <groupId>org.apache.maven.plugins</groupId>
		  <artifactId>maven-javadoc-plugin</artifactId>
		  <executions>
			<execution>
			  <id>attach-javadoc</id>
				<goals>
				 <goal>jar</goal>
				</goals>
			</execution>
		  </executions>
		</plugin>
	</plugins>
  </build>

</project>

POM Entry

<dependency>
   <groupId>com.github.os72</groupId>
   <artifactId>protobuf-dynamic</artifactId>
   <version>0.9.3</version>
</dependency>

Download

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



Download protobuf-dynamic-0.9.3.jar file




PreviousNext

Related