-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
189 lines (177 loc) · 7.17 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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<?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>com.marviq.util.logging</groupId>
<artifactId>log4j-appender-jira</artifactId>
<version>1.4-SNAPSHOT</version>
<name>Log4j JIRA-Appender</name>
<description>A Log4j appender that creates issues in an Atlassian JIRA issue tracker.</description>
<inceptionYear>2011</inceptionYear>
<url>http://java.net/projects/log4j-appender-jira/</url>
<organization>
<name>Marviq B.V.</name>
<url>http://www.marviq.com</url>
</organization>
<issueManagement>
<system>jira</system>
<url>http://java.net/jira/browse/LOG4J_APPENDER_JIRA</url>
</issueManagement>
<mailingLists>
<mailingList>
<name>Commits Mailing List</name>
<archive>http://java.net/projects/log4j-appender-jira/lists/commits/archive</archive>
</mailingList>
<mailingList>
<name>Issues Mailing List</name>
<archive>http://java.net/projects/log4j-appender-jira/lists/issues/archive</archive>
</mailingList>
</mailingLists>
<scm>
<url>http://java.net/projects/log4j-appender-jira/sources/source-code-repository/show</url>
<connection>scm:svn:https://svn.java.net/svn/log4j-appender-jira~source-code-repository</connection>
<developerConnection>scm:svn:https://svn.java.net/svn/log4j-appender-jira~source-code-repository</developerConnection>
<tag>trunk</tag>
</scm>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Guus der Kinderen</name>
<email>[email protected]</email>
<organization>Marviq B.V.</organization>
<organizationUrl>http://www.marviq.com</organizationUrl>
<timezone>+1</timezone>
<roles>
<role>Developer</role>
<role>Original Author</role>
</roles>
</developer>
<developer>
<name>Emiel van der Herberg</name>
<email>[email protected]</email>
<organization>Marviq B.V.</organization>
<organizationUrl>http://www.marviq.com</organizationUrl>
<timezone>+1</timezone>
<roles>
<role>Developer</role>
</roles>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
<manifestEntries>
<MavenGroupId>${project.groupId}</MavenGroupId>
<MavenArtifactId>${project.artifactId}</MavenArtifactId>
<MavenVersion>${project.version}</MavenVersion>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>2.4.0</version>
<configuration>
<findbugsXmlOutput>true</findbugsXmlOutput>
</configuration>
<executions>
<execution>
<id>findbugs</id>
<phase>test</phase>
<goals>
<goal>findbugs</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<relocations>
<relocation>
<pattern>com.google.common</pattern>
<shadedPattern>repackaged.com.marviq.util.logging.com.google.common</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2.1</version>
<configuration>
<descriptors>
<descriptor>src/main/assembly/dist.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>12.0</version>
</dependency>
<dependency>
<groupId>xmlrpc</groupId>
<artifactId>xmlrpc-client</artifactId>
<version>3.0</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>[1.2.15,)</version> <!-- last changes made to the AppenderSkeleton were done in one of the RCs for 1.2.15. (see http://svn.apache.org/viewvc?view=revision&revision=528257 ). Everything after that revision should be ok. -->
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>