Compare commits
15 commits
6723df912e
...
0cf9cf7af2
Author | SHA1 | Date | |
---|---|---|---|
0cf9cf7af2 | |||
96f2dce50f | |||
f786b40961 | |||
8caf790529 | |||
e6c974120b | |||
38181e8e00 | |||
8adbd23569 | |||
e3a7732837 | |||
d9d3c9b863 | |||
808bc48ab9 | |||
6ebdd6aa31 | |||
2ff29317e5 | |||
84333d05cd | |||
3a8997ca5c | |||
8212600d40 |
4 changed files with 35 additions and 14 deletions
16
.gitignore
vendored
16
.gitignore
vendored
|
@ -1,6 +1,12 @@
|
||||||
.gradle
|
.*
|
||||||
.idea
|
|
||||||
.settings
|
.vscode/*
|
||||||
|
!.vscode
|
||||||
|
!.vscode/extensions.json
|
||||||
|
!.vscode/launch.json
|
||||||
|
!.vscode/settings.json
|
||||||
|
!.vscode/tasks.json
|
||||||
|
|
||||||
build
|
build
|
||||||
|
|
||||||
/apps
|
/apps
|
||||||
|
@ -15,8 +21,8 @@ build
|
||||||
/static
|
/static
|
||||||
|
|
||||||
/*.properties
|
/*.properties
|
||||||
|
!/gradle.properties
|
||||||
|
|
||||||
/launcher.jar
|
/launcher.jar
|
||||||
/passwd
|
/passwd
|
||||||
/start.*
|
/start.*
|
||||||
|
|
||||||
!/gradle.properties
|
|
||||||
|
|
21
.vscode/launch.json
vendored
Normal file
21
.vscode/launch.json
vendored
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
{
|
||||||
|
// Use IntelliSense to learn about possible attributes.
|
||||||
|
// Hover to view descriptions of existing attributes.
|
||||||
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"type": "java",
|
||||||
|
"name": "Current File",
|
||||||
|
"request": "launch",
|
||||||
|
"mainClass": "${file}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "java",
|
||||||
|
"name": "Debug",
|
||||||
|
"request": "launch",
|
||||||
|
"mainClass": "helma.main.Server",
|
||||||
|
"projectName": "helma_"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -42,15 +42,6 @@ if (JavaVersion.current().isJava8Compatible()) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
sourceSets {
|
|
||||||
main {
|
|
||||||
java {
|
|
||||||
// Sources in `src` will be available here after processing
|
|
||||||
srcDirs = ["$buildDir/src/main/java"]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
configurations {
|
configurations {
|
||||||
// Wrapping implementation because it does not allow access to its files
|
// Wrapping implementation because it does not allow access to its files
|
||||||
// (i.e. cannot be resolved)
|
// (i.e. cannot be resolved)
|
||||||
|
|
|
@ -16,3 +16,6 @@ project(':modules').projectDir = file('modules/helma')
|
||||||
project(':jala').projectDir = file('modules/jala')
|
project(':jala').projectDir = file('modules/jala')
|
||||||
project(':hopKit').projectDir = file('modules/jala/util/HopKit')
|
project(':hopKit').projectDir = file('modules/jala/util/HopKit')
|
||||||
project(':test').projectDir = file('modules/jala/util/Test')
|
project(':test').projectDir = file('modules/jala/util/Test')
|
||||||
|
|
||||||
|
// Rename this project to prevent redundancy and renaming of main project (VSC does not care, though)
|
||||||
|
project(':modules').name = 'modules'
|
||||||
|
|
Loading…
Add table
Reference in a new issue