|
|
|
@ -1,11 +1,13 @@
|
|
|
|
|
|
|
|
|
|
apply plugin: 'java' |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 可以修改这个变量以依赖不同的开发版本 |
|
|
|
|
*/ |
|
|
|
|
def fineVersion = '11.0.12.2023.02.01' |
|
|
|
|
def finebiVersion = '6.0.7' |
|
|
|
|
/*def fineVersion = '11.0.12.2023.02.01' |
|
|
|
|
def finebiVersion = '6.0.7'*/ |
|
|
|
|
def fineVersion = '11.0.30.2024.11.01' |
|
|
|
|
def finebiVersion = '6.1.4.2025.01.20' |
|
|
|
|
def libPaths = "$projectDir/webroot/WEB-INF/lib" |
|
|
|
|
|
|
|
|
|
group = 'com.fr.plugin' |
|
|
|
|
version = '11.0' |
|
|
|
@ -13,7 +15,7 @@ version = '11.0'
|
|
|
|
|
repositories { |
|
|
|
|
mavenLocal() |
|
|
|
|
maven { |
|
|
|
|
url = uri('http://mvn.finedevelop.com/repository/maven-public/') |
|
|
|
|
url = uri('https://mvn.fanruan.com/repository/maven-public/') |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
maven { |
|
|
|
@ -28,7 +30,7 @@ task install(type: Copy) {
|
|
|
|
|
|
|
|
|
|
dependencies { |
|
|
|
|
implementation files("${System.getProperty('java.home')}/../lib/tools.jar") |
|
|
|
|
implementation 'com.fr.third:fine-third:' + fineVersion |
|
|
|
|
/*implementation 'com.fr.third:fine-third:' + fineVersion |
|
|
|
|
implementation 'com.fr.activator:fine-activator:' + fineVersion |
|
|
|
|
implementation 'com.fr.core:fine-core:' + fineVersion |
|
|
|
|
implementation 'com.fr.cbb:fine-cbb:' + fineVersion |
|
|
|
@ -48,7 +50,10 @@ dependencies {
|
|
|
|
|
implementation 'com.finebi:fine-bi-scheduler:' + finebiVersion |
|
|
|
|
implementation 'com.finebi:fine-bi-middle:' + finebiVersion |
|
|
|
|
implementation 'com.finebi:fine-decision-bi:' + finebiVersion |
|
|
|
|
implementation 'com.finebi:fine-schedule-bi:' + finebiVersion |
|
|
|
|
implementation 'com.finebi:fine-schedule-bi:' + finebiVersion*/ |
|
|
|
|
|
|
|
|
|
implementation fileTree(dir: libPaths, include: ['**/*.jar']) |
|
|
|
|
implementation fileTree(dir: 'lib', include: ['**/*.jar']) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
implementation 'org.apache.tomcat:tomcat-catalina:8.5.32' |
|
|
|
|