FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
themis-java-examples/java-example/build.gradle at master · cossacklabs/themis-java-examples · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
This repository was archived by the owner on May 12, 2021. It is now read-only.
cossacklabs
/
themis-java-examples
Public archive
Notifications
You must be signed in to change notification settings
Fork
4
Star
5
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
themis-java-examples
/
java-example
/
build.gradle
Copy path
More file actions
More file actions
Latest commit
History
History
History
27 lines (22 loc) · 518 Bytes
Breadcrumbs
themis-java-examples
/
java-example
/
build.gradle
Copy path
File metadata and controls
27 lines (22 loc) · 518 Bytes
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
apply
plugin
:
'
java
'
repositories
{
mavenCentral()
}
dependencies
{
implementation
'
com.cossacklabs.com:java-themis:0.13.1
'
}
sourceSets
{
main {
java
.
srcDirs
=
[
"
src
"
]
}
}
//
Pack *everything* into JAR, including dependencies and their dependencies.
//
By default this will pack only local classes, compiled here.
jar
{
manifest {
attributes
"
Main-Class
"
:
"
main
"
}
from {
configurations
.
runtimeClasspath
.
collect { it
.
isDirectory()
?
it
:
zipTree(it) }
}
}
Back
|
FazBrowse Home
|
New Git URL