forked from PerfCake/PerfCake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
145 lines (145 loc) · 5.85 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE htmlEntities [
<!ENTITY nbsp " ">
]>
<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>
<groupId>org.perfcake</groupId>
<artifactId>perfcake-parent</artifactId>
<version>5.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>PerfCake parent</name>
<organization>
<name>PerfCake Community</name>
<url>https://www.perfcake.org</url>
</organization>
<description>A Lightweight Performance Testing Framework</description>
<url>https://www.perfcake.org</url>
<inceptionYear>2010</inceptionYear>
<scm>
<url>https://github.com/PerfCake/PerfCake</url>
<connection>scm:git:git://github.com/PerfCake/PerfCake.git</connection>
<developerConnection>scm:git:[email protected]:PerfCake/PerfCake.git</developerConnection>
<tag>v5.0</tag>
</scm>
<developers>
<developer>
<name>Martin Večeřa</name>
<email>[email protected]</email>
</developer>
<developer>
<name>Pavel Macík</name>
<email>[email protected]</email>
</developer>
</developers>
<contributors>
<contributor>
<name>Marek Baluch</name>
<email>[email protected]</email>
</contributor>
<contributor>
<name>Pavel Drozd</name>
<email>[email protected]</email>
</contributor>
<contributor>
<name>Lenka Vašková</name>
<email>[email protected]</email>
</contributor>
<contributor>
<name>Jiří Sedláček</name>
<email>[email protected]</email>
</contributor>
<contributor>
<name>Dominik Hanák</name>
<email>[email protected]</email>
</contributor>
<contributor>
<name>Vojtěch Juránek</name>
</contributor>
<contributor>
<name>Jiří Sviták</name>
</contributor>
<contributor>
<name>Jiří Locker</name>
</contributor>
</contributors>
<ciManagement>
<system>Jenkins</system>
<url>https://perfcake.ci.cloudbees.com/</url>
</ciManagement>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/PerfCake/PerfCake/issues/</url>
</issueManagement>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<properties>
<maven.assembly.plugin.version>2.5.3</maven.assembly.plugin.version>
<maven.clean.plugin.version>2.5</maven.clean.plugin.version>
<maven.jar.plugin.version>2.4</maven.jar.plugin.version>
<maven.site.plugin.version>3.3</maven.site.plugin.version>
<maven.compiler.plugin.version>3.2</maven.compiler.plugin.version>
<maven.license.plugin.version>1.5</maven.license.plugin.version>
<maven.release.plugin.version>2.4.1</maven.release.plugin.version>
<maven.findbugs.plugin.version>3.0.0</maven.findbugs.plugin.version>
<maven.project.info.plugin.version>2.7</maven.project.info.plugin.version>
<maven.exec.plugin.version>1.2</maven.exec.plugin.version>
<maven.source.plugin.version>2.4</maven.source.plugin.version>
<maven.javadoc.plugin.version>2.10.1</maven.javadoc.plugin.version>
<maven.gpg.plugin.version>1.5</maven.gpg.plugin.version>
<maven.xml.plugin.version>1.0</maven.xml.plugin.version>
<maven.surefire.plugin.version>2.18.1</maven.surefire.plugin.version>
<maven.dependency.plugin.version>2.8</maven.dependency.plugin.version>
</properties>
<modules>
<module>perfcake-agent</module>
<module>perfcake</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>${maven.assembly.plugin.version}</version>
<configuration>
<descriptors>
<descriptor>${basedir}/perfcake/src/main/assembly/bin.xml</descriptor>
<descriptor>${basedir}/perfcake/src/main/assembly/src.xml</descriptor>
<descriptor>${basedir}/perfcake-agent/src/main/assembly/bin.xml</descriptor>
<descriptor>${basedir}/perfcake-agent/src/main/assembly/src.xml</descriptor>
</descriptors>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven.javadoc.plugin.version}</version>
<configuration>
<windowtitle>${project.name} API Documentation (version ${project.version})</windowtitle>
<doctitle>${project.name} API Documentation (version ${project.version})</doctitle>
<show>public</show>
<excludePackageNames>org.perfcake.model,org.perfcake.scenario.dsl</excludePackageNames>
<stylesheetfile>${basedir}/perfcake/src/main/javadoc/javadoc.css</stylesheetfile>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>