2023-04-26 09:24:42 +02:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2023-05-17 16:13:46 +02:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2013-03-20 20:33:42 +01:00
|
|
|
|
2014-08-08 16:49:02 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2022-08-13 10:34:59 +02:00
|
|
|
|
2013-03-20 20:33:42 +01:00
|
|
|
<groupId>com.commafeed</groupId>
|
|
|
|
|
<artifactId>commafeed</artifactId>
|
2024-08-13 08:08:20 +02:00
|
|
|
<version>5.0.0-beta</version>
|
2013-03-20 20:33:42 +01:00
|
|
|
<name>CommaFeed</name>
|
2022-08-13 10:34:59 +02:00
|
|
|
<packaging>pom</packaging>
|
2013-04-03 16:03:55 +02:00
|
|
|
|
2013-03-20 20:33:42 +01:00
|
|
|
<properties>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2024-06-10 08:36:54 +02:00
|
|
|
<maven.compiler.release>17</maven.compiler.release>
|
2013-03-20 20:33:42 +01:00
|
|
|
</properties>
|
2022-08-13 10:56:07 +02:00
|
|
|
|
2023-05-17 16:13:46 +02:00
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2024-03-25 09:29:18 +00:00
|
|
|
<version>3.13.0</version>
|
2023-05-17 16:13:46 +02:00
|
|
|
<configuration>
|
|
|
|
|
<parameters>true</parameters>
|
2024-06-11 07:03:28 +02:00
|
|
|
|
|
|
|
|
<!-- treat warnings as errors -->
|
|
|
|
|
<!-- https://stackoverflow.com/a/33823355/ -->
|
|
|
|
|
<showWarnings>true</showWarnings>
|
|
|
|
|
<compilerArgs>
|
|
|
|
|
<!-- disable the "processing" linter because we have annotations that are processed at runtime -->
|
|
|
|
|
<!-- https://stackoverflow.com/a/76126981/ -->
|
|
|
|
|
<!-- disable the "classfile" linter because it generates "file missing" warnings about annotations with the "provided" scope -->
|
|
|
|
|
<arg>-Xlint:all,-processing,-classfile</arg>
|
|
|
|
|
<arg>-Werror</arg>
|
|
|
|
|
</compilerArgs>
|
2023-05-17 16:13:46 +02:00
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
2022-08-13 10:34:59 +02:00
|
|
|
<modules>
|
|
|
|
|
<module>commafeed-client</module>
|
|
|
|
|
<module>commafeed-server</module>
|
|
|
|
|
</modules>
|
2014-02-28 14:35:05 +01:00
|
|
|
|
2022-07-15 19:28:11 +02:00
|
|
|
</project>
|