forked from fanruan/report-starter-latest
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
2.2 KiB
60 lines
2.2 KiB
/* |
|
* This file was generated by the Gradle 'init' task. |
|
*/ |
|
|
|
allprojects { |
|
group = 'com.fr.plugin' |
|
version = '10.0' |
|
} |
|
|
|
subprojects { |
|
apply plugin: 'java' |
|
apply plugin: 'maven-publish' |
|
|
|
repositories { |
|
mavenLocal() |
|
maven { |
|
url = uri('http://mvn.finedevelop.com/repository/maven-public/') |
|
} |
|
|
|
maven { |
|
url = uri('http://repo.maven.apache.org/maven2') |
|
} |
|
} |
|
|
|
dependencies { |
|
implementation 'com.fr.third:fine-third:10.0-RELEASE-SNAPSHOT' |
|
implementation 'com.fr.activator:fine-activator:10.0-RELEASE-SNAPSHOT' |
|
implementation 'com.fr.core:fine-core:10.0-RELEASE-SNAPSHOT' |
|
implementation 'com.fr.webui:fine-webui:10.0-RELEASE-SNAPSHOT' |
|
implementation 'com.fr.datasource:fine-datasource:10.0-RELEASE-SNAPSHOT' |
|
implementation 'com.fr.decision:fine-decision:10.0-RELEASE-SNAPSHOT' |
|
implementation 'com.fr.decision:fine-decision-report:10.0-RELEASE-SNAPSHOT' |
|
implementation 'com.fr.schedule:fine-schedule:10.0-RELEASE-SNAPSHOT' |
|
implementation 'com.fr.schedule:fine-schedule-report:10.0-RELEASE-SNAPSHOT' |
|
implementation 'com.fr.intelligence:fine-swift:10.0-RELEASE-SNAPSHOT' |
|
implementation 'com.fr.intelligence:fine-accumulator:10.0-RELEASE-SNAPSHOT' |
|
implementation 'com.fr.report:fine-report-engine:10.0-RELEASE-SNAPSHOT' |
|
implementation 'com.fr.report:fine-report-designer:10.0-RELEASE-SNAPSHOT' |
|
implementation 'io.socket:socket.io-client:0.7.0' |
|
implementation 'org.aspectj:aspectjrt:1.6.9' |
|
implementation 'org.swingexplorer:swexpl:2.0' |
|
implementation 'org.swingexplorer:swag:1.0' |
|
implementation 'org.apache.tomcat:tomcat-catalina:8.5.32' |
|
implementation 'mysql:mysql-connector-java:5.1.44' |
|
implementation 'com.fr.third:jxbrowser:6.23.1' |
|
implementation 'com.fr.third:jxbrowser-mac:6.23.1' |
|
testImplementation 'junit:junit:4.12' |
|
testImplementation 'org.easymock:easymock:3.5.1' |
|
} |
|
|
|
sourceCompatibility = '1.6' |
|
|
|
publishing { |
|
publications { |
|
maven(MavenPublication) { |
|
from(components.java) |
|
} |
|
} |
|
} |
|
}
|
|
|