Skip to content

Instantly share code, notes, and snippets.

@Randgalt
Created September 15, 2015 21:53
Show Gist options
  • Save Randgalt/582df04c51da45145cb2 to your computer and use it in GitHub Desktop.
Save Randgalt/582df04c51da45145cb2 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.bluejeans.speedo</groupId>
<artifactId>platform-parent</artifactId>
<version>0.5.0-SNAPSHOT</version>
</parent>
<artifactId>example-service</artifactId>
<version>0.4.0-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>example-service-server</module>
<module>example-service-client</module>
</modules>
<properties>
<service-base-version>0.5.0-SNAPSHOT</service-base-version>
</properties>
<dependencies>
<dependency>
<groupId>com.bluejeans.speedo</groupId>
<artifactId>service-base</artifactId>
<version>${service-base-version}</version>
</dependency>
</dependencies>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment