Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 9aecc36d8a891670845b6fdb2285aa9673eac9a4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <parent>
    <groupId>org.eclipse.scout.rt</groupId>
    <artifactId>org.eclipse.scout.rt</artifactId>
    <version>11.0.4-beta.1</version>
    <relativePath>../org.eclipse.scout.rt</relativePath>
  </parent>

  <artifactId>eclipse-scout-testing</artifactId>

  <properties>
    <master_skip_npm_build_dev>true</master_skip_npm_build_dev>
    <master_skip_npm_build_prod>true</master_skip_npm_build_prod>
    <master_skip_karma_test>true</master_skip_karma_test>
    <master_skip_copy_webpack_build_output>true</master_skip_copy_webpack_build_output>
  </properties>

</project>

Back to the top