gridshore-nosapi
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>nl.gridshore.nosapi</groupId> <artifactId>gridshore-nosapi</artifactId> <version>0.2.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright (c) 2011. Gridshore ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. --> <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>nl.gridshore.nosapi</groupId> <artifactId>gridshore-nosapi</artifactId> <version>0.2.0</version> <packaging>pom</packaging> <name>Gridshore NOS API</name> <description> This project is a java wrapper and client for the NOS open data API. The project consists of two modules. The nos-api-client, this is what you can use for your own project. The other component is the example. A basic implementation that uses the nos-api-client to show what you can do with it. </description> <url>https://github.com/jettro/JavaNosApi</url> <licenses> <license> <name>Apache 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> </license> </licenses> <scm> <connection>scm:git:git@github.com:jettro/JavaNosApi.git</connection> <url>scm:git:git@github.com:jettro/JavaNosApi.git</url> <developerConnection>scm:git:git@github.com:jettro/JavaNosApi.git</developerConnection> </scm> <distributionManagement> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <url>http://oss.sonatype.org/content/repositories/snapshots</url> <uniqueVersion>true</uniqueVersion> </snapshotRepository> <repository> <id>sonatype-nexus-staging</id> <url>http://oss.sonatype.org/service/local/staging/deploy/maven2</url> <uniqueVersion>false</uniqueVersion> </repository> </distributionManagement> <properties> <slf4j.version>1.6.1</slf4j.version> <jackson.version>1.7.1</jackson.version> <spring.version>3.0.5.RELEASE</spring.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <modules> <module>example-web</module> <module>nos-api-client</module> </modules> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <encoding>utf-8</encoding> <source>1.6</source> <target>1.6</target> </configuration> <version>2.3.2</version> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.6</version> <configuration> <includes> <include>**/*Test.java</include> </includes> <excludes> <exclude>**/*IntegrationTest.java</exclude> </excludes> </configuration> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.1</version> <configuration> <mavenExecutorId>forked-path</mavenExecutorId> </configuration> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>2.7</version> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>2.5</version> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> <version>1.6.2</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jul-to-slf4j</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>0.9.27</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.1</version> <scope>test</scope> </dependency> </dependencies> <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> <!--suppress MavenModelInspection --> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <developers> <developer> <name>Jettro Coenradie</name> <email>jettro@gridshore.nl</email> <organization>Gridshore</organization> <organizationUrl>www.gridshore.nl</organizationUrl> <roles> <role>Project Owner</role> </roles> </developer> </developers> </project>