diff options
author | golabek <tomasz.golabek@nokia.com> | 2019-01-28 09:34:48 +0100 |
---|---|---|
committer | golabek <tomasz.golabek@nokia.com> | 2019-02-01 11:05:48 +0100 |
commit | ec4f95457ec430838feeae6da48d0fd011ddffa9 (patch) | |
tree | d7c7b40d648a66c86f47ec26fc15acc4660dee8b /vid-app-common/pom.xml | |
parent | 974fc96fdc47cafb6f7169d197e69cb81e6df4a9 (diff) |
Introduce JS unit tests into VID
maven -> npm -> gulp -> jest frameworks added in a mentioned order.
Change-Id: I1865228973eb31188fb052e8c9629f0ac01e48a7
Issue-ID: VID-391
Signed-off-by: Tomasz Golabek <tomasz.golabek@nokia.com>
Diffstat (limited to 'vid-app-common/pom.xml')
-rwxr-xr-x | vid-app-common/pom.xml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/vid-app-common/pom.xml b/vid-app-common/pom.xml index 7cd30a21f..1ea069137 100755 --- a/vid-app-common/pom.xml +++ b/vid-app-common/pom.xml @@ -37,6 +37,9 @@ <kotlin.version>1.3.11</kotlin.version> <kotlin.compiler.jvmTarget>1.8</kotlin.compiler.jvmTarget> + <eirslett.version>1.6</eirslett.version> + <node.version>v6.16.0</node.version> + </properties> @@ -158,6 +161,34 @@ </plugin> <plugin> + <groupId>com.github.eirslett</groupId> + <artifactId>frontend-maven-plugin</artifactId> + <version>${eirslett.version}</version> + <executions> + <execution> + <id>install node and npm</id> + <goals> + <goal>install-node-and-npm</goal> + </goals> + <phase>generate-resources</phase> + <configuration> + <nodeVersion>${node.version}</nodeVersion> + </configuration> + </execution> + <execution> + <id>npm run-script build</id> + <configuration> + <arguments>run-script build</arguments> + </configuration> + <goals> + <goal>npm</goal> + </goals> + <phase>generate-resources</phase> + </execution> + </executions> + </plugin> + + <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.5.1</version> |