Mise à jour de Get Started authored by Julien LEBLOND's avatar Julien LEBLOND
......@@ -10,35 +10,6 @@
* A directory and a path of the inputs if there are some.
* A directory and a path of the output.
## Installation
### With maven
Orekit and junit can be installed with maven using a pom.xml with dependencies :
* [Orekit](https://mvnrepository.com/artifact/org.orekit/orekit)
* [junit-jupiter](https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter)
For the czml writer you will need to install it differently, because no maven repository exists, two methods can be used :
* You download the .jar and you install it directly. Let name the groupId `com.custom`, the artifactId `cesium` and the version iwll be `1.0`. You will need to add in the pom.xml the following lines to do so :
```xml
<dependency>
<groupId>com.custom</groupId>
<artifactId>cesium</artifactId>
<version>1.0</version>
</dependency>
```
Now that the dependency is added you can now use the following command in maven to install it :
`mvn install:install-file -Dfile=[path]\cesiumlanguagewriter-3.0.0.jar -DgroupId=com.custom -DartifactId=cesium -Dversion=1.0 -Dpackaging=jar -DgeneratePom=true`
* You can directly add the file locally in your IDE, here are some methods for the most used IDE :
* [Eclipse](https://stackoverflow.com/questions/3280353/how-to-import-a-jar-in-eclipse)
* [IntelliJ](https://www.geeksforgeeks.org/how-to-add-external-jar-file-to-an-intellij-idea-project/)
* [VS Code](https://www.codeproject.com/Questions/5281024/How-to-import-jar-file-in-vs-code)
* [Net Beans](https://stackoverflow.com/questions/17693040/adding-external-jar-to-maven-project-in-netbeans)
## CZML Structure
In order to understand how a CZML file is organized, please check the [tutorial](Tutorial).
......
......