legislation-gov-uk
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.leibnizcenter</groupId> <artifactId>legislation-gov-uk</artifactId> <version>1.5.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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>org.leibnizcenter</groupId> <artifactId>legislation-gov-uk</artifactId> <version>1.5.0</version> <packaging>jar</packaging> <licenses> <license> <name>MIT License</name> <url>https://github.com/digitalheir/java-legislation-gov-uk-library/blob/master/LICENSE.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Maarten Trompper</name> <email>m.f.a.trompper@uva.nl</email> <organization>Leibniz Center for Law</organization> <organizationUrl>http://www.leibnizcenter.org/</organizationUrl> </developer> </developers> <name>${project.groupId}:${project.artifactId}</name> <description>Java library for consuming the Legislation.gov.uk API</description> <url>https://github.com/digitalheir/java-legislation-gov-uk-library</url> <scm> <connection>scm:git:git@github.com:digitalheir/java-legislation-gov-uk-library.git</connection> <developerConnection>scm:git:git@github.com:digitalheir/java-legislation-gov-uk-library.git </developerConnection> <url>git@github.com:digitalheir/java-legislation-gov-uk-library.git</url> </scm> <dependencies> <dependency> <groupId>org.jsoup</groupId> <artifactId>jsoup</artifactId> <version>1.8.3</version> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>19.0-rc2</version> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.3.1</version> </dependency> <dependency> <groupId>com.squareup.okhttp</groupId> <artifactId>okhttp</artifactId> <version>2.4.0</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.1</version> <scope>test</scope> </dependency> <!--<dependency><!– jsoup HTML parser library @ http://jsoup.org/ –>--> <!--<groupId>org.jsoup</groupId>--> <!--<artifactId>jsoup</artifactId>--> <!--<version>1.8.1</version>--> <!--</dependency>--> </dependencies> <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> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <configuration> </configuration> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.3</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <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> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> </project>