2022-08-13 10:34:59 +02:00
|
|
|
<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">
|
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>
|
2022-08-13 10:56:07 +02:00
|
|
|
<version>3.0.0</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>
|
2022-07-14 13:17:47 +02:00
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
2013-03-20 20:33:42 +01:00
|
|
|
</properties>
|
2022-08-13 10:56:07 +02:00
|
|
|
|
2019-04-22 20:30:06 +02:00
|
|
|
<profiles>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>only-eclipse</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<property>
|
|
|
|
|
<name>m2e.version</name>
|
|
|
|
|
</property>
|
|
|
|
|
</activation>
|
|
|
|
|
<build>
|
|
|
|
|
<directory>target-ide</directory>
|
|
|
|
|
</build>
|
|
|
|
|
</profile>
|
|
|
|
|
</profiles>
|
|
|
|
|
|
2023-01-17 21:14:38 +01:00
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
<version>3.10.1</version>
|
|
|
|
|
</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>
|