Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ To report problems or ask a question about the beta release, please [create an i
## Installation

```groovy
compile('com.rollbar:rollbar-java:1.0.0-beta-2')
compile('com.rollbar:rollbar-java:1.0.0-beta-3')
```

## Upgrading from 0.5.4 or earlier to 1.0.0
Expand Down Expand Up @@ -158,15 +158,15 @@ dependency to your pom file:
<dependency>
<groupId>com.rollbar</groupId>
<artifactId>rollbar-java</artifactId>
<version>1.0.0-beta-2</version>
<version>1.0.0-beta-3</version>
</dependency>
</dependencies>
```

### Gradle

```groovy
compile('com.rollbar:rollbar-java:1.0.0-beta-2')
compile('com.rollbar:rollbar-java:1.0.0-beta-3')
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION_NAME=1.0.0-beta-2
VERSION_NAME=1.0.0-beta-3
GROUP=com.rollbar

POM_DESCRIPTION=For connecting your applications built on the JVM to Rollbar for Error Reporting
Expand Down
2 changes: 0 additions & 2 deletions gradle/release.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -171,14 +171,12 @@ subprojects {

artifact bundleRelease
artifacts {
archives androidClassJar
archives androidSourcesJar
archives androidJavadocsJar
}
artifact androidSourcesJar
artifact androidJavadocsJar


pom.withXml {
def dependencies = asNode().appendNode('dependencies')
configurations.compile.allDependencies.each {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import java.util.concurrent.TimeUnit;

public class Rollbar {
private static final String NOTIFIER_VERSION = "1.0.0-beta-2";
private static final String NOTIFIER_VERSION = "1.0.0-beta-3";
private static final String ITEM_DIR_NAME = "rollbar-items";
private static final String ANDROID = "android";
private static final String DEFAULT_ENVIRONMENT = "production";
Expand Down