java-http-observatory-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>eu.toennies</groupId>
<artifactId>java-http-observatory-api</artifactId>
<version>1.0</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> <groupId>eu.toennies</groupId> <artifactId>java-http-observatory-api</artifactId> <version>1.0</version> <name>Java HTTP Observatory API</name> <description>This Java library provides basic access to the Mozilla HTTP Observatory API.</description> <url>https://github.com/stoennies/java-http-observatory-api</url> <licenses> <license> <name>GNU GENERAL PUBLIC LICENSE, Version 3.0</name> <url>https://www.gnu.org/licenses/gpl.html</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git://github.com/stoennies/java-http-observatory-api.git</connection> <developerConnection>scm:git:git@github.com:stoennies/java-http-observatory-api.git</developerConnection> <url>https://github.com/stoennies/java-http-observatory-api</url> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <developers> <developer> <id>stoennies</id> <name>Sascha Tönnies</name> <roles> <role>developer</role> <role>packager</role> </roles> </developer> </developers> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/stoennies/java-http-observatory-api/issues</url> </issueManagement> <dependencies> <!-- core dependencies --> <dependency> <groupId>org.json</groupId> <artifactId>org.json</artifactId> <version>chargebee-1.0</version> </dependency> <!-- testing --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> </dependencies> <!-- using sonatype for deployment --> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <!-- Adding filtered resources for the version.properties file --> <resources> <resource> <directory>src/main/resources</directory> <includes> <include>version.properties</include> </includes> <filtering>true</filtering> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.5.1</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.5.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </execution> </executions> <configuration> <failOnError>false</failOnError> </configuration> </plugin> <!-- using findbugs for code quality --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>3.0.3</version> <!-- this will make findbugs run during mvn verify --> <executions> <execution> <phase>verify</phase> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <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.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>travis-install-skip-findbugs</id> <activation> <property> <name>skipFindBugs</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <executions> <execution> <phase>none</phase> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>