Skip to content

Commit

Permalink
Fix build script to include javadoc and sources jars, bump to beta-2
Browse files Browse the repository at this point in the history
  • Loading branch information
rokob committed Oct 27, 2017
1 parent f05e8ed commit 74f2616
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ To report problems or ask a question about the alpha release, please [create an
## Installation

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

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

### Gradle

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

## 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-1
VERSION_NAME=1.0.0-beta-2
GROUP=com.rollbar

POM_DESCRIPTION=For connecting your applications built on the JVM to Rollbar for Error Reporting
Expand Down
4 changes: 4 additions & 0 deletions gradle/release.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ subprojects {
archives sourcesJar
archives javadocJar
}
artifact sourcesJar
artifact javadocJar
from components.java

pom.withXml {
Expand Down Expand Up @@ -305,6 +307,8 @@ subprojects {
archives androidSourcesJar
archives androidJavadocsJar
}
artifact androidSourcesJar
artifact androidJavadocsJar


pom.withXml {
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-1";
private static final String NOTIFIER_VERSION = "1.0.0-beta-2";
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 74f2616

Please sign in to comment.