Skip to content

Commit b9dff39

Browse files
authored
More cleanup (#668)
1 parent d44fdfc commit b9dff39

File tree

2 files changed

+1
-19
lines changed

2 files changed

+1
-19
lines changed

Parse/build.gradle

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -72,23 +72,6 @@ dependencies {
7272

7373
android.libraryVariants.all { variant ->
7474
def name = variant.buildType.name
75-
def jar = project.tasks.create(name: "jar${name.capitalize()}", type: Jar) {
76-
dependsOn variant.javaCompile
77-
from variant.javaCompile.destinationDir
78-
79-
manifest {
80-
attributes(
81-
"Bundle-Name": 'parse-android',
82-
"Bundle-Version": project.version
83-
)
84-
}
85-
86-
exclude '**/R.class'
87-
exclude '**/R\$*.class'
88-
exclude '**/Manifest.class'
89-
exclude '**/Manifest\$*.class'
90-
exclude '**/BuildConfig.class'
91-
}
9275

9376
def javadoc = task("javadoc${variant.name.capitalize()}", type: Javadoc) {
9477
description "Generates Javadoc for $variant.name."
@@ -113,7 +96,6 @@ android.libraryVariants.all { variant ->
11396
}
11497

11598
if (name.equals(BuilderConstants.RELEASE)) {
116-
artifacts.add('archives', jar);
11799
artifacts.add('archives', javadocJar);
118100
}
119101
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ dependencies {
1919
}
2020
```
2121

22-
Snapshots of the development version are available in [Sonatype's `snapshots` repository][snap].
22+
Snapshots of the development version are available in [jFrog's `snapshots` repository][snap].
2323

2424
## Usage
2525
Everything can done through the supplied gradle wrapper:

0 commit comments

Comments
 (0)