Browse Subversion Repository
Diff of /flexmark-ext-inline-tags/trunk/build.gradle
Parent Directory
| Revision Log
| Patch
| 1 |
plugins { |
plugins { |
| 2 |
id "com.jfrog.bintray" version "1.8.1" |
id "com.jfrog.bintray" version "1.8.5" |
| 3 |
} |
} |
| 4 |
apply plugin : 'maven-publish' |
apply plugin : 'maven-publish' |
| 5 |
|
|
| 7 |
|
|
| 8 |
group = 'net.osdn.blogs.flexmark.ext' |
group = 'net.osdn.blogs.flexmark.ext' |
| 9 |
archivesBaseName = 'flexmark-ext-inline-tags' |
archivesBaseName = 'flexmark-ext-inline-tags' |
| 10 |
version = '0.1.6' |
version = '0.3' |
| 11 |
|
|
| 12 |
tasks.withType(JavaCompile) { |
tasks.withType(JavaCompile) { |
| 13 |
sourceCompatibility = 1.7 |
sourceCompatibility = 1.7 |
| 14 |
targetCompatibility = 1.7 |
targetCompatibility = 1.7 |
| 15 |
|
options.compilerArgs << '-Xlint:all' |
| 16 |
} |
} |
| 17 |
|
|
| 18 |
def defaultEncoding = 'UTF-8' |
def defaultEncoding = 'UTF-8' |
| 31 |
} |
} |
| 32 |
|
|
| 33 |
dependencies { |
dependencies { |
| 34 |
compile 'com.vladsch.flexmark:flexmark:0.50.50' |
implementation 'com.vladsch.flexmark:flexmark:0.61.32' |
| 35 |
} |
} |
| 36 |
|
|
| 37 |
defaultTasks 'clean', 'build' |
defaultTasks 'clean', 'build' |
|
|
Legend:
| Removed from v.106 |
|
| changed lines |
| |
Added in v.108 |
|
|
|