Skip to content

Commit 9a341f1

Browse files
authored
Merge pull request #7 from SysdataSpA/feature/bintray_upload
Feature/bintray upload
2 parents 945593b + ed02b99 commit 9a341f1

144 files changed

Lines changed: 1285 additions & 2948 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
648 Bytes
Binary file not shown.

.idea/codeStyles/Project.xml

Lines changed: 29 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 34 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations.xml

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

html-textview-master/HtmlSpanner/LICENSE-2.0.txt renamed to HtmlSpanner/LICENSE-2.0.txt

File renamed without changes.

html-textview-master/HtmlSpanner/README.md renamed to HtmlSpanner/README.md

File renamed without changes.

HtmlSpanner/build.gradle

Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
apply plugin: 'com.android.library'
2+
apply plugin: 'com.jfrog.artifactory-upload'
3+
apply plugin: 'com.github.dcendents.android-maven'
4+
5+
// This is the library version used when deploying the artifact
6+
version = "1.0.0"
7+
8+
group = "it.sysdata.mobile"
9+
10+
buildscript {
11+
dependencies {
12+
repositories {
13+
google()
14+
mavenCentral()
15+
// serve per org.jfrog.buildinfo:build-info-extractor-gradle:3.1.1
16+
maven {
17+
url "https://plugins.gradle.org/m2/"
18+
}
19+
}
20+
// artifactory
21+
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
22+
classpath 'org.jfrog.buildinfo:build-info-extractor-gradle:3.1.1'
23+
// bintray
24+
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
25+
classpath 'com.github.dcendents:android-maven-plugin:1.2'
26+
}
27+
}
28+
29+
repositories {
30+
google()
31+
mavenCentral()
32+
maven {
33+
url "http://repo.pageturner-reader.org"
34+
}
35+
}
36+
37+
dependencies {
38+
implementation fileTree(dir: 'libs', include: ['*.jar'])
39+
implementation 'net.sourceforge.htmlcleaner:htmlcleaner:2.16'
40+
implementation 'com.osbcp.cssparser:cssparser:1.5'
41+
implementation 'io.reactivex:rxjava:1.2.10'
42+
implementation 'io.reactivex:rxandroid:1.2.1'
43+
}
44+
45+
android {
46+
compileSdkVersion 21
47+
48+
defaultConfig {
49+
minSdkVersion 9
50+
targetSdkVersion 21
51+
}
52+
}
53+
54+
android {
55+
lintOptions {
56+
abortOnError false
57+
}
58+
}
59+
60+
// pubblicazione maven
61+
Properties properties = new Properties()
62+
properties.load(project.rootProject.file('local.properties').newDataInputStream())
63+
ext {
64+
// GROUP_ID
65+
publishedGroupId = group
66+
// ARTIFACT_ID
67+
artifact = 'sdhtmltextview'
68+
// VERSION_ID
69+
libraryVersion = version
70+
71+
developerId = 'sysdata-mobile'
72+
developerName = ''
73+
developerEmail = 'team.mobile@sysdata.it'
74+
75+
bintrayRepo = 'maven'
76+
bintrayName = 'sdHtmlTextView'
77+
libraryName = 'sdhtmltextview'
78+
bintrayOrganization = 'sysdata'
79+
}
80+
81+
//apply from: 'publishArtifactory.gradle'
82+
apply from: 'publishBintray.gradle'
83+

html-textview-master/HtmlSpanner/gradle/wrapper/gradle-wrapper.jar renamed to HtmlSpanner/gradle/wrapper/gradle-wrapper.jar

File renamed without changes.

0 commit comments

Comments
 (0)