Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
dariah
dariahsp
Commits
0b0c98b6
Commit
0b0c98b6
authored
Nov 11, 2020
by
Gradl, Tobias
Browse files
12: Compose some initial documentation
Task-Url:
#12
parent
82befb7f
Pipeline
#17832
passed with stage
in 1 minute and 55 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
0b0c98b6
...
...
@@ -111,6 +111,9 @@ One component requires _adaption_ in implementing applications:
## 4. Configuration
### Minimal working configuration
A minimal working configuration enables the local authentication method and provides local user accounts.
## Local user accounts
...
...
dariahsp-core/build.gradle
View file @
0b0c98b6
...
...
@@ -23,12 +23,27 @@ jar {
enabled
=
true
}
task
customFatJar
(
type:
Jar
)
{
manifest
{
attributes
'Main-Class'
:
' eu.dariah.de.dariahsp.BCryptPasswordCreator'
}
archiveBaseName
=
'dariahsp-core-fatjar'
from
{
configurations
.
compile
.
collect
{
it
.
isDirectory
()
?
it
:
zipTree
(
it
)
}
}
with
jar
}
artifacts
{
archives
customFatJar
}
publishing
{
publications
{
maven
(
MavenPublication
)
{
from
(
components
.
java
)
artifact
(
sourcesJar
)
{}
artifact
(
javadocJar
)
{}
artifact
(
customFatJar
)
{}
}
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment