Skip to content

Instantly share code, notes, and snippets.

@Randgalt
Created July 7, 2015 21:56
Show Gist options
  • Save Randgalt/70dfb7f8f63fbc913844 to your computer and use it in GitHub Desktop.
Save Randgalt/70dfb7f8f63fbc913844 to your computer and use it in GitHub Desktop.
project {
modelVersion '4.0.0'
parent {
groupId 'com.bluejeans.speedo'
artifactId 'example-service'
version '0.1.0-SNAPSHOT'
}
artifactId 'example-service-server'
version '0.1.0-SNAPSHOT'
dependencies {
dependency {
groupId 'com.bluejeans.speedo'
artifactId 'example-service-client'
version '${project.version}'
}
dependency {
groupId 'io.soabase'
artifactId 'soabase-client'
scope 'test'
}
dependency {
groupId 'com.bluejeans.speedo'
artifactId 'service-base-test'
version '${service-base-version}'
scope 'test'
}
}
build {
plugins {
plugin {
groupId 'com.github.chrischristo'
artifactId 'capsule-maven-plugin'
executions {
execution {
phase 'package'
goals {
goal 'build'
}
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment