<?xml version="1.0" encoding="UTF-8"?> <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <groupId>com.threerings.nexus</groupId> <artifactId>nexus-project</artifactId> <packaging>pom</packaging> <version>1.1-SNAPSHOT</version> <name>Nexus Meta-Project</name> <description>A framework for developing distributed applications.</description> <url>http://github.com/threerings/nexus</url> <issueManagement> <url>http://github.com/threerings/nexus/issues</url> </issueManagement> <licenses> <license> <name>GNU Lesser General Public License (LGPL), Version 2.1</name> <url>http://www.fsf.org/licensing/licenses/lgpl.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>samskivert</id> <name>Michael Bayne</name> <email>mdb@samskivert.com</email> </developer> </developers> <scm> <connection>scm:git:git://github.com/threerings/nexus.git</connection> <developerConnection>scm:git:git@github.com:threerings/nexus.git</developerConnection> <url>http://github.com/threerings/nexus</url> </scm> <prerequisites> <maven>3.3.0</maven> </prerequisites> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <gwt.version>2.7.0</gwt.version> <guava.version>18.0</guava.version> <scala.version>2.11.7</scala.version> <maven-scala.version>2.15.2</maven-scala.version> <monotouch.version>5.1</monotouch.version> </properties> <modules> <module>core</module> <module>test-support</module> <module>gwt-io</module> <module>jvm-io</module> <module>server</module> <module>gwt-server</module> <module>jvm-server</module> <module>tools</module> </modules> <repositories> <repository> <!-- when we depend on a snapshot React, get that from SonaType's OSS repository --> <id>sonatype-snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> <releases><enabled>false</enabled></releases> <snapshots><enabled>true</enabled></snapshots> </repository> </repositories> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.4</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.3</version> <configuration> <source>1.7</source> <target>1.7</target> <fork>true</fork> <showDeprecation>true</showDeprecation> <showWarnings>true</showWarnings> <compilerArgs> <arg>-Xlint</arg> <arg>-Xlint:-serial</arg> <arg>-Xlint:-path</arg> </compilerArgs> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>2.7</version> <configuration> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.18.1</version> <configuration> <includes><include>**/*Test.java</include></includes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.3</version> <configuration> <quiet>true</quiet> <show>public</show> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.6</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <version>2.5.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.2</version> </plugin> </plugins> </pluginManagement> </build> <profiles> <!-- this shuts m2eclipse up about various Maven plugins --> <profile> <id>eclipse</id> <activation> <property> <name>m2e.version</name> </property> </activation> <build> <pluginManagement> <plugins> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <versionRange>[1.0,)</versionRange> <goals> <goal>enforce</goal> </goals> </pluginExecutionFilter> <action> <ignore /> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement> </build> </profile> <profile> <id>release-sign-artifacts</id> <activation> <property><name>performRelease</name><value>true</value></property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <keyname>mdb@samskivert.com</keyname> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>