jreddit
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.jreddit</groupId> <artifactId>jreddit</artifactId> <version>1.0.3</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/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.github.jreddit</groupId> <artifactId>jreddit</artifactId> <version>1.0.3</version> <name>jReddit</name> <description>jReddit is a wrapper for the Reddit API written in Java.</description> <url>https://github.com/karan/jReddit</url> <issueManagement> <url>https://github.com/karan/jReddit/issues</url> <system>GitHub Issues</system> </issueManagement> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://github.com/karan/jReddit</url> <connection>scm:git:git://github.com/karan/jReddit.git</connection> <developerConnection>scm:git:git@github.com:karan/jReddit.git</developerConnection> </scm> <developers> <developer> <id>karan</id> <name>Karan Goel</name> <email>karan@goel.im</email> <url>http://www.goel.im</url> <roles> <role>developer</role> </roles> </developer> </developers> <contributors> <contributor> <name>Andrei Sfat</name> <url>http://www.sfatandrei.com</url> <roles> <role>developer</role> </roles> </contributor> <contributor> <name>Raul Rene Lepsa</name> <roles> <role>developer</role> </roles> </contributor> <contributor> <name>Simon Kassing</name> <roles> <role>developer</role> </roles> </contributor> </contributors> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <!-- dependencies versions --> <com.googlecode.jsonsimple.version>1.1.1</com.googlecode.jsonsimple.version> <org.apache.httpcomponents.httpclient.version>4.3.3</org.apache.httpcomponents.httpclient.version> <org.apache.commons.io.version>1.3.2</org.apache.commons.io.version> <org.mockito.version>1.9.5</org.mockito.version> <junit.version>4.8.1</junit.version> <maven.source.plugin.version>2.2.1</maven.source.plugin.version> <maven.javadoc.plugin.version>2.9.1</maven.javadoc.plugin.version> <nexus.staging.maven.plugin.version>1.6</nexus.staging.maven.plugin.version> <maven.release.plugin.version>2.1</maven.release.plugin.version> <maven.gpg.plugin.version>1.5</maven.gpg.plugin.version> <org.eluder.coveralls.version>3.0.1</org.eluder.coveralls.version> <org.codehaus.mojo.cobertura.maven.plugin.version>2.6</org.codehaus.mojo.cobertura.maven.plugin.version> </properties> <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>${maven.gpg.plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>doclint-java8-disable</id> <activation> <jdk>[1.8,)</jdk> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.3</version> <configuration> <reportPlugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </plugin> </reportPlugins> </configuration> </plugin> </plugins> </build> </profile> </profiles> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>${maven.release.plugin.version}</version> <configuration> <mavenExecutorId>forked-path</mavenExecutorId> <useReleaseProfile>false</useReleaseProfile> <arguments>-Psonatype-oss-release</arguments> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <!-- required for Sonartype--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven.source.plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- required for Sonartype--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven.javadoc.plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- used to avoid using nexus UI to manually stage releases --> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${nexus.staging.maven.plugin.version}</version> <extensions>true</extensions> <inherited>false</inherited> <configuration> <serverId>sonatype-nexus-releases</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <stagingProfileId>3ebea71aace18d</stagingProfileId> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <version>${org.codehaus.mojo.cobertura.maven.plugin.version}</version> <configuration> <format>xml</format> <maxmem>256m</maxmem> <!-- aggregated reports for multi-module projects --> <aggregate>true</aggregate> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.googlecode.json-simple</groupId> <artifactId>json-simple</artifactId> <version>${com.googlecode.jsonsimple.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>${org.mockito.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.3.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>${org.apache.httpcomponents.httpclient.version}</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-io</artifactId> <version>${org.apache.commons.io.version}</version> </dependency> <dependency> <groupId>org.eluder.coveralls</groupId> <artifactId>coveralls-maven-plugin</artifactId> <version>${org.eluder.coveralls.version}</version> </dependency> </dependencies> </project>