Skip to content

Commit 74f2616

Browse files
committed
Fix build script to include javadoc and sources jars, bump to beta-2
1 parent f05e8ed commit 74f2616

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ To report problems or ask a question about the alpha release, please [create an
3737
## Installation
3838

3939
```groovy
40-
compile('com.rollbar:rollbar-java:1.0.0-beta-1')
40+
compile('com.rollbar:rollbar-java:1.0.0-beta-2')
4141
```
4242

4343
## Upgrading from 0.5.4 or earlier to 1.0.0
@@ -156,15 +156,15 @@ dependency to your pom file:
156156
<dependency>
157157
<groupId>com.rollbar</groupId>
158158
<artifactId>rollbar-java</artifactId>
159-
<version>1.0.0-beta-1</version>
159+
<version>1.0.0-beta-2</version>
160160
</dependency>
161161
</dependencies>
162162
```
163163

164164
### Gradle
165165

166166
```groovy
167-
compile('com.rollbar:rollbar-java:1.0.0-beta-1')
167+
compile('com.rollbar:rollbar-java:1.0.0-beta-2')
168168
```
169169

170170
## 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-1
1+
VERSION_NAME=1.0.0-beta-2
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: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ subprojects {
3737
archives sourcesJar
3838
archives javadocJar
3939
}
40+
artifact sourcesJar
41+
artifact javadocJar
4042
from components.java
4143

4244
pom.withXml {
@@ -305,6 +307,8 @@ subprojects {
305307
archives androidSourcesJar
306308
archives androidJavadocsJar
307309
}
310+
artifact androidSourcesJar
311+
artifact androidJavadocsJar
308312

309313

310314
pom.withXml {

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-1";
28+
private static final String NOTIFIER_VERSION = "1.0.0-beta-2";
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)