forked from vaadin/testbench
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
78 lines (73 loc) · 2.82 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-testbench-parent</artifactId>
<packaging>pom</packaging>
<version>5.1-SNAPSHOT</version>
<name>Vaadin TestBench parent</name>
<organization>
<name>Vaadin Ltd</name>
<url>http://vaadin.com/</url>
</organization>
<url>http://vaadin.com/</url>
<issueManagement>
<system>trac</system>
<url>http://dev.vaadin.com/</url>
</issueManagement>
<developers>
<developer>
<name>Jonatan Kronqvist</name>
<id>jonatan</id>
<email>jonatan at vaadin.com</email>
<organization>Vaadin Ltd</organization>
<timezone>+2</timezone>
</developer>
</developers>
<licenses>
<license>
<name>Commercial Vaadin Add-On License version 3.0</name>
<url>http://vaadin.com/license/cval-3</url>
<distribution>manual</distribution>
</license>
</licenses>
<distributionManagement>
<snapshotRepository>
<id>vaadin-snapshots</id>
<name>Vaadin snapshot repository</name>
<url>https://oss.sonatype.org/content/repositories/vaadin-snapshots/</url>
</snapshotRepository>
<repository>
<id>vaadin-addons</id>
<name>Vaadin add-ons repository</name>
<url>http://vaadin.com/nexus/content/repositories/vaadin-addons</url>
</repository>
</distributionManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<vaadin.version>8.0.0</vaadin.version>
<vaadin.testbench.api.version>${vaadin.version}</vaadin.testbench.api.version>
<snapshot.repository.url>https://oss.sonatype.org/content/repositories/vaadin-snapshots/
</snapshot.repository.url>
<Implementation-Version>${project.version}</Implementation-Version>
</properties>
<modules>
<module>vaadin-testbench</module>
<module>vaadin-testbench-core</module>
<module>vaadin-testbench-standalone</module>
<module>vaadin-testbench-assembly</module>
<module>vaadin-testbench-integration-tests</module>
</modules>
<build>
<plugins>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.5</version>
<configuration>
<skip>false</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>