Skip to content

Commit

Permalink
Merge pull request #79 from rollbar/android-jar-not-aar
Browse files Browse the repository at this point in the history
Stop adding the jar.asc to the build for android
  • Loading branch information
rokob authored Nov 8, 2017
2 parents c1adf22 + 68e2b55 commit 3d9cc20
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
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

0 comments on commit 3d9cc20

Please sign in to comment.