Compare commits
No commits in common. "0cf9cf7af240e8a29bb11e75d743efe1ceb0439e" and "6723df912e671f5f7da4963c40358e2ae549c271" have entirely different histories.
0cf9cf7af2
...
6723df912e
4 changed files with 14 additions and 35 deletions
16
.gitignore
vendored
16
.gitignore
vendored
|
@ -1,12 +1,6 @@
|
|||
.*
|
||||
|
||||
.vscode/*
|
||||
!.vscode
|
||||
!.vscode/extensions.json
|
||||
!.vscode/launch.json
|
||||
!.vscode/settings.json
|
||||
!.vscode/tasks.json
|
||||
|
||||
.gradle
|
||||
.idea
|
||||
.settings
|
||||
build
|
||||
|
||||
/apps
|
||||
|
@ -21,8 +15,8 @@ build
|
|||
/static
|
||||
|
||||
/*.properties
|
||||
!/gradle.properties
|
||||
|
||||
/launcher.jar
|
||||
/passwd
|
||||
/start.*
|
||||
|
||||
!/gradle.properties
|
||||
|
|
21
.vscode/launch.json
vendored
21
.vscode/launch.json
vendored
|
@ -1,21 +0,0 @@
|
|||
{
|
||||
// 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,6 +42,15 @@ if (JavaVersion.current().isJava8Compatible()) {
|
|||
}
|
||||
}
|
||||
|
||||
sourceSets {
|
||||
main {
|
||||
java {
|
||||
// Sources in `src` will be available here after processing
|
||||
srcDirs = ["$buildDir/src/main/java"]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
configurations {
|
||||
// Wrapping implementation because it does not allow access to its files
|
||||
// (i.e. cannot be resolved)
|
||||
|
|
|
@ -16,6 +16,3 @@ project(':modules').projectDir = file('modules/helma')
|
|||
project(':jala').projectDir = file('modules/jala')
|
||||
project(':hopKit').projectDir = file('modules/jala/util/HopKit')
|
||||
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