-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
70 lines (63 loc) · 2.4 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
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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.ndviet</groupId>
<artifactId>test-parent-pom</artifactId>
<version>${revision}</version>
<relativePath>../test-parent-pom/pom.xml</relativePath>
</parent>
<artifactId>test-java2robot-adapter</artifactId>
<version>${revision}</version>
<name>Test Java2Robot Adapter</name>
<description>Implementation for test libraries written in Java can be used in Robot Framework.</description>
<url>https://${github.url}/${github.organization}/${github.repository}/tree/${github.branch}</url>
<packaging>pom</packaging>
<modules>
<module>robot-keywords</module>
</modules>
<properties>
<github.repository>test-java2robot-adapter</github.repository>
</properties>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<id>${github.id}</id>
<name>${github.name}</name>
<email>${github.email}</email>
<roles>
<role>maintainer</role>
<role>developer</role>
</roles>
</developer>
</developers>
<scm>
<connection>scm:git:git@${github.url}:${github.organization}/${github.repository}.git</connection>
<developerConnection>scm:git:ssh://git@${github.url}:${github.organization}/${github.repository}.git
</developerConnection>
<url>https://${github.url}/${github.organization}/${github.repository}/tree/${github.branch}</url>
</scm>
<profiles>
<profile>
<id>flatten-pom</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>