Add module pom file for easier modules handling

This commit is contained in:
Julien Lengrand-Lambert
2019-10-16 11:45:06 +02:00
parent 4ead6fbc95
commit ac5bcf74e5

19
pom.xml Normal file
View File

@@ -0,0 +1,19 @@
<?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>
<packaging>pom</packaging>
<groupId>fr.lengrand</groupId>
<artifactId>dialogflow-fun-complete</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<java.version>11</java.version>
</properties>
<modules>
<module>dialogflow-fun-java</module>
</modules>
</project>