Files
commafeed/pom.xml

35 lines
961 B
XML
Raw Normal View History

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
<modelVersion>4.0.0</modelVersion>
2013-03-20 20:33:42 +01:00
<groupId>com.commafeed</groupId>
<artifactId>commafeed</artifactId>
2024-06-15 14:52:26 +02:00
<version>4.4.1</version>
2013-03-20 20:33:42 +01:00
<name>CommaFeed</name>
<packaging>pom</packaging>
2013-03-20 20:33:42 +01:00
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.release>17</maven.compiler.release>
2013-03-20 20:33:42 +01:00
</properties>
2023-05-17 16:13:46 +02:00
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
2023-05-17 16:13:46 +02:00
<configuration>
<parameters>true</parameters>
</configuration>
</plugin>
</plugins>
</build>
<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>