integrations-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.envimate.webmate.integrations</groupId>
<artifactId>integrations-parent</artifactId>
<version>1.0.7</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (C) 2017 [Richard Hauswald, Nune Isabekyan] (envimate GmbH - https://envimate.com/)
-->
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.envimate.webmate</groupId>
<artifactId>parent</artifactId>
<version>1.0.7</version>
</parent>
<packaging>pom</packaging>
<groupId>com.envimate.webmate.integrations</groupId>
<artifactId>integrations-parent</artifactId>
<name>Webmate - integrations</name>
<modules>
<module>spark</module>
<module>aws-lambda</module>
<module>multipart</module>
<module>mapmate</module>
<module>jetty</module>
<module>servlet</module>
</modules>
<dependencies>
<!--
| All extensions depend on the core
-->
<dependency>
<groupId>com.envimate.webmate</groupId>
<artifactId>core</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<!--
| Add standard LICENSE and NOTICE files
-->
<plugin>
<artifactId>maven-remote-resources-plugin</artifactId>
</plugin>
<!--
| Generate sources jar
-->
<plugin>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<!--
| Generate javadoc jar
-->
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>