Skip to content

Commit

Permalink
Use snapshot version of raven, send relase.
Browse files Browse the repository at this point in the history
This enables release tracking in sentry.
  • Loading branch information
csmith committed Feb 13, 2016
1 parent 9cde852 commit f270d34
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
7 changes: 3 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ dependencies {
bundle group: 'org.slf4j', name: 'slf4j-api', version:'1.7.10'
bundle group: 'com.squareup.dagger', name: 'dagger', version: '1.2.1'
bundle group: 'com.esotericsoftware.yamlbeans', name: 'yamlbeans', version: '1.08'
bundle group: 'net.kencochrane.raven', name: 'raven', version: '6.0.0'
bundle group: 'net.kencochrane.raven', name: 'raven', version: '6.0.1-SNAPSHOT'
bundle group: 'com.google.guava', name:'guava', version: '18.0'
bundle group: 'net.engio', name: 'mbassador', version: '1.2.4'
bundle group: 'com.dmdirc', name: 'util', version: '+', changing: true
Expand All @@ -67,9 +67,8 @@ targetCompatibility = 1.8

repositories {
mavenCentral()
maven {
url 'http://artifactory.dmdirc.com/artifactory/repo'
}
maven { url 'http://artifactory.dmdirc.com/artifactory/repo' }
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
}

apply from: 'gradle/analysis.gradle'
Expand Down
1 change: 1 addition & 0 deletions src/com/dmdirc/logger/SentryErrorReporter.java
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ private String getModeAliasReportTitle(final String channelModes, final String u
private EventBuilder newEventBuilder() {
return new EventBuilder()
.withServerName("")
.withRelease(clientInfo.getVersion())
.withTag("version", clientInfo.getVersion())
.withTag("version.major", clientInfo.getMajorVersion())
.withTag("os.name", clientInfo.getOperatingSystemName())
Expand Down

0 comments on commit f270d34

Please sign in to comment.