Develop and Download Open Source Software

Browse Subversion Repository

Diff of /flexmark-ext-inline-tags/trunk/build.gradle

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 106 by hirukawa_ryo, Fri Jan 31 03:23:47 2020 UTC revision 108 by hirukawa_ryo, Fri May 22 03:01:13 2020 UTC
# Line 1  Line 1 
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    
# Line 7  apply plugin: 'java' Line 7  apply plugin: 'java'
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'
# Line 30  repositories { Line 31  repositories {
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

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26