[FOray-commit] SF.net SVN: foray:[12403] trunk/foray
Modular XSL-FO Implementation for Java.
Status: Alpha
Brought to you by:
victormote
|
From: <vic...@us...> - 2022-01-15 01:32:49
|
Revision: 12403
http://sourceforge.net/p/foray/code/12403
Author: victormote
Date: 2022-01-15 01:32:47 +0000 (Sat, 15 Jan 2022)
Log Message:
-----------
Turn transitive resolution off for more dependencies.
Modified Paths:
--------------
trunk/foray/foray-font/build.gradle
trunk/foray/master/build.gradle
Modified: trunk/foray/foray-font/build.gradle
===================================================================
--- trunk/foray/foray-font/build.gradle 2022-01-15 01:19:03 UTC (rev 12402)
+++ trunk/foray/foray-font/build.gradle 2022-01-15 01:32:47 UTC (rev 12403)
@@ -1,25 +1,28 @@
description = 'foray-font'
dependencies {
- api group: 'org.slf4j', name: 'slf4j-api', version: slf4jVersion
- api group: 'commons-io', name: 'commons-io', version: commonsIoVersion
- api group: 'commons-discovery', name: 'commons-discovery', version: commonsDiscoveryVersion
- api group: 'org.apache.ant', name: 'ant-launcher', version: antVersion
- api group: 'commons-cli', name: 'commons-cli', version: commonsCliVersion
+ api group: 'org.slf4j', name: 'slf4j-api', version: slf4jVersion
+ api group: 'commons-io', name: 'commons-io', version: commonsIoVersion
+ api group: 'commons-discovery', name: 'commons-discovery', version: commonsDiscoveryVersion
+ api group: 'org.apache.ant', name: 'ant-launcher', version: antVersion
+ api group: 'commons-cli', name: 'commons-cli', version: commonsCliVersion
+ api group: 'javax.activation', name: 'activation', version: javaxActivationVersion
- api group: 'org.axsl', name: 'axsl-common', version: axslVersion
- api group: 'org.axsl', name: 'axsl-font', version: axslVersion
- api group: 'org.axsl', name: 'axsl-ps', version: axslVersion
- api group: 'org.axsl', name: 'axsl-orthography', version: axslVersion
- api group: 'org.axsl', name: 'axsl-unicode', version: axslVersion
+ /* Turn transitive resolution OFF for both aXSL and FOray modules, for greater design visibility. */
- api project(':foray-common')
- api project(':foray-ps')
+ api (group: 'org.axsl', name: 'axsl-common', version: axslVersion) { transitive = false }
+ api (group: 'org.axsl', name: 'axsl-font', version: axslVersion) { transitive = false }
+ api (group: 'org.axsl', name: 'axsl-ps', version: axslVersion) { transitive = false }
+ api (group: 'org.axsl', name: 'axsl-orthography', version: axslVersion) { transitive = false }
+ api (group: 'org.axsl', name: 'axsl-unicode', version: axslVersion) { transitive = false }
- implementation group: 'ch.qos.logback', name: 'logback-classic', version: logbackClassicVersion
+ api (project(':foray-common')) { transitive = false }
+ api (project(':foray-ps')) { transitive = false }
- testImplementation group: 'junit', name: 'junit', version: junitVersion
- testImplementation group: 'org.mockito', name: 'mockito-core', version: mockitoVersion
+ implementation group: 'ch.qos.logback', name: 'logback-classic', version: logbackClassicVersion
+
+ testImplementation group: 'junit', name: 'junit', version: junitVersion
+ testImplementation group: 'org.mockito', name: 'mockito-core', version: mockitoVersion
}
Modified: trunk/foray/master/build.gradle
===================================================================
--- trunk/foray/master/build.gradle 2022-01-15 01:19:03 UTC (rev 12402)
+++ trunk/foray/master/build.gradle 2022-01-15 01:32:47 UTC (rev 12403)
@@ -37,6 +37,7 @@
ext.axslVersion = '0.3-SNAPSHOT' // Latest is 0.3-SNAPSHOT as of 2021-01-12. See Note 2.
ext.svgDomVersion = '1.1' // See aXSL master/build.gradle
ext.mathMlDomVersion = '2.0' // See aXSL master/build.gradle
+ ext.javaxActivationVersion = '1.1.1' // See aXSL master/build.gradle
/* End of aXSL-related dependencies. */
ext.slf4jVersion = '1.7.30' // Latest is 1.7.30 as of 2021-01-12.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|