Files
commafeed/pom.xml

46 lines
1.2 KiB
XML
Raw Normal View History

<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
<modelVersion>4.0.0</modelVersion>
2013-03-20 20:33:42 +01:00
<groupId>com.commafeed</groupId>
<artifactId>commafeed</artifactId>
<version>3.0.0</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>
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>
<profiles>
<profile>
<id>only-eclipse</id>
<activation>
<property>
<name>m2e.version</name>
</property>
</activation>
<build>
<directory>target-ide</directory>
</build>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
</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>