Skip to content

Commit 3d9cc20

Browse files
authored
Merge pull request #79 from rollbar/android-jar-not-aar
Stop adding the jar.asc to the build for android
2 parents c1adf22 + 68e2b55 commit 3d9cc20

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ To report problems or ask a question about the beta release, please [create an i
3939
## Installation
4040

4141
```groovy
42-
compile('com.rollbar:rollbar-java:1.0.0-beta-2')
42+
compile('com.rollbar:rollbar-java:1.0.0-beta-3')
4343
```
4444

4545
## Upgrading from 0.5.4 or earlier to 1.0.0
@@ -158,15 +158,15 @@ dependency to your pom file:
158158
<dependency>
159159
<groupId>com.rollbar</groupId>
160160
<artifactId>rollbar-java</artifactId>
161-
<version>1.0.0-beta-2</version>
161+
<version>1.0.0-beta-3</version>
162162
</dependency>
163163
</dependencies>
164164
```
165165

166166
### Gradle
167167

168168
```groovy
169-
compile('com.rollbar:rollbar-java:1.0.0-beta-2')
169+
compile('com.rollbar:rollbar-java:1.0.0-beta-3')
170170
```
171171

172172
## Usage

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION_NAME=1.0.0-beta-2
1+
VERSION_NAME=1.0.0-beta-3
22
GROUP=com.rollbar
33

44
POM_DESCRIPTION=For connecting your applications built on the JVM to Rollbar for Error Reporting

gradle/release.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,14 +171,12 @@ subprojects {
171171

172172
artifact bundleRelease
173173
artifacts {
174-
archives androidClassJar
175174
archives androidSourcesJar
176175
archives androidJavadocsJar
177176
}
178177
artifact androidSourcesJar
179178
artifact androidJavadocsJar
180179

181-
182180
pom.withXml {
183181
def dependencies = asNode().appendNode('dependencies')
184182
configurations.compile.allDependencies.each {

rollbar-android/src/main/java/com/rollbar/android/Rollbar.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
import java.util.concurrent.TimeUnit;
2626

2727
public class Rollbar {
28-
private static final String NOTIFIER_VERSION = "1.0.0-beta-2";
28+
private static final String NOTIFIER_VERSION = "1.0.0-beta-3";
2929
private static final String ITEM_DIR_NAME = "rollbar-items";
3030
private static final String ANDROID = "android";
3131
private static final String DEFAULT_ENVIRONMENT = "production";

0 commit comments

Comments
 (0)