Repository: incubator-wave Updated Branches: refs/heads/feature/WAVE-440-update-oauth-jars-version [created] aa48fd862
WAVE-440 - updates oauth jars version and adds Atlassion repo. Project: http://git-wip-us.apache.org/repos/asf/incubator-wave/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-wave/commit/aa48fd86 Tree: http://git-wip-us.apache.org/repos/asf/incubator-wave/tree/aa48fd86 Diff: http://git-wip-us.apache.org/repos/asf/incubator-wave/diff/aa48fd86 Branch: refs/heads/feature/WAVE-440-update-oauth-jars-version Commit: aa48fd8620a0af3ea0faacd3f1bbadffe7ad48ac Parents: 3dc20d6 Author: Yuri Zelikov <yur...@apache.org> Authored: Sun Apr 16 16:43:36 2017 +0300 Committer: Yuri Zelikov <yur...@apache.org> Committed: Sun Apr 16 16:43:36 2017 +0300 ---------------------------------------------------------------------- wave/build.gradle | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-wave/blob/aa48fd86/wave/build.gradle ---------------------------------------------------------------------- diff --git a/wave/build.gradle b/wave/build.gradle index b84b303..bfe2fb9 100644 --- a/wave/build.gradle +++ b/wave/build.gradle @@ -115,6 +115,9 @@ repositories { maven { url 'https://oss.sonatype.org/service/local/repositories/snapshots/content/' } + maven { + url 'https://maven.atlassian.com/3rdparty/' + } } dependencies { @@ -188,9 +191,9 @@ dependencies { [group: "javax.jdo", name: "jdo2-api", version: "2.1"], // [?, ?] [group: "jline", name: "jline", version: "0.9.94"], // [?, ?] [group: "joda-time", name: "joda-time", version: "1.6"], // [?, ?] - [group: "net.oauth.core", name: "oauth-provider", version: "20100527"], // [?, ?] - [group: "net.oauth.core", name: "oauth", version: "20100527"], // [?, ?] - [group: "net.oauth.core", name: "oauth-consumer", version: "20100527"], // [?, ?] + [group: "net.oauth.core", name: "oauth-provider", version: "20100601-atlassian-2"], // [?, ?] + [group: "net.oauth.core", name: "oauth", version: "20100601-atlassian-2"], // [?, ?] + [group: "net.oauth.core", name: "oauth-consumer", version: "20100601-atlassian-2"], // [?, ?] [group: "xerces", name: "xercesImpl", version: "2.11.0"], // [?, ?] [group: "xpp3", name: "xpp3", version: "1.1.4c"], // [?, ?] [group: "xpp3", name: "xpp3_xpath", version: "1.1.4c"], // [?, ?] @@ -409,7 +412,7 @@ task gwtDev { } doLast { javaexec { - main = "com.google.gwt.dev.codeserver.CodeServer" + main = "com.google.gwt.dev.DevMode" classpath { [ sourceSets.main.java.srcDirs, @@ -419,11 +422,10 @@ task gwtDev { ] } args = [ + "-noserver", "-bindAddress", "127.0.0.1", - "-style", "PRETTY", + "-startupUrl", "http://localhost:9898", "-logLevel", "DEBUG", - "-noprecompile", - "-noincremental", "org.waveprotocol.box.webclient.WebClientDev", ] }