Cleaned up Javadocs
This commit is contained in:
parent
aea77d6216
commit
bcf789dd9a
16 changed files with 167 additions and 28 deletions
1
examples/.idea/misc.xml
generated
1
examples/.idea/misc.xml
generated
|
@ -1,4 +1,3 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="EntryPointsManager">
|
||||
<list size="1">
|
||||
|
|
10
examples/.vscode/launch.json
vendored
10
examples/.vscode/launch.json
vendored
|
@ -1,6 +1,13 @@
|
|||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"type": "java",
|
||||
"name": "PropertyFileExampleBuild",
|
||||
"request": "launch",
|
||||
"mainClass": "com.example.PropertyFileExampleBuild",
|
||||
"projectName": "examples_dbdc9d4b"
|
||||
},
|
||||
{
|
||||
"type": "java",
|
||||
"name": "Run Main",
|
||||
|
@ -18,7 +25,8 @@
|
|||
"--disable-banner",
|
||||
"--disable-ansi-colors",
|
||||
"--exclude-engine=junit-platform-suite",
|
||||
"--exclude-engine=junit-vintage"]
|
||||
"--exclude-engine=junit-vintage"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
5
examples/README.md
Normal file
5
examples/README.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
# Compile and Run Example
|
||||
|
||||
```console
|
||||
./bld compile run
|
||||
```
|
|
@ -1,5 +1,5 @@
|
|||
#Sun Apr 02 10:32:44 PDT 2023
|
||||
bld.extension=com.uwyn.rife2:bld-property-file:0.9.3
|
||||
bld.extension=com.uwyn.rife2:bld-property-file:0.9.4-SNAPSHOT
|
||||
bld.repositories=MAVEN_LOCAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES
|
||||
bld.downloadExtensionSources=true
|
||||
bld.downloadLocation=
|
||||
|
|
|
@ -40,8 +40,8 @@ public class PropertyFileExampleBuild extends Project {
|
|||
repositories = List.of(MAVEN_CENTRAL, RIFE2_RELEASES);
|
||||
|
||||
scope(test)
|
||||
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 10, 0)))
|
||||
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 10, 0)));
|
||||
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 10, 1)))
|
||||
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 10, 1)));
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue