Download yamlbeans-1.09.jar file

Introduction

You can download yamlbeans-1.09.jar in this page.

License

New BSD License

Type List

yamlbeans-1.09.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.esotericsoftware.yamlbeans/yamlbeans/pom.properties
META-INF/maven/com.esotericsoftware.yamlbeans/yamlbeans/pom.xml
com.esotericsoftware.yamlbeans.Beans.class
com.esotericsoftware.yamlbeans.DeferredConstruction.class
com.esotericsoftware.yamlbeans.Version.class
com.esotericsoftware.yamlbeans.YamlConfig.class
com.esotericsoftware.yamlbeans.YamlException.class
com.esotericsoftware.yamlbeans.YamlReader.class
com.esotericsoftware.yamlbeans.YamlWriter.class
com.esotericsoftware.yamlbeans.emitter.Emitter.class
com.esotericsoftware.yamlbeans.emitter.EmitterConfig.class
com.esotericsoftware.yamlbeans.emitter.EmitterException.class
com.esotericsoftware.yamlbeans.emitter.EmitterWriter.class
com.esotericsoftware.yamlbeans.emitter.ScalarAnalysis.class
com.esotericsoftware.yamlbeans.parser.AliasEvent.class
com.esotericsoftware.yamlbeans.parser.CollectionStartEvent.class
com.esotericsoftware.yamlbeans.parser.DocumentEndEvent.class
com.esotericsoftware.yamlbeans.parser.DocumentStartEvent.class
com.esotericsoftware.yamlbeans.parser.Event.class
com.esotericsoftware.yamlbeans.parser.EventType.class
com.esotericsoftware.yamlbeans.parser.MappingStartEvent.class
com.esotericsoftware.yamlbeans.parser.NodeEvent.class
com.esotericsoftware.yamlbeans.parser.Parser.class
com.esotericsoftware.yamlbeans.parser.ScalarEvent.class
com.esotericsoftware.yamlbeans.parser.SequenceStartEvent.class
com.esotericsoftware.yamlbeans.scalar.DateSerializer.class
com.esotericsoftware.yamlbeans.scalar.DateTimeParser.class
com.esotericsoftware.yamlbeans.scalar.ScalarSerializer.class
com.esotericsoftware.yamlbeans.tokenizer.AliasToken.class
com.esotericsoftware.yamlbeans.tokenizer.AnchorToken.class
com.esotericsoftware.yamlbeans.tokenizer.DirectiveToken.class
com.esotericsoftware.yamlbeans.tokenizer.ScalarToken.class
com.esotericsoftware.yamlbeans.tokenizer.TagToken.class
com.esotericsoftware.yamlbeans.tokenizer.Token.class
com.esotericsoftware.yamlbeans.tokenizer.TokenType.class
com.esotericsoftware.yamlbeans.tokenizer.Tokenizer.class

Pom

yamlbeans-1.09.pom file content.

<?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.09</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>
		<plugins>
			<plugin>
				<artifactId>maven-compiler-plugin</artifactId>
				<configuration>
					<source>${java.version}</source>
					<target>${java.version}</target>
				</configuration>
			</plugin>
		</plugins>

		<pluginManagement>
			<plugins>
				<plugin>
					<artifactId>maven-resources-plugin</artifactId>
					<version>2.6</version>
				</plugin>
				<plugin>
					<artifactId>maven-surefire-plugin</artifactId>
					<version>2.12.4</version>
				</plugin>
				<plugin>
					<artifactId>maven-compiler-plugin</artifactId>
					<version>2.5.1</version>
				</plugin>
				<plugin>
					<artifactId>maven-source-plugin</artifactId>
					<version>2.2.1</version>
				</plugin>
				<plugin>
					<artifactId>maven-javadoc-plugin</artifactId>
					<version>2.9</version>
				</plugin>
				<plugin>
					<artifactId>maven-gpg-plugin</artifactId>
					<version>1.4</version>
				</plugin>
				<plugin>
					<artifactId>maven-deploy-plugin</artifactId>
					<version>2.7</version>
				</plugin>
				<plugin>
					<groupId>org.nuiton</groupId>
					<artifactId>helper-maven-plugin</artifactId>
					<version>2.0</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>chemit at codelutin dot com</email>
			<organization>CodeLutin</organization>
			<organizationUrl>http://codelutin.com</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>

POM Entry

<dependency>
   <groupId>com.esotericsoftware.yamlbeans</groupId>
   <artifactId>yamlbeans</artifactId>
   <version>1.09</version>
</dependency>

Download

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



Download yamlbeans-1.09.jar file




PreviousNext

Related