| 组织ID: |
com.owlike |
| 项目ID: |
genson |
| 版本: |
0.9 |
| 最后修改时间: |
2019-10-22 15:12:07 |
| 包类型: |
jar |
| 标题: |
Genson |
| 描述: |
Genson library |
| 相关URL: |
http://code.google.com/p/genson/ |
| 大小: |
203.30KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>com.owlike</groupId>
<artifactId>genson</artifactId>
<version>0.9</version>
</dependency>
|
| Gradle引入代码: |
com.owlike:genson:0.9
|
| 下载Jar包: |
|
| POM文件内容: |
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>oss-parent</artifactId>
<groupId>org.sonatype.oss</groupId>
<version>7</version>
<relativePath>../pom.xml/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.owlike</groupId>
<artifactId>genson</artifactId>
<name>Genson</name>
<version>0.9</version>
<description>Genson library</description>
<url>http://code.google.com/p/genson/</url>
<issueManagement>
<system>Google Code Issue List</system>
<url>http://code.google.com/p/genson/issues/list</url>
</issueManagement>
<developers>
<developer>
<name>Eugen Cepoi</name>
<email>cepoi.eugen@gmail.com</email>
<roles>
<role>Project owner</role>
</roles>
</developer>
</developers>
<licenses>
<license>
<name>Apache Software License Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:http://genson.googlecode.com/git</connection>
<developerConnection>scm:git:http://genson.googlecode.com/git</developerConnection>
<tag>genson-0.9</tag>
<url>http://genson.googlecode.com/git</url>
</scm>
<build>
<plugins>
<plugin>
<artifactId>maven-eclipse-plugin</artifactId>
<configuration>
<downloadSources>true</downloadSources>
<downloadJavadoc>true</downloadJavadoc>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.9</version>
<configuration>
<junitArtifactName>junit:junit</junitArtifactName>
<encoding>UTF-8</encoding>
<inputEncoding>UTF-8</inputEncoding>
<outputEncoding>UTF-8</outputEncoding>
<argLine>-Dfile.encoding=UTF-8</argLine>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>1.7.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<minimizeJar>true</minimizeJar>
<shadedArtifactAttached>false</shadedArtifactAttached>
<createDependencyReducedPom>true</createDependencyReducedPom>
<filters>
<filter>
<includes>
<include>org/objectweb/asm</include>
</includes>
</filter>
</filters>
<relocations>
<relocation>
<pattern>org.objectweb.asm</pattern>
<shadedPattern>com.owlike.genson.internal.asm</shadedPattern>
</relocation>
</relocations>
<shadedGroupFilter>asm</shadedGroupFilter>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<outputDirectory>javadoc</outputDirectory>
</configuration>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<tagBase>scm:git:http://genson.googlecode.com/git</tagBase>
<mavenExecutorId>forked-path</mavenExecutorId>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release-sign-artifacts</id>
<build>
<plugins>
<plugin>
<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>
</profiles>
<dependencies>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>3.0-alpha-1</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>3.1.0.RELEASE</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>3.1.0.RELEASE</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>3.1.0.RELEASE</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
<version>3.1.0.RELEASE</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>3.1.0.RELEASE</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>3.1.0.RELEASE</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>3.1.0.RELEASE</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
<version>[1.6.4,2.0.0]</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>jackson-core-asl</artifactId>
<groupId>org.codehaus.jackson</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.2.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>hamcrest-core</artifactId>
<groupId>org.hamcrest</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<distributionManagement>
<repository>
<id>sonatype-nexus-staging</id>
<name>Nexus Staging Repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<name>Nexus Snapshot Repository</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<properties>
<org.springframework.version>3.1.0.RELEASE</org.springframework.version>
<maven.compile.encoding>UTF-8</maven.compile.encoding>
<project.build.resourceEncoding>UTF-8</project.build.resourceEncoding>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
README
LICENSE
com.owlike.genson.Trilean.class
com.owlike.genson.TransformationRuntimeException.class
com.owlike.genson.Operations.class
com.owlike.genson.spring.ExtendedReqRespBodyMethodProcessor.class
com.owlike.genson.spring.GensonMessageConverter.class
com.owlike.genson.Genson.class
com.owlike.genson.ThreadLocalHolder.class
com.owlike.genson.Converter.class
com.owlike.genson.reflect.BeanProperty.class
com.owlike.genson.reflect.BeanMutatorAccessorResolver.class
com.owlike.genson.reflect.BaseBeanDescriptorProvider$1.class
com.owlike.genson.reflect.BeanCreator$ConstructorBeanCreator.class
com.owlike.genson.reflect.PropertyNameResolver$CompositePropertyNameResolver.class
com.owlike.genson.reflect.ASMCreatorParameterNameResolver$NameMethodVisitor.class
com.owlike.genson.reflect.BeanViewDescriptorProvider$BeanViewPropertyMutator.class
com.owlike.genson.reflect.TypeUtil$ExpandedGenericArrayType.class
com.owlike.genson.reflect.PropertyNameResolver.class
com.owlike.genson.reflect.ASMCreatorParameterNameResolver$ClassConstructorsVisitor.class
com.owlike.genson.reflect.PropertyMutator$MethodMutator.class
com.owlike.genson.reflect.BaseBeanDescriptorProvider.class
com.owlike.genson.reflect.TypeUtil$ExpandedWildcardType.class
com.owlike.genson.reflect.BeanCreator$BeanCreatorProperty.class
com.owlike.genson.reflect.BeanMutatorAccessorResolver$StandardMutaAccessorResolver.class
com.owlike.genson.reflect.TypeUtil$ExpandedType.class
com.owlike.genson.reflect.PropertyAccessor.class
com.owlike.genson.reflect.VisibilityFilter.class
com.owlike.genson.reflect.BeanViewDescriptorProvider.class
com.owlike.genson.reflect.TypeUtil$1.class
com.owlike.genson.reflect.PropertyAccessor$MethodAccessor.class
com.owlike.genson.reflect.TypeUtil$ParameterizedTypeImpl.class
com.owlike.genson.reflect.BeanViewDescriptorProvider$BeanViewMutatorAccessorResolver.class
com.owlike.genson.reflect.BeanDescriptor.class
com.owlike.genson.reflect.BeanCreator.class
com.owlike.genson.reflect.PropertyMutator.class
com.owlike.genson.reflect.BeanViewDescriptorProvider$BeanViewPropertyAccessor.class
com.owlike.genson.reflect.TypeUtil.class
com.owlike.genson.reflect.BeanCreator$MethodBeanCreator.class
com.owlike.genson.reflect.TypeUtil$TypeAndRootClassKey.class
com.owlike.genson.reflect.AbstractBeanDescriptorProvider.class
com.owlike.genson.reflect.PropertyNameResolver$ConventionalBeanPropertyNameResolver.class
com.owlike.genson.reflect.ASMCreatorParameterNameResolver$BaseMethodVisitor.class
com.owlike.genson.reflect.PropertyMutator$FieldMutator.class
com.owlike.genson.reflect.TypeUtil$ExpandedParameterizedType.class
com.owlike.genson.reflect.BeanDescriptor$1.class
com.owlike.genson.reflect.PropertyNameResolver$AnnotationPropertyNameResolver.class
com.owlike.genson.reflect.ASMCreatorParameterNameResolver$ConstructorVisitor.class
com.owlike.genson.reflect.BeanDescriptorProvider.class
com.owlike.genson.reflect.ASMCreatorParameterNameResolver.class
com.owlike.genson.reflect.PropertyAccessor$FieldAccessor.class
com.owlike.genson.Trilean$2.class
com.owlike.genson.Trilean$1.class
com.owlike.genson.Context.class
com.owlike.genson.Serializer.class
com.owlike.genson.BeanView.class
com.owlike.genson.Trilean$3.class
com.owlike.genson.Wrapper.class
com.owlike.genson.Factory.class
com.owlike.genson.TransformationException.class
com.owlike.genson.GenericType.class
com.owlike.genson.convert.DefaultConverters.class
com.owlike.genson.convert.DefaultConverters$PrimitiveConverterFactory$intConverter.class
com.owlike.genson.convert.DefaultConverters$MapConverter.class
com.owlike.genson.convert.CircularClassReferenceConverterFactory.class
com.owlike.genson.convert.DefaultConverters$IntegerConverter.class
com.owlike.genson.convert.BeanViewConverter.class
com.owlike.genson.convert.DefaultConverters$StringConverter.class
com.owlike.genson.convert.DefaultConverters$NumberConverter.class
com.owlike.genson.convert.DefaultConverters$UntypedConverterFactory$UntypedConverter.class
com.owlike.genson.convert.DefaultConverters$PrimitiveConverterFactory$longConverter.class
com.owlike.genson.convert.DefaultConverters$PrimitiveConverterFactory$doubleConverter.class
com.owlike.genson.convert.DefaultConverters$MapConverterFactory.class
com.owlike.genson.convert.DefaultConverters$CollectionConverter.class
com.owlike.genson.convert.DefaultConverters$PrimitiveConverterFactory.class
com.owlike.genson.convert.RuntimeTypeConverter$1.class
com.owlike.genson.convert.NullConverter$NullConverterWrapper.class
com.owlike.genson.convert.ChainedFactory.class
com.owlike.genson.convert.RuntimeTypeConverter.class
com.owlike.genson.convert.DefaultConverters$EnumConverter.class
com.owlike.genson.convert.CircularClassReferenceConverterFactory$CircularConverter.class
com.owlike.genson.convert.DefaultConverters$CollectionConverterFactory.class
com.owlike.genson.convert.DefaultConverters$ArrayConverter.class
com.owlike.genson.convert.DefaultConverters$DoubleConverter.class
com.owlike.genson.convert.BasicConvertersFactory.class
com.owlike.genson.convert.DefaultConverters$LongConverter.class
com.owlike.genson.convert.DefaultConverters$EnumConverterFactory.class
com.owlike.genson.convert.DefaultConverters$UntypedConverterFactory.class
com.owlike.genson.convert.DefaultConverters$URLConverter.class
com.owlike.genson.convert.DefaultConverters$DateConverter.class
com.owlike.genson.convert.BasicConvertersFactory$DelegatedConverter.class
com.owlike.genson.convert.ClassMetadataConverter.class
com.owlike.genson.convert.BeanViewConverter$BeanViewConverterFactory.class
com.owlike.genson.convert.DefaultConverters$ArrayConverterFactory.class
com.owlike.genson.convert.NullConverter$NullConverterFactory.class
com.owlike.genson.convert.NullConverter.class
com.owlike.genson.convert.ClassMetadataConverter$ClassMetadataConverterFactory.class
com.owlike.genson.convert.DefaultConverters$BooleanConverter.class
com.owlike.genson.convert.CircularClassReferenceConverterFactory$1.class
com.owlike.genson.convert.DefaultConverters$PrimitiveConverterFactory$booleanConverter.class
com.owlike.genson.Deserializer.class
com.owlike.genson.stream.JsonReader.class
com.owlike.genson.stream.JsonType.class
com.owlike.genson.stream.JsonWriter.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
| 依赖Jar: |
servlet-api-3.0-alpha-1.jar
/javax.servlet/servlet-api/3.0-alpha-1
查看servlet-api所有版本文件
spring-core-3.1.0.RELEASE.jar
/org.springframework/spring-core/3.1.0.RELEASE
查看spring-core所有版本文件
spring-beans-3.1.0.RELEASE.jar
/org.springframework/spring-beans/3.1.0.RELEASE
查看spring-beans所有版本文件
spring-context-3.1.0.RELEASE.jar
/org.springframework/spring-context/3.1.0.RELEASE
查看spring-context所有版本文件
spring-context-support-3.1.0.RELEASE.jar
/org.springframework/spring-context-support/3.1.0.RELEASE
查看spring-context-support所有版本文件
spring-web-3.1.0.RELEASE.jar
/org.springframework/spring-web/3.1.0.RELEASE
查看spring-web所有版本文件
spring-webmvc-3.1.0.RELEASE.jar
/org.springframework/spring-webmvc/3.1.0.RELEASE
查看spring-webmvc所有版本文件
spring-test-3.1.0.RELEASE.jar
/org.springframework/spring-test/3.1.0.RELEASE
查看spring-test所有版本文件
jackson-mapper-asl-[1.6.4,2.0.0].jar
/org.codehaus.jackson/jackson-mapper-asl/[1.6.4,2.0.0]
查看jackson-mapper-asl所有版本文件
gson-2.2.1.jar
/com.google.code.gson/gson/2.2.1
查看gson所有版本文件
junit-4.10.jar
/junit/junit/4.10
查看junit所有版本文件
|