Download jaxb2-fluent-api-3.0.jar file

Introduction

You can download jaxb2-fluent-api-3.0.jar in this page.

License

The Apache Software License, Version 2.0

Type List

jaxb2-fluent-api-3.0.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.jvnet.jaxb2_commons/jaxb2-fluent-api/pom.properties
META-INF/maven/org.jvnet.jaxb2_commons/jaxb2-fluent-api/pom.xml
META-INF/services/com.sun.tools.xjc.Plugin
org.jvnet.jaxb2_commons.plugin.fluent_api.FluentApiPlugin.class
org.jvnet.jaxb2_commons.plugin.fluent_api.FluentMethodInfo.class
org.jvnet.jaxb2_commons.plugin.fluent_api.FluentMethodType.class

Pom

jaxb2-fluent-api-3.0.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>org.jvnet.jaxb2_commons</groupId>
	<artifactId>jaxb2-fluent-api</artifactId>
	<packaging>jar</packaging>

	<version>3.0</version>

	<name>JAXB2 Commons - Fluent API Plugin</name>

	<url>http://java.net/projects/jaxb2-commons/pages/fluent-api</url>

	<description>
		Causes JAXB RI 2 XJC to generate additional methods that allows method chaining.
		Method chaining is useful when building object tree in memory, allowing the code 
		to be done in a concise way. The code that uses this plugin can still run with any
		JAXB2 implementation.
	</description>

	<parent>
		<groupId>org.sonatype.oss</groupId>
		<artifactId>oss-parent</artifactId>
		<version>7</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>
			<name>Hanson Char</name>
		</developer>
	</developers>

    <contributors>
        <contributor>
            <name>Eirik Lygre</name>
        </contributor>
    </contributors>

	<scm>
		<connection>scm:svn:https://svn.java.net/svn/jaxb2-commons~svn/fluent-api/tags/3.0</connection>
		<developerConnection>scm:svn:https://svn.java.net/svn/jaxb2-commons~svn/fluent-api/tags/3.0</developerConnection>
		<url>http://java.net/projects/jaxb2-commons/sources/svn/show/fluent-api/tags/3.0</url>
	</scm>
	
	<dependencies>
		<dependency>  
			<groupId>com.sun.xml.bind</groupId>
			<artifactId>jaxb-xjc</artifactId>
			<version>2.1.13</version>
			<scope>provided</scope>
		</dependency>  
	</dependencies>
	
	<build>
		<pluginManagement>
			<plugins>
				<plugin>
					<inherited>true</inherited>
					<artifactId>maven-compiler-plugin</artifactId>
					<configuration>
						<source>1.5</source>
						<target>1.5</target>
					</configuration>
				</plugin>
			</plugins>
		</pluginManagement>
		<plugins>
			<plugin>
				<artifactId>maven-source-plugin</artifactId>
				<executions>
					<execution>
						<id>attach-source</id>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>

</project>

POM Entry

<dependency>
   <groupId>org.jvnet.jaxb2_commons</groupId>
   <artifactId>jaxb2-fluent-api</artifactId>
   <version>3.0</version>
</dependency>

Download

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



Download jaxb2-fluent-api-3.0.jar file




PreviousNext

Related