JuniorKilnClient
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.kilnhg.tim-sparg</groupId> <artifactId>JuniorKilnClient</artifactId> <version>1.1</version> </dependency>
<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> <groupId>com.kilnhg.tim-sparg</groupId> <artifactId>JuniorKilnClient</artifactId> <version>1.1</version> <packaging>jar</packaging> <name>Junior Kiln Client</name> <description> Junior Kiln Client is a simple wrapper around the Kiln API making it trivial to call any of the end points mentioned in the Kiln Developer Documentation. </description> <url>https://tim-sparg.fogbugz.com/</url> <licenses> <license> <name>Apache 2</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>Tim Sparg</id> <name>Tim Sparg</name> <email>timothy.sparg@gmail.com</email> <url>http://tim-sparg.blogspot.com/</url> <roles> <role>developer</role> </roles> <timezone>+2</timezone> </developer> </developers> <dependencies> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>1.7.1</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.1.2</version> </dependency> <dependency> <groupId>com.kilnhg.tim-sparg</groupId> <artifactId>JuniorKilnDomain</artifactId> <version>1.0</version> </dependency> <dependency> <scope>test</scope> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.9</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.3.1</version> <configuration> <!-- to have the jar plugin pickup the nbm generated manifest --> <useDefaultManifestFile>true</useDefaultManifestFile> </configuration> </plugin> </plugins> </build> <scm> <connection>scm:hg:https://tim-sparg.kilnhg.com/Repo/Repositories/Junior-Kiln/Junior-Kiln-Client</connection> <developerConnection>scm:hg:https://tim-sparg.kilnhg.com/Repo/Repositories/Junior-Kiln/Junior-Kiln-Client</developerConnection> <url>https://tim-sparg.kilnhg.com/Repo/Repositories/Junior-Kiln/Junior-Kiln-Client</url> </scm> <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> </plugins> </build> </profile> </profiles> </project>