grumpy
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.davidmoten</groupId>
<artifactId>grumpy</artifactId>
<version>0.4.8</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>com.github.davidmoten</groupId>
<artifactId>sonatype-parent</artifactId>
<version>0.1</version>
</parent>
<artifactId>grumpy</artifactId>
<version>0.4.8</version>
<name>${project.artifactId}</name>
<description>OGC tools including WMS server</description>
<packaging>pom</packaging>
<url>http://github.com/davidmoten/grumpy</url>
<properties>
<maven.compiler.target>1.8</maven.compiler.target>
<slf4j.version>1.7.36</slf4j.version>
<geotools.version>28.2</geotools.version>
<jetty.plugin.version>9.4.51.v20230217</jetty.plugin.version>
<junit.version>4.13.2</junit.version>
<cobertura.version>2.7</cobertura.version>
<checkstyle.version>2.11</checkstyle.version>
<findbugs.version>3.0.5</findbugs.version>
<javadoc.version>3.5.0</javadoc.version>
<pmd.version>3.20.0</pmd.version>
<jdepend.version>2.0</jdepend.version>
<javancss.version>2.0</javancss.version>
<project.info.version>3.4.2</project.info.version>
<jxr.version>3.3.0</jxr.version>
<taglist.version>3.0.0</taglist.version>
<m3.site.version>3.12.1</m3.site.version>
<changelog.version>2.2</changelog.version>
<coverage.reports.dir>${project.build.directory}/target/coverage-reports</coverage.reports.dir>
<war.plugin.version>3.3.2</war.plugin.version>
<scm.url>scm:git:https://github.com/davidmoten/grumpy.git</scm.url>
<guava.mini.version>0.1.4</guava.mini.version>
</properties>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<ciManagement>
<system>Travis</system>
<url>https://travis-ci.org/davidmoten/grumpy</url>
</ciManagement>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/davidmoten/grumpy/issues</url>
</issueManagement>
<inceptionYear>2013</inceptionYear>
<developers>
<developer>
<id>dave</id>
<name>Dave Moten</name>
<url>https://github.com/davidmoten/</url>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
<timezone>+10</timezone>
</developer>
</developers>
<scm>
<connection>${scm.url}</connection>
<developerConnection>${scm.url}</developerConnection>
<url>${scm.url}</url>
<tag>0.4.8</tag>
</scm>
<modules>
<module>grumpy-core</module>
<module>grumpy-projection</module>
<module>grumpy-ogc</module>
<module>grumpy-ogc-layers</module>
<module>wms-demo</module>
<module>grumpy-app</module>
</modules>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<configuration>
<source>${maven.compiler.target}</source>
<target>${maven.compiler.target}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.8</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
<!-- <execution> <id>report</id> <phase>test</phase>
<goals> <goal>report</goal> </goals> <configuration> </configuration> </execution> -->
</executions>
</plugin>
<plugin>
<artifactId>maven-site-plugin</artifactId>
<version>${m3.site.version}</version>
<executions>
<execution>
<id>attach-descriptor</id>
<goals>
<goal>attach-descriptor</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${javadoc.version}</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<additionalJOptions>
<additionalJOption>-Xdoclint:none</additionalJOption>
</additionalJOptions>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<!-- this one should go first so that it is available to other
plugins when they run -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<version>${jxr.version}</version>
<configuration>
<aggregate>true</aggregate>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>${cobertura.version}</version>
<configuration>
<aggregate>false</aggregate>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>${pmd.version}</version>
<configuration>
<targetJdk>${maven.compiler.target}</targetJdk>
<aggregate>true</aggregate>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>${findbugs.version}</version>
<configuration>
<xmlOutput>true</xmlOutput>
<effort>Max</effort>
<!--<excludeFilterFile>findbugs-exclude-filter-amsa.xml</excludeFilterFile> -->
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jdepend-maven-plugin</artifactId>
<version>${jdepend.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>${project.info.version}</version>
<configuration>
<dependencyDetailsEnabled>false</dependencyDetailsEnabled>
<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>taglist-maven-plugin</artifactId>
<version>${taglist.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${javadoc.version}</version>
<configuration>
<aggregate>true</aggregate>
</configuration>
</plugin>
<!-- commented this plugin out because cannot run offline (e.g.
at home) -->
<!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-changelog-plugin</artifactId>
<version>${changelog.version}</version> <configuration> <username>${svn.username}</username>
<password>${svn.password}</password> </configuration> </plugin> -->
</plugins>
</reporting>
<distributionManagement>
<site>
<id>grumpy-site</id>
<url>http://davidmoten.github.io/grumpy</url>
</site>
</distributionManagement>
<repositories>
<repository>
<id>geotools</id>
<name>geotools</name>
<url>https://repo.osgeo.org/repository/release</url>
</repository>
</repositories>
</project>