Skip to content

Commit

Permalink
Release 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
wangzhzh committed Aug 26, 2017
1 parent 1aa512b commit 4f2057d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion aop/bintray.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply plugin: 'java'
apply plugin: 'signing'
apply plugin: 'maven'

version = "1.1.1"
version = pluginVersion
project.archivesBaseName = "android-gradle-plugin"

task javadocJar(type: Jar, dependsOn: javadoc) {
Expand Down
2 changes: 1 addition & 1 deletion aop/maven.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apply plugin: 'maven'

version="1.1.1"
version=pluginVersion
group = "com.sensorsdata.analytics.android"
def nexusRepositoryUrl=nexusReleases

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,15 @@ class AndroidAspectJXPlugin implements Plugin<Project> {
@Override
void apply(Project project) {

project.repositories.flatDir { dirs 'libs' }

project.repositories {
mavenLocal()
}

project.dependencies {
compile 'org.aspectj:aspectjrt:1.8.10'
compile 'com.sensorsdata.analytics.android:SensorsAnalyticsSDK-Runtime:1.0.1'
compile 'com.sensorsdata.analytics.android:SensorsAnalyticsSDK-Runtime:1.0.2'
}

project.extensions.create("sensorsAnalytics", AspectjExtension)
Expand Down
1 change: 1 addition & 0 deletions ext.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
project.ext {
aspectjVersion = '1.8.10'
pluginVersion = '1.1.2'
Properties properties = new Properties()
if (project.file('local.properties').exists()) {
properties.load(project.file('local.properties').newDataInputStream())
Expand Down

0 comments on commit 4f2057d

Please sign in to comment.