This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| USAGE: DOCKER_PARAMS codenvy/cli:nightly archetype ACTION [PARAMETERS] | |
| Use an archetype to generate, build or run a custom codenvy assembly | |
| MANDATORY DOCKER PARAMETERS: | |
| -v <path>:/archetype Local path where your custom assembly will be generated | |
| OPTIONAL DOCKER PARAMETERS: | |
| -v <path>:/m2 Local path to your host's Maven M2 repository |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| USAGE: DOCKER_PARAMS eclipse/che-cli:nightly archetype ACTION [PARAMETERS] | |
| Use an archetype to generate, build or run a custom che assembly | |
| MANDATORY DOCKER PARAMETERS: | |
| -v <path>:/archetype Local path where your custom assembly will be generated | |
| OPTIONAL DOCKER PARAMETERS: | |
| -v <path>:/m2 Local path to your host's Maven M2 repository |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ cd che/ | |
| $ mvn license:format | |
| $ mvn sortpom:sort |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <dependencyManagement> | |
| <dependencies> | |
| <dependency> | |
| <groupId>org.eclipse.che.plugin</groupId> | |
| <artifactId>che-sample-custom-openocd-extension-ide</artifactId> | |
| <version>${che.version}</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.eclipse.che.plugin</groupId> | |
| <artifactId>che-sample-custom-openocd-extension-server</artifactId> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <dependency> | |
| <groupId>org.eclipse.che.plugin</groupId> | |
| <artifactId>che-sample-custom-openocd-extension-server</artifactId> | |
| <version>${che.version}</version> | |
| </dependency> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <inherits name=”org.eclipse.che.plugin.openocdexample.MyExtension”/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <dependency> | |
| <groupId>org.eclipse.che.plugin</groupId> | |
| <artifactId>che-sample-custom-openocd-extension-ide</artifactId> | |
| <version>${che.version}</version> | |
| </dependency> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| “environments”:{ | |
| “wksp-test-ptfio”:{ | |
| “machines”:{ | |
| “ws-machine”:{ | |
| “attributes”:{ | |
| “memoryLimitBytes”:“1048576000” | |
| }, | |
| “servers”:{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ cd <path to che-parent directory> | |
| $ mvn -pl ‘!dashboard’ clean install | |
| # OR | |
| $ mvn -pl ‘!dashboard’ -DskipTests=true -Dfindbugs.skip=true -Dskip-validate-sources clean install |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Start by compiling your extension (complete che compilation is quite long, so it avoids to loss time if you have an error): | |
| $ cd <path to your extension> | |
| $ mvn clean install | |
| # Build plugin | |
| $ cd <path to che-parent/plugins> | |
| $ mvn clean install | |
| # Build assembly: | |
| $ cd <path to che-parent/assembly> |