-
Notifications
You must be signed in to change notification settings - Fork 3
/
pom.xml
82 lines (75 loc) · 2.74 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
<?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>
<groupId>org.jboss.jbossset</groupId>
<artifactId>bugclerk-report</artifactId>
<version>0.1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Bug Clerk Reports</name>
<description>A inspection tool for bug/task entry, to check the quality of it and ensures it complies to defines rules and processes</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<scm>
<connection>scm:git:github.com/jboss-set/bug-clerk-report-job</connection>
<developerConnection>scm:git:git@github.com:jboss-set/bug-clerk-report-job</developerConnection>
<url>https://github.com/jboss-set/pull-request-processor</url>
<tag>HEAD</tag>
</scm>
<dependencies>
<dependency>
<groupId>org.jboss.jbossset</groupId>
<artifactId>bugclerk</artifactId>
<version>0.8.4.Final</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.3.2</version>
<executions>
<execution>
<goals>
<goal>java</goal>
</goals>
</execution>
</executions>
<configuration>
<mainClass>org.jboss.jbossset.bugclerk.cli.BugClerkWithFilterCLI</mainClass>
<cleanupDaemonThreads>false</cleanupDaemonThreads>
<arguments>
<argument>-u</argument>
<argument>${jboss.set.user.login}</argument>
<argument>-p</argument>
<argument>${jboss.set.user.password}</argument>
<argument>-f</argument>
<argument>${bugclerk.filter.url}</argument>
<argument>-c</argument>
<argument>-h</argument>
<argument>bugclerk-report.html</argument>
<argument>-t</argument>
<argument>jira</argument>
</arguments>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>jboss-public-repository-group</id>
<name>JBoss Public Maven Repository Group</name>
<url>https://repository.jboss.org/nexus/content/groups/public-jboss/</url>
<layout>default</layout>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</snapshots>
</repository>
</repositories>
</project>