1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt-doc.git synced 2025-04-25 12:07:10 -07:00

Remove kotlinProject/javaProject.

This commit is contained in:
Cedric Beust 2016-02-04 22:48:29 +04:00
parent 81ef95763e
commit 53c40c33b3
6 changed files with 20 additions and 21 deletions

View file

@ -50,10 +50,11 @@
<h2 class="section" id="java-kotlin">Java and Kotlin</h2>
<p>
The Java and Kotlin plug-ins are extremely similar, the only difference is that you configure a Java project with the <code>javaProject</code> directive and a Kotlin project with <code>kotlinProject</code>:
Java and Kotlin are supported by default by Kobalt. You use the directive <code>project{}</code>
to declare a new project and Kobalt will automatically detect how to compile it:
</p>
<pre class="brush:java">
val p = javaProject(wrapper) {
val p = project(wrapper) {
name = "kobalt"
group = "com.beust"
artifactId = name
@ -61,7 +62,7 @@ val p = javaProject(wrapper) {
}</pre>
<p>
Both these directives create an object of type <code><a href="https://github.com/cbeust/kobalt/blob/master/src/main/kotlin/com/beust/kobalt/api/Project.kt">Project</code></a>.
The <code>project{}</code> directive creates an object of type <code><a href="https://github.com/cbeust/kobalt/blob/master/src/main/kotlin/com/beust/kobalt/api/Project.kt">Project</code></a>.
</p>
<h3 class="section" id="project" indent="1">Project</h3>
@ -87,19 +88,18 @@ A <code>Project</code> has two mandatory attributes: <code>name</code> and <code
<h4 class="section" id="mixed-projects" indent="2">Mixed language projects</h4>
<p>
A Kobalt project can have multiple languages in it (Kotlin and Java): just specify all the source
directories you need. For example, for a <code>javaProject</code>, add <code>src/main/kotlin</code> as a
source directory:
directories you need:
</p>
<pre class="brush:java">
val p = javaProject(wrapper) {
val p = project(wrapper) {
name = "kobalt"
// ...
sourceDirectories {
path("src/main/java", "src/main/kotlin")
}
}</pre>
<p>Note that source files must be in their respective directory (<code>.java</code> in
<code>src/main/java</code> and <code>.kt</code> in <code>src/main/kotlin</code>).
<p>
Kotlin and Java files can be in the same directories.
</p>
<h3 class="section" id="tasks" indent="1">Tasks</h3>