-
Notifications
You must be signed in to change notification settings - Fork 0
Developer guide
Benoît Garçon edited this page Jun 1, 2019
·
6 revisions
First step is to create a new maven project.
mvn -B archetype:generate \
-DarchetypeGroupId=org.apache.maven.archetypes \
-DgroupId=fr.cnes.icode \
-DartifactId=my-custom-plugin
In order to be correctly imported, the groupId of your plugin must be fr.cnes.icode.
Then add official i-Code dependencies from GitHub.
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.github.Facthunder.i-CodeCNES</groupId>
<artifactId>icode-library</artifactId>
<version>${icode.version}</version>
<scope>compile</scope>
</dependency>
</dependencies>
Value of tag version must be a valid git tag.
i-Code CNES is an open source project under license EPL-1.0