Compare commits

..

No commits in common. "bd83b36a35c9c654567b27667d410977ca6f1035" and "9e1bf5fa9856a40f36562b98f40c927d0ce78552" have entirely different histories.

2 changed files with 6 additions and 4 deletions

View file

@ -1,7 +1,7 @@
bld.downloadExtensionJavadoc=false bld.downloadExtensionJavadoc=false
bld.downloadExtensionSources=true bld.downloadExtensionSources=true
bld.downloadLocation= bld.extensions=com.uwyn.rife2:bld-exec:1.0.0
bld.extension-exec=com.uwyn.rife2:bld-exec:1.0.1
bld.repositories=MAVEN_CENTRAL,RIFE2_RELEASES,MAVEN_LOCAL,RIFE2_SNAPSHOTS bld.repositories=MAVEN_CENTRAL,RIFE2_RELEASES,MAVEN_LOCAL,RIFE2_SNAPSHOTS
bld.downloadLocation=
bld.sourceDirectories= bld.sourceDirectories=
bld.version=1.9.1 bld.version=1.9.1

View file

@ -15,7 +15,9 @@ import static rife.bld.dependencies.Scope.test;
/** /**
* Gradle Native Example Build. * Gradle Native Example Build.
* *
* <pre>{@code ./bld compile jar native-exec }</pre> * <ul style="list-style-type:none">
* <li>{@code ./bld compile jar native-exec}</li>
* </ul>
*/ */
public class GraalNativeBuild extends Project { public class GraalNativeBuild extends Project {
public GraalNativeBuild() { public GraalNativeBuild() {
@ -69,4 +71,4 @@ public class GraalNativeBuild extends Project {
"hello") "hello")
.execute(); .execute();
} }
} }