We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5134756 commit 77f905bCopy full SHA for 77f905b
1 file changed
README.md
@@ -9,14 +9,16 @@ After taking huge effort to look for example on the internet and found nothing w
9
10
E.g.:
11
12
- StringBuffer sourceCode = new StringBuffer();
+ StringBuilder sourceCode = new StringBuilder();
13
sourceCode.append("package org.mdkt;\n");
14
sourceCode.append("public class HelloClass {\n");
15
sourceCode.append(" public String hello() { return \"hello\"; }");
16
sourceCode.append("}");
17
18
Class<?> helloClass = InMemoryJavaCompiler.newInstance().compile("org.mdkt.HelloClass", sourceCode.toString());
19
20
+If you are looking for more examples, please look at unit tests in the `src/test/java` folder
21
+
22
Artifact is pushed to Sonatype OSS Releases Repository
23
24
https://oss.sonatype.org/content/repositories/releases/
0 commit comments