组织ID: |
com.esotericsoftware.yamlbeans |
项目ID: |
yamlbeans |
版本: |
1.13 |
最后修改时间: |
2018-07-30 21:35:32 |
包类型: |
jar |
标题: |
YamlBeans |
描述: |
Java object graphs, to and from YAML |
相关URL: |
https://github.com/EsotericSoftware/yamlbeans |
大小: |
157.84KB |
|
Maven引入代码: |
<dependency>
<groupId>com.esotericsoftware.yamlbeans</groupId>
<artifactId>yamlbeans</artifactId>
<version>1.13</version>
</dependency>
|
Gradle引入代码: |
com.esotericsoftware.yamlbeans:yamlbeans:1.13
|
下载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/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>
<name>YamlBeans</name>
<groupId>com.esotericsoftware.yamlbeans</groupId>
<artifactId>yamlbeans</artifactId>
<version>1.13</version>
<description>Java object graphs, to and from YAML</description>
<url>https://github.com/EsotericSoftware/yamlbeans</url>
<licenses>
<license>
<name>New BSD License</name>
<url>http://www.opensource.org/licenses/bsd-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>scm:git:git@github.com:esotericsoftware/yamlbeans.git</url>
<connection>scm:git:git@github.com:esotericsoftware/yamlbeans.git</connection>
<developerConnection>scm:git:git@github.com:esotericsoftware/yamlbeans.git</developerConnection>
<tag>HEAD</tag>
</scm>
<dependencies>
<dependency>
<scope>test</scope>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
</dependency>
</dependencies>
<properties>
<!-- default encoding -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.5</java.version>
</properties>
<build>
<sourceDirectory>src</sourceDirectory>
<testSourceDirectory>test</testSourceDirectory>
<outputDirectory>target/classes</outputDirectory>
<testResources>
<testResource>
<directory>test</directory>
<includes>
<include>**/*.yml</include>
</includes>
</testResource>
</testResources>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.0.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
</plugin>
<plugin>
<groupId>org.nuiton</groupId>
<artifactId>helper-maven-plugin</artifactId>
<version>2.3.2</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<developers>
<developer>
<id>nathansweet</id>
<name>Nathan Sweet</name>
<email>misc@n4te.com</email>
<organization>Esoteric Software</organization>
<organizationUrl>http://esotericsoftware.com</organizationUrl>
<roles>
<role>author</role>
</roles>
</developer>
</developers>
<contributors>
<contributor>
<name>Tony Chemit</name>
<email>dev@tchemit.fr</email>
<organization>Ultreia</organization>
<organizationUrl>http://ultreia.io</organizationUrl>
<timezone>Europe/Paris</timezone>
<roles>
<role>Maven packager</role>
</roles>
</contributor>
</contributors>
<profiles>
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.nuiton</groupId>
<artifactId>helper-maven-plugin</artifactId>
<executions>
<execution>
<id>get-pgp-passphrase</id>
<goals>
<goal>share-server-secret</goal>
</goals>
<phase>verify</phase>
<configuration>
<serverId>${gpg.serverId}</serverId>
<usernameOut>gpg.keyname</usernameOut>
<passwordOut>gpg.passphrase</passwordOut>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
com.esotericsoftware.yamlbeans.YamlReader$YamlReaderException.class
com.esotericsoftware.yamlbeans.Version.class
com.esotericsoftware.yamlbeans.scalar.DateTimeParser$SimpleParser.class
com.esotericsoftware.yamlbeans.scalar.DateTimeParser$Parser.class
com.esotericsoftware.yamlbeans.scalar.DateTimeParser$1.class
com.esotericsoftware.yamlbeans.scalar.ScalarSerializer.class
com.esotericsoftware.yamlbeans.scalar.DateTimeParser.class
com.esotericsoftware.yamlbeans.scalar.DateSerializer.class
com.esotericsoftware.yamlbeans.Beans.class
com.esotericsoftware.yamlbeans.parser.EventType.class
com.esotericsoftware.yamlbeans.parser.Parser$18.class
com.esotericsoftware.yamlbeans.parser.Parser$38.class
com.esotericsoftware.yamlbeans.parser.Parser$43.class
com.esotericsoftware.yamlbeans.parser.Parser$33.class
com.esotericsoftware.yamlbeans.parser.MappingStartEvent.class
com.esotericsoftware.yamlbeans.parser.Parser$16.class
com.esotericsoftware.yamlbeans.parser.Parser$22.class
com.esotericsoftware.yamlbeans.parser.Parser$27.class
com.esotericsoftware.yamlbeans.parser.NodeEvent.class
com.esotericsoftware.yamlbeans.parser.Parser$4.class
com.esotericsoftware.yamlbeans.parser.Parser$6.class
com.esotericsoftware.yamlbeans.parser.Parser$41.class
com.esotericsoftware.yamlbeans.parser.Parser$9.class
com.esotericsoftware.yamlbeans.parser.Parser$11.class
com.esotericsoftware.yamlbeans.parser.Parser$20.class
com.esotericsoftware.yamlbeans.parser.Parser$ParserException.class
com.esotericsoftware.yamlbeans.parser.Parser$24.class
com.esotericsoftware.yamlbeans.parser.ScalarEvent.class
com.esotericsoftware.yamlbeans.parser.Parser$19.class
com.esotericsoftware.yamlbeans.parser.Parser$26.class
com.esotericsoftware.yamlbeans.parser.Parser$42.class
com.esotericsoftware.yamlbeans.parser.Parser$15.class
com.esotericsoftware.yamlbeans.parser.Parser$14.class
com.esotericsoftware.yamlbeans.parser.SequenceStartEvent.class
com.esotericsoftware.yamlbeans.parser.AliasEvent.class
com.esotericsoftware.yamlbeans.parser.Parser$23.class
com.esotericsoftware.yamlbeans.parser.Parser$12.class
com.esotericsoftware.yamlbeans.parser.CollectionStartEvent.class
com.esotericsoftware.yamlbeans.parser.Parser$37.class
com.esotericsoftware.yamlbeans.parser.DocumentEndEvent.class
com.esotericsoftware.yamlbeans.parser.Parser$39.class
com.esotericsoftware.yamlbeans.parser.Parser$1.class
com.esotericsoftware.yamlbeans.parser.Parser$44.class
com.esotericsoftware.yamlbeans.parser.Parser$8.class
com.esotericsoftware.yamlbeans.parser.Parser$2.class
com.esotericsoftware.yamlbeans.parser.Event.class
com.esotericsoftware.yamlbeans.parser.Parser$30.class
com.esotericsoftware.yamlbeans.parser.Parser.class
com.esotericsoftware.yamlbeans.parser.Parser$29.class
com.esotericsoftware.yamlbeans.parser.Parser$25.class
com.esotericsoftware.yamlbeans.parser.Parser$45.class
com.esotericsoftware.yamlbeans.parser.Parser$31.class
com.esotericsoftware.yamlbeans.parser.Parser$17.class
com.esotericsoftware.yamlbeans.parser.Parser$21.class
com.esotericsoftware.yamlbeans.parser.Parser$Production.class
com.esotericsoftware.yamlbeans.parser.Parser$5.class
com.esotericsoftware.yamlbeans.parser.Parser$3.class
com.esotericsoftware.yamlbeans.parser.Parser$35.class
com.esotericsoftware.yamlbeans.parser.Parser$40.class
com.esotericsoftware.yamlbeans.parser.Parser$7.class
com.esotericsoftware.yamlbeans.parser.Parser$13.class
com.esotericsoftware.yamlbeans.parser.Parser$10.class
com.esotericsoftware.yamlbeans.parser.Parser$32.class
com.esotericsoftware.yamlbeans.parser.Parser$28.class
com.esotericsoftware.yamlbeans.parser.Parser$34.class
com.esotericsoftware.yamlbeans.parser.Parser$46.class
com.esotericsoftware.yamlbeans.parser.Parser$36.class
com.esotericsoftware.yamlbeans.parser.DocumentStartEvent.class
com.esotericsoftware.yamlbeans.Beans$Property.class
com.esotericsoftware.yamlbeans.emitter.EmitterException.class
com.esotericsoftware.yamlbeans.emitter.Emitter$19.class
com.esotericsoftware.yamlbeans.emitter.Emitter.class
com.esotericsoftware.yamlbeans.emitter.Emitter$9.class
com.esotericsoftware.yamlbeans.emitter.Emitter$2.class
com.esotericsoftware.yamlbeans.emitter.Emitter$15.class
com.esotericsoftware.yamlbeans.emitter.Emitter$17.class
com.esotericsoftware.yamlbeans.emitter.Emitter$7.class
com.esotericsoftware.yamlbeans.emitter.Emitter$4.class
com.esotericsoftware.yamlbeans.emitter.Emitter$6.class
com.esotericsoftware.yamlbeans.emitter.EmitterConfig.class
com.esotericsoftware.yamlbeans.emitter.Emitter$5.class
com.esotericsoftware.yamlbeans.emitter.Emitter$13.class
com.esotericsoftware.yamlbeans.emitter.EmitterWriter.class
com.esotericsoftware.yamlbeans.emitter.Emitter$14.class
com.esotericsoftware.yamlbeans.emitter.Emitter$12.class
com.esotericsoftware.yamlbeans.emitter.Emitter$10.class
com.esotericsoftware.yamlbeans.emitter.Emitter$EmitterState.class
com.esotericsoftware.yamlbeans.emitter.Emitter$16.class
com.esotericsoftware.yamlbeans.emitter.Emitter$11.class
com.esotericsoftware.yamlbeans.emitter.Emitter$8.class
com.esotericsoftware.yamlbeans.emitter.ScalarAnalysis.class
com.esotericsoftware.yamlbeans.emitter.Emitter$3.class
com.esotericsoftware.yamlbeans.emitter.Emitter$18.class
com.esotericsoftware.yamlbeans.emitter.Emitter$1.class
com.esotericsoftware.yamlbeans.Beans$MethodProperty.class
com.esotericsoftware.yamlbeans.YamlConfig.class
com.esotericsoftware.yamlbeans.YamlConfig$WriteConfig.class
com.esotericsoftware.yamlbeans.YamlConfig$WriteClassName.class
com.esotericsoftware.yamlbeans.YamlConfig$ConstructorParameters.class
com.esotericsoftware.yamlbeans.DeferredConstruction.class
com.esotericsoftware.yamlbeans.DeferredConstruction$ParameterValue.class
com.esotericsoftware.yamlbeans.YamlConfig$ReadConfig.class
com.esotericsoftware.yamlbeans.constants.Unicode.class
com.esotericsoftware.yamlbeans.DeferredConstruction$PropertyValue.class
com.esotericsoftware.yamlbeans.tokenizer.Tokenizer$TokenizerException.class
com.esotericsoftware.yamlbeans.tokenizer.ScalarToken.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
junit-4.8.2.jar
/junit/junit/4.8.2
查看junit所有版本文件
|