mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2024-12-22 08:14:09 -08:00
Updates description of how to use project
This commit is contained in:
parent
f8ea743c26
commit
fbbaddb4ba
|
@ -17,6 +17,10 @@ But there is something more:
|
||||||
How to use
|
How to use
|
||||||
----------
|
----------
|
||||||
|
|
||||||
|
There is no TeaVM artifacts in the central Maven repository yet.
|
||||||
|
So first you need to clone project and install it into the local repository.
|
||||||
|
In order to install project, just run `mvn install` when you are in the project's root directory.
|
||||||
|
|
||||||
There are several options of using TeaVM. One is the maven build. First, you write your code as if it were an
|
There are several options of using TeaVM. One is the maven build. First, you write your code as if it were an
|
||||||
ordinary Java project:
|
ordinary Java project:
|
||||||
|
|
||||||
|
@ -37,11 +41,13 @@ Second, you include the following plugin in your `pom.xml` build section:
|
||||||
<groupId>org.teavm</groupId>
|
<groupId>org.teavm</groupId>
|
||||||
<artifactId>teavm-maven-plugin</artifactId>
|
<artifactId>teavm-maven-plugin</artifactId>
|
||||||
<version>0.0.1-SNAPSHOT</version>
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.teavm</groupId>
|
<groupId>org.teavm</groupId>
|
||||||
<artifactId>teavm-classlib</artifactId>
|
<artifactId>teavm-classlib</artifactId>
|
||||||
<version>0.0.1-SNAPSHOT</version>
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<id>generate-javascript</id>
|
<id>generate-javascript</id>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user