41 lines
1003 B
XML
41 lines
1003 B
XML
<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>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>2.2.7.RELEASE</version>
|
|
</parent>
|
|
|
|
<groupId>com.charego</groupId>
|
|
<artifactId>lingo-parent</artifactId>
|
|
<version>1.0</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<name>Lingo</name>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<java.version>11</java.version>
|
|
</properties>
|
|
|
|
<modules>
|
|
<module>api</module>
|
|
<module>common</module>
|
|
<module>server</module>
|
|
</modules>
|
|
|
|
<profiles>
|
|
<!-- Disable client module by default -->
|
|
<!-- The build fails under headless JDK -->
|
|
<profile>
|
|
<id>javafx</id>
|
|
<modules>
|
|
<module>client</module>
|
|
</modules>
|
|
</profile>
|
|
</profiles>
|
|
|
|
</project>
|