FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
ServerScripter/JavaScript/build.gradle at master · SelfMadeSystem/ServerScripter · GitHub
SelfMadeSystem
/
ServerScripter
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
7
Code
Issues
8
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
ServerScripter
/
JavaScript
/
build.gradle
Copy path
More file actions
More file actions
Latest commit
History
History
History
43 lines (33 loc) · 1.08 KB
Breadcrumbs
ServerScripter
/
JavaScript
/
build.gradle
Copy path
File metadata and controls
43 lines (33 loc) · 1.08 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
plugins
{
id
'
java
'
//
id "org.graalvm.plugin.compiler" version "0.1.0-alpha2"
}
archivesBaseName
=
rootProject
.
name
+
"
-
"
+
project
.
name
repositories
{
mavenCentral()
}
configurations
{
//
configuration that holds jars to include in the jar
extraLibs
}
//
ext.graalVersion = '20.2.0'
//
graal {
//
version "$graalVersion"
//
}
dependencies
{
implementation project(
"
:Base
"
)
implementation
group
:
'
org.mozilla
'
,
name
:
'
rhino
'
,
version
:
'
1.7.14
'
/*
implementation "org.graalvm.sdk:graal-sdk:$graalVersion"
implementation "org.graalvm.js:js:$graalVersion"
// necessary to integrate with legacy ScriptEngine based implementation
implementation "org.graalvm.js:js-scriptengine:$graalVersion"
extraLibs "org.graalvm.sdk:graal-sdk:$graalVersion"
extraLibs "org.graalvm.js:js:$graalVersion"
extraLibs "org.graalvm.js:js-scriptengine:$graalVersion"
extraLibs group: 'org.graalvm.truffle', name: 'truffle-api', version: '1.0.0-rc8'
*/
}
jar
{
from {
configurations
.
extraLibs
.
collect { it
.
isDirectory()
?
it
:
zipTree(it) }
}
}
Back
|
FazBrowse Home
|
New Git URL