Skip to content

Commit 959ea9f

Browse files
authored
#344: updated client doc (#377)
1 parent 6c5cfbb commit 959ea9f

File tree

1 file changed

+9
-23
lines changed

1 file changed

+9
-23
lines changed

documentation/guide-client-layer.asciidoc

Lines changed: 9 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -22,40 +22,26 @@ In order to get started with client development as a Java developer we give you
2222
|*Topic* |*Aspect* |*JavaScript*|*Java*
2323
|Programming |Language |https://www.typescriptlang.org/[TypeScript] (extends https://www.javascript.com/[JavaScript])|https://docs.oracle.com/javase/tutorial/[Java]
2424
|Runtime |VM |https://nodejs.org/[nodejs] (or web-browser)|http://www.oracle.com/technetwork/java/javase/[jvm]
25-
.3+|Dependency-Management |Tool |http://yarnpkg.com/[yarn] (or https://github.com/npm/npm[npm])|https://maven.apache.org/[maven]
25+
.5+|Build- & Dependency-Management
26+
|Tool |https://github.com/npm/npm[npm] or http://yarnpkg.com/[yarn]|https://maven.apache.org/[maven]
2627
|Config |https://docs.npmjs.com/files/package.json[package.json]|https://maven.apache.org/pom.html[pom.xml]
2728
|Repository|https://www.npmjs.com/[npm repo]|http://repo.maven.apache.org/maven2[maven central] (https://mvnrepository.com/[repo search])
29+
|Build cmd |`https://angular.io/cli[ng] build` or `npm run build` (goals are not standardized in npm) |mvn https://maven.apache.org/plugins/maven-install-plugin/usage.html[install] (see https://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.html[lifecycle])
30+
|Test cmd |`https://angular.io/cli[ng] test`|mvn http://maven.apache.org/components/surefire/maven-surefire-plugin/[test]
2831

29-
.5+|Build-Management
30-
31-
|Taskrunner|http://gulpjs.com/[gulp]|https://maven.apache.org/[maven] (or more comparable http://ant.apache.org/[ant])
32-
33-
|Config |https://github.com/gulpjs/gulp/blob/master/docs/getting-started.md[gulpfile.js] (and `gulp/*`)|https://maven.apache.org/pom.html[pom.xml] (or https://ant.apache.org/manual/using.html[build.xml])
34-
35-
|Clean cmd |gulp clean|mvn https://maven.apache.org/plugins/maven-clean-plugin/[clean]
36-
37-
|Build cmd |yarn install && gulp build:dist|mvn https://maven.apache.org/plugins/maven-install-plugin/usage.html[install] (see https://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.html[lifecycle])
38-
39-
|Test cmd |gulp test|mvn http://maven.apache.org/components/surefire/maven-surefire-plugin/[test]
40-
41-
.4+|link:guide-testing.asciidoc[Testing]
42-
32+
.3+|link:guide-testing.asciidoc[Testing]
4333
|Test-Tool |http://jasmine.github.io/[jasmine]|http://junit.org/[junit]
44-
45-
|Test-Framework|https://karma-runner.github.io/[karma]|http://junit.org/[junit] / http://maven.apache.org/components/surefire/maven-surefire-plugin/[surefire]
46-
47-
|Browser Testing|http://phantomjs.org/[PhantomJS]|http://www.seleniumhq.org/[Selenium]
48-
49-
|Extensions|https://karma-runner.github.io/[karma]-*, http://phantomjs.org/[PhantomJs] for browser emulation|http://joel-costigliola.github.io/assertj/[AssertJ],*Unit and http://docs.spring.io/spring/docs/current/spring-framework-reference/html/integration-testing.html[spring-test], etc.)
34+
|Test-Runner|https://karma-runner.github.io/[karma]|http://junit.org/[junit] / http://maven.apache.org/components/surefire/maven-surefire-plugin/[surefire]
35+
|E2E Testing|https://www.protractortest.org/[Protractor]|http://www.seleniumhq.org/[Selenium]
5036

5137
.1+|Code Analysis
5238

53-
|Code Coverage|https://github.com/karma-runner/karma-coverage[karma-coverage] (and https://github.com/SitePen/remap-istanbul[remap-istanbul] for TypeScript)|http://www.eclemma.org/jacoco/[JaCoCo/EclEmma]
39+
|Code Coverage|`https://angular.io/guide/testing-code-coverage[ng test --no-watch --code-coverage]`|http://www.eclemma.org/jacoco/[JaCoCo]
5440

5541
.2+|Development
5642

5743
|IDE |https://code.visualstudio.com/[MS VS Code] or https://www.jetbrains.com/idea/[IntelliJ]|https://eclipse.org/downloads/[Eclipse] or https://www.jetbrains.com/idea/[IntelliJ]
5844

59-
|Framework |https://angularjs.org/[Angular] (etc.)|https://spring.io/[Spring] (etc.)
45+
|Framework |https://angularjs.org/[Angular] (etc.)|https://spring.io/[Spring] or https://quarkus.io/[Quarkus]
6046
|=======================
6147

0 commit comments

Comments
 (0)