Skip to content

Commit

Permalink
Improved Visual Studio Code support
Browse files Browse the repository at this point in the history
  • Loading branch information
ethauvin committed Feb 26, 2024
1 parent accae48 commit ea19c6b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 29 deletions.
6 changes: 0 additions & 6 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "Run Main",
"request": "launch",
"mainClass": "rife.bld.extension.propertyfile.PropertyFileOperation"
},
{
"type": "java",
"name": "Run Tests",
Expand Down
10 changes: 5 additions & 5 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
"src/main/java",
"src/main/resources",
"src/test/java",
"src/bld/java"
"src/test/resources",
"src/bld/java",
"src/bld/resources"
],
"java.configuration.updateBuildConfiguration": "automatic",
"java.project.referencedLibraries": [
"${HOME}bld-1.7.0-SNAPSHOT.jar",
"lib/compile/*.jar",
"lib/runtime/*.jar",
"lib/test/*.jar"
"${HOME}/.bld/dist/bld-1.8.0.jar",
"lib/**/*.jar"
]
}
13 changes: 0 additions & 13 deletions examples/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,6 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "PropertyFileExampleBuild",
"request": "launch",
"mainClass": "com.example.PropertyFileExampleBuild",
"projectName": "examples_dbdc9d4b"
},
{
"type": "java",
"name": "Run Main",
"request": "launch",
"mainClass": "com.example.PropertyFileExampleMain"
},
{
"type": "java",
"name": "Run Tests",
Expand Down
10 changes: 5 additions & 5 deletions examples/.vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
"src/main/java",
"src/main/resources",
"src/test/java",
"src/bld/java"
"src/test/resources",
"src/bld/java",
"src/bld/resources"
],
"java.configuration.updateBuildConfiguration": "automatic",
"java.project.referencedLibraries": [
"${HOME}bld-1.7.0.jar",
"lib/compile/*.jar",
"lib/runtime/*.jar",
"lib/test/*.jar"
"${HOME}/.bld/dist/bld-1.8.0.jar",
"lib/**/*.jar"
]
}

0 comments on commit ea19c6b

Please sign in to comment.