Compare commits
13 commits
f2dab22577
...
72286377df
Author | SHA1 | Date | |
---|---|---|---|
72286377df | |||
dee6227989 | |||
29bf38aab2 | |||
b6004b3a31 | |||
a53ff1b03c | |||
95aa91f33b | |||
583f27f95d | |||
4df9ce571a | |||
c9f7ce7b1a | |||
41f3d384c5 | |||
02d566809c | |||
c7386c4ef2 | |||
16448dab95 |
11 changed files with 141 additions and 1095 deletions
|
@ -10,8 +10,8 @@ end_of_line = lf
|
|||
insert_final_newline = true
|
||||
trim_trailing_whitespace = true
|
||||
|
||||
[*.{java,skin}]
|
||||
indent_size = 3
|
||||
|
||||
[*.md]
|
||||
trim_trailing_whitespace = false
|
||||
|
||||
[*.{java}]
|
||||
indent_size = 3
|
||||
|
|
12
build.gradle
12
build.gradle
|
@ -1,7 +1,7 @@
|
|||
plugins {
|
||||
id 'base'
|
||||
id 'java'
|
||||
id 'com.github.node-gradle.node' version '7.0.1'
|
||||
id 'com.github.node-gradle.node' version '7.1.0'
|
||||
}
|
||||
|
||||
tasks.build.dependsOn 'assemble'
|
||||
|
@ -43,11 +43,11 @@ allprojects {
|
|||
version = distVersion()
|
||||
|
||||
dependencies {
|
||||
implementation 'org.commonmark:commonmark:0.21.0'
|
||||
implementation 'org.commonmark:commonmark-ext-autolink:0.21.0'
|
||||
implementation 'org.commonmark:commonmark-ext-gfm-strikethrough:0.21.0'
|
||||
implementation 'org.commonmark:commonmark-ext-gfm-tables:0.21.0'
|
||||
implementation 'org.jsoup:jsoup:1.17.2'
|
||||
implementation 'org.commonmark:commonmark:0.24.0'
|
||||
implementation 'org.commonmark:commonmark-ext-autolink:0.24.0'
|
||||
implementation 'org.commonmark:commonmark-ext-gfm-strikethrough:0.24.0'
|
||||
implementation 'org.commonmark:commonmark-ext-gfm-tables:0.24.0'
|
||||
implementation 'org.jsoup:jsoup:1.18.3'
|
||||
implementation 'rome:rome:1.0'
|
||||
|
||||
implementation('org.lesscss:lesscss:1.7.0.1.1') {
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
String.ELLIPSIS = '…';
|
||||
|
||||
app.addRepository(app.dir + '/../lib/jdom-1.0.jar');
|
||||
app.addRepository(app.dir + '/../lib/jsoup-1.17.2.jar');
|
||||
app.addRepository(app.dir + '/../lib/jsoup-1.18.3.jar');
|
||||
app.addRepository(app.dir + '/../lib/lesscss-1.7.0.1.1.jar');
|
||||
app.addRepository(app.dir + '/../lib/rome-1.0.jar');
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
app.addRepository(app.dir + '/../lib/autolink-0.10.0.jar');
|
||||
app.addRepository(app.dir + '/../lib/commonmark-0.21.0.jar');
|
||||
app.addRepository(app.dir + '/../lib/commonmark-ext-autolink-0.21.0.jar');
|
||||
app.addRepository(app.dir + '/../lib/commonmark-ext-gfm-strikethrough-0.21.0.jar');
|
||||
app.addRepository(app.dir + '/../lib/commonmark-ext-gfm-tables-0.21.0.jar');
|
||||
app.addRepository(app.dir + '/../lib/autolink-0.11.0.jar');
|
||||
app.addRepository(app.dir + '/../lib/commonmark-0.24.0.jar');
|
||||
app.addRepository(app.dir + '/../lib/commonmark-ext-autolink-0.24.0.jar');
|
||||
app.addRepository(app.dir + '/../lib/commonmark-ext-gfm-strikethrough-0.24.0.jar');
|
||||
app.addRepository(app.dir + '/../lib/commonmark-ext-gfm-tables-0.24.0.jar');
|
||||
|
||||
var renderMarkdown = (function() {
|
||||
const commonMark = new JavaImporter(
|
||||
|
|
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
Binary file not shown.
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
|
@ -1,6 +1,6 @@
|
|||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
|
||||
networkTimeout=10000
|
||||
validateDistributionUrl=true
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
|
|
6
gradlew
vendored
6
gradlew
vendored
|
@ -15,6 +15,8 @@
|
|||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
##############################################################################
|
||||
#
|
||||
|
@ -55,7 +57,7 @@
|
|||
# Darwin, MinGW, and NonStop.
|
||||
#
|
||||
# (3) This script is generated from the Groovy template
|
||||
# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
|
||||
# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
|
||||
# within the Gradle project.
|
||||
#
|
||||
# You can find Gradle at https://github.com/gradle/gradle/.
|
||||
|
@ -84,7 +86,7 @@ done
|
|||
# shellcheck disable=SC2034
|
||||
APP_BASE_NAME=${0##*/}
|
||||
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
|
||||
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
|
||||
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
|
||||
|
||||
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
||||
MAX_FD=maximum
|
||||
|
|
2
gradlew.bat
vendored
2
gradlew.bat
vendored
|
@ -13,6 +13,8 @@
|
|||
@rem See the License for the specific language governing permissions and
|
||||
@rem limitations under the License.
|
||||
@rem
|
||||
@rem SPDX-License-Identifier: Apache-2.0
|
||||
@rem
|
||||
|
||||
@if "%DEBUG%"=="" @echo off
|
||||
@rem ##########################################################################
|
||||
|
|
1190
package-lock.json
generated
1190
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -43,8 +43,8 @@
|
|||
"generate-license-file": "3.0.1",
|
||||
"jsdoc": "4.0.2",
|
||||
"less": "4.2.0",
|
||||
"less-plugin-clean-css": "1.5.1",
|
||||
"npm-run-all": "4.1.5",
|
||||
"less-plugin-clean-css": "1.6.0",
|
||||
"npm-run-all2": "5.0.0",
|
||||
"onchange": "7.1.0",
|
||||
"uglifyify": "5.0.2"
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
plugins {
|
||||
id 'com.github.jk1.dependency-license-report' version '2.5'
|
||||
id 'com.github.jk1.dependency-license-report' version '2.9'
|
||||
}
|
||||
|
||||
def helmaInstallDir = "${rootProject.buildDir}/install/antclick"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue