apibuilder
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.jakewharton</groupId> <artifactId>apibuilder</artifactId> <version>1.1.1</version> </dependency>
<?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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <groupId>com.jakewharton</groupId> <artifactId>apibuilder</artifactId> <packaging>jar</packaging> <version>1.1.1</version> <name>API Builder</name> <description>A Java utility class which facilitates the construction of RESTful API wrappers using the builder pattern.</description> <url>https://github.com/JakeWharton/apibuilder/</url> <inceptionYear>2011</inceptionYear> <developers> <developer> <name>Jake Wharton</name> <email>jakewharton@gmail.com</email> <id>jakewharton</id> <url>http://jakewharton.com</url> <timezone>-5</timezone> <roles> <role>developer</role> </roles> </developer> </developers> <licenses> <license> <name>Apache License Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>http://github.com/JakeWharton/apibuilder/</url> <connection>scm:git:git://github.com/JakeWharton/apibuilder.git</connection> <developerConnection>scm:git:git@github.com:JakeWharton/apibuilder.git</developerConnection> </scm> <distributionManagement> <site> <id>github-project-site</id> <name>GitHub Project Pages</name> <url>gitsite:git@github.com/JakeWharton/apibuilder</url> <!-- YOU MUST PUT THE FOLLOWING IN ~/.m2/settings.xml <servers> <server> <id>github-project-site</id> <username>git</username> </server> </servers> --> </site> </distributionManagement> <organization> <name>Jake Wharton</name> <url>http://jakewharton.com</url> </organization> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/JakeWharton/apibuilder/issues</url> </issueManagement> <properties> <java.version>1.6</java.version> <junit.version>4.8.2</junit.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>2.2</version> </plugin> </plugins> <extensions> <extension> <groupId>org.apache.maven.scm</groupId> <artifactId>maven-scm-provider-gitexe</artifactId> <version>1.4</version> </extension> <extension> <groupId>org.apache.maven.scm</groupId> <artifactId>maven-scm-manager-plexus</artifactId> <version>1.4</version> </extension> <extension> <groupId>org.kathrynhuxtable.maven.wagon</groupId> <artifactId>wagon-gitsite</artifactId> <version>0.3.1</version> </extension> </extensions> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.1.2</version> <reportSets> <reportSet> <reports> <report>summary</report> <report>issue-tracking</report> <report>dependencies</report> <report>dependency-convergence</report> <report>dependency-management</report> <report>distribution-management</report> <report>license</report> <report>plugins</report> <report>project-team</report> <report>scm</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.7</version> <configuration> <links> <link>http://download.oracle.com/javase/6/docs/api/</link> </links> </configuration> <reportSets> <reportSet> <id>default</id> <reports> <report>javadoc</report> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> <profiles> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <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> <plugin> <groupId>com.jakewharton</groupId> <artifactId>github-deploy-maven-plugin</artifactId> <version>1.0.1</version> <configuration> <types> <type>jar</type> </types> </configuration> <goals> <goal>deploy</goal> </goals> </plugin> </plugins> </build> </profile> </profiles> </project>