File tree 2 files changed +4
-5
lines changed
jbake/src/de/tobiasroeser/mill/jbake
2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ endif::[]
13
13
14
14
Mill plugin to create static sites/blogs with JBake.
15
15
16
- JBake runs completely on the JVM and supports many different template engines and various markup formats, including AsciiDoc(tor).
16
+ JBake runs completely on the JVM and supports different template engines and various markup formats, including AsciiDoc(tor).
17
17
18
18
== Quickstart
19
19
@@ -36,7 +36,7 @@ object site extends JBakeModule {
36
36
If you are using an older Mill verion (`< 0.9.9`), you need to add the platform suffix yourself. E.g. to use it with Mill 0.7, your import looks like:
37
37
[source,scala,subs="verbatim,attributes"]
38
38
----
39
- import $ivy.`de.tototec::de.tobiasroeser.mill.jbake_mill0.6 :{version}`
39
+ import $ivy.`de.tototec::de.tobiasroeser.mill.jbake_mill0.7 :{version}`
40
40
----
41
41
42
42
Generate the site:
@@ -91,8 +91,7 @@ Supported value:
91
91
* `ClassLoader` runs JBake in s isolated classpath in the same JVM.
92
92
* `SubProcess` spawns a new Java sub-process of each JBake tool invokation.
93
93
94
- Defaults to `ClassLoader` which is also faster.
95
- If you experience stability or out-of-memory issues, try to change this to `SubProcess`.
94
+ Defaults to `SubProcess` which is slower but is more robust.
96
95
--
97
96
98
97
.Commands
Original file line number Diff line number Diff line change @@ -145,7 +145,7 @@ trait JBakeModule extends Module with TaskModule {
145
145
/**
146
146
* Specify how the JBake tool should be executed.
147
147
*/
148
- def jbakeProcessMode : ProcessMode = ClassLoader
148
+ def jbakeProcessMode : ProcessMode = SubProcess
149
149
150
150
}
151
151
You can’t perform that action at this time.
0 commit comments