jstorm-runner: Add maven repository for JStorm dependency
Project: http://git-wip-us.apache.org/repos/asf/beam/repo Commit: http://git-wip-us.apache.org/repos/asf/beam/commit/00b9c5c8 Tree: http://git-wip-us.apache.org/repos/asf/beam/tree/00b9c5c8 Diff: http://git-wip-us.apache.org/repos/asf/beam/diff/00b9c5c8 Branch: refs/heads/jstorm-runner Commit: 00b9c5c867a57c291c43caa2b554dda9bb3228ba Parents: 87aaa6e Author: basti.lj <[email protected]> Authored: Thu Aug 17 19:13:50 2017 +0800 Committer: Pei He <[email protected]> Committed: Sat Aug 19 12:03:01 2017 +0800 ---------------------------------------------------------------------- runners/jstorm/pom.xml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/beam/blob/00b9c5c8/runners/jstorm/pom.xml ---------------------------------------------------------------------- diff --git a/runners/jstorm/pom.xml b/runners/jstorm/pom.xml index 75387ef..681adb5 100644 --- a/runners/jstorm/pom.xml +++ b/runners/jstorm/pom.xml @@ -34,6 +34,37 @@ <jstorm.core.version>2.5.0-SNAPSHOT</jstorm.core.version> </properties> + <repositories> + <repository> + <id>apache.snapshots</id> + <name>Apache Snapshot Repository</name> + <url>https://repository.apache.org/snapshots</url> + <releases> + <enabled>false</enabled> + </releases> + </repository> + <repository> + <id>ossrh releases</id> + <url>https://oss.sonatype.org/content/repositories/releases</url> + <releases> + <enabled>true</enabled> + </releases> + <snapshots> + <enabled>false</enabled> + </snapshots> + </repository> + <repository> + <id>ossrh snapshots</id> + <url>https://oss.sonatype.org/content/repositories/snapshots</url> + <releases> + <enabled>false</enabled> + </releases> + <snapshots> + <enabled>true</enabled> + </snapshots> + </repository> + </repositories> + <profiles> <profile> <!-- This profile adds execution of ValidatesRunner integration tests
