组织ID: |
com.googlecode.protobuf-java-format |
项目ID: |
protobuf-java-format |
版本: |
1.2 |
最后修改时间: |
2018-07-27 17:57:26 |
包类型: |
jar |
标题: |
protobuf-java-format |
描述: |
Provide serialization and de-serialization of different formats based on Google鈥檚 protobuf Message. Enables overriding the default (byte array) output to text based formats such as XML, JSON and HTML. |
相关URL: |
http://code.google.com/p/protobuf-java-format/ |
大小: |
75.95KB |
|
Maven引入代码: |
<dependency>
<groupId>com.googlecode.protobuf-java-format</groupId>
<artifactId>protobuf-java-format</artifactId>
<version>1.2</version>
</dependency>
|
Gradle引入代码: |
com.googlecode.protobuf-java-format:protobuf-java-format:1.2
|
下载Jar包: |
|
POM文件内容: |
<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>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>com.googlecode.protobuf-java-format</groupId>
<artifactId>protobuf-java-format</artifactId>
<name>protobuf-java-format</name>
<version>1.2</version>
<description>Provide serialization and de-serialization of different formats based on Google鈥檚 protobuf Message. Enables overriding the default (byte array) output to text based formats such as XML, JSON and HTML.</description>
<url>http://code.google.com/p/protobuf-java-format/</url>
<packaging>jar</packaging>
<scm>
<connection>scm:svn:http://protobuf-java-format.googlecode.com/svn/tags/protobuf-java-format-1.2</connection>
<developerConnection>scm:svn:http://protobuf-java-format.googlecode.com/svn/tags/protobuf-java-format-1.2</developerConnection>
<url>http://protobuf-java-format.googlecode.com/svn/tags/protobuf-java-format-1.2</url>
</scm>
<licenses>
<license>
<name>New BSD License</name>
<url>http://www.opensource.org/licenses/bsd-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<issueManagement>
<system>issue tracker</system>
<url>http://code.google.com/p/protobuf-java-format/issues</url>
</issueManagement>
<developers>
<developer>
<id>eliran.bivas</id>
<name>Eliran Bivas</name>
<email>eliran.bivas@gmail.com</email>
<roles>
<role>owner</role>
</roles>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>2.3.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-smile</artifactId>
<version>1.7.7</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<version>3.0</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>UTF-8</encoding>
</configuration>
</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-no-fork</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-javadoc</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>generate-test-sources</id>
<phase>generate-test-sources</phase>
<configuration>
<tasks>
<mkdir dir="target/generated-test-sources" />
<exec executable="${protoc}" failonerror="true">
<arg value="--java_out=${project.basedir}/src/test/java" />
<arg value="--proto_path=${project.basedir}/src/test/resources" />
<arg value="${project.basedir}/src/test/resources/proto/unittest.proto" />
<arg value="${project.basedir}/src/test/resources/proto/unittest_import.proto" />
<arg value="${project.basedir}/src/test/resources/proto/unittest_couchdb.proto" />
<arg value="${project.basedir}/src/test/resources/proto/unittest_multi_nested.proto" />
</exec>
</tasks>
<testSourceRoot>target/generated-test-sources</testSourceRoot>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>signArtifacts</name>
<value>true</value>
</property>
</activation>
<properties>
<protoc>protoc</protoc>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>protoc-dev</id>
<activation>
<activeByDefault>true</activeByDefault>
<property>
<name>env</name>
<value>dev</value>
</property>
</activation>
<properties>
<protoc>protoc</protoc>
</properties>
</profile>
<profile>
<id>protoc-ci</id>
<activation>
<property>
<name>env</name>
<value>ci</value>
</property>
</activation>
<properties>
<protoc>${WORKSPACE}/protoc</protoc>
</properties>
</profile>
</profiles>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
com.googlecode.protobuf.format.HtmlFormat$1.class
com.googlecode.protobuf.format.JavaPropsFormat$InvalidEscapeSequenceException.class
com.googlecode.protobuf.format.HtmlFormat$HtmlGenerator.class
com.googlecode.protobuf.format.HtmlFormat$InvalidEscapeSequence.class
com.googlecode.protobuf.format.SmileFormat.class
com.googlecode.protobuf.format.CouchDBFormat$Tokenizer.class
com.googlecode.protobuf.format.XmlFormat$XmlGenerator.class
com.googlecode.protobuf.format.JsonFormat$Tokenizer.class
com.googlecode.protobuf.format.CouchDBFormat$CouchDBGenerator.class
com.googlecode.protobuf.format.util.HexUtils.class
com.googlecode.protobuf.format.JavaPropsFormat.class
com.googlecode.protobuf.format.SmileFormat$1.class
com.googlecode.protobuf.format.XmlFormat$ParseException.class
com.googlecode.protobuf.format.XmlFormat.class
com.googlecode.protobuf.format.JsonFormat.class
com.googlecode.protobuf.format.JavaPropsFormat$ParseException.class
com.googlecode.protobuf.format.JavaPropsFormat$Tokenizer.class
com.googlecode.protobuf.format.JavaPropsFormat$1.class
com.googlecode.protobuf.format.JsonFormat$1.class
com.googlecode.protobuf.format.JavaPropsFormat$JavaPropsGenerator.class
com.googlecode.protobuf.format.CouchDBFormat.class
com.googlecode.protobuf.format.JsonFormat$JsonGenerator.class
com.googlecode.protobuf.format.XmlFormat$Tokenizer.class
com.googlecode.protobuf.format.HtmlFormat.class
com.googlecode.protobuf.format.JsonFormat$ParseException.class
com.googlecode.protobuf.format.JsonFormat$InvalidEscapeSequence.class
com.googlecode.protobuf.format.XmlFormat$InvalidEscapeSequence.class
com.googlecode.protobuf.format.XmlFormat$1.class
LICENSE.txt
META-INF/maven/com.googlecode.protobuf-java-format/protobuf-java-format/pom.xml
META-INF/maven/com.googlecode.protobuf-java-format/protobuf-java-format/pom.properties
|
依赖Jar: |
protobuf-java-2.3.0.jar
/com.google.protobuf/protobuf-java/2.3.0
查看protobuf-java所有版本文件
jackson-smile-1.7.7.jar
/org.codehaus.jackson/jackson-smile/1.7.7
查看jackson-smile所有版本文件
junit-4.8.2.jar
/junit/junit/4.8.2
查看junit所有版本文件
easymock-3.0.jar
/org.easymock/easymock/3.0
查看easymock所有版本文件
|