~ubuntu-branches/ubuntu/saucy/maven-enforcer/saucy

« back to all changes in this revision

Viewing changes to enforcer-rules/src/it/requirePluginsReports/pom.xml

  • Committer: Package Import Robot
  • Author(s): Torsten Werner
  • Date: 2011-09-12 22:30:16 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: package-import@ubuntu.com-20110912223016-e2pk04avoq8bur7t
Tags: 1.0-1
* Team upload
* New upstream release.
* Add more Build-Depends.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?xml version="1.0"?>
2
 
 
3
 
<project xmlns="http://maven.apache.org/POM/4.0.0"
4
 
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5
 
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
6
 
  <modelVersion>4.0.0</modelVersion>
7
 
  <groupId>net.sf.logdistiller</groupId>
8
 
  <artifactId>logdistiller</artifactId>
9
 
  <packaging>jar</packaging>
10
 
 
11
 
  <name>LogDistiller</name>
12
 
  <version>0.10-SNAPSHOT</version>
13
 
  <description>
14
 
    LogDistiller is a logfile merge and sort tool.
15
 
    Log content is classified according to rules configured in an XML file.
16
 
    Classification results go into reports, which are published:
17
 
    simply stored in a file, sent by mail, or even added to a news feed.
18
 
  </description>
19
 
  <url>http://logdistiller.sf.net/</url>
20
 
  <inceptionYear>2004</inceptionYear>
21
 
  <developers>
22
 
    <developer>
23
 
      <id>hboutemy</id>
24
 
      <name>Hervé Boutemy</name>
25
 
      <email>hboutemy@users.sourceforge.net</email>
26
 
      <timezone>+1</timezone>
27
 
    </developer>
28
 
  </developers>
29
 
  <scm>
30
 
    <connection>scm:cvs:pserver:anonymous@logdistiller.cvs.sourceforge.net:/cvsroot/logdistiller:logdistiller</connection>
31
 
    <developerConnection>scm:cvs:ext:${maven.username}@logdistiller.cvs.sourceforge.net:/cvsroot/logdistiller:logdistiller</developerConnection>
32
 
    <url>http://logdistiller.cvs.sourceforge.net/logdistiller/logdistiller</url>
33
 
  </scm>
34
 
  <licenses>
35
 
    <license>
36
 
      <name>GPL</name>
37
 
      <url>http://www.gnu.org/licenses/gpl.html</url>
38
 
      <distribution>repo</distribution>
39
 
    </license>
40
 
  </licenses>
41
 
  <issueManagement>
42
 
    <system>SF Bug Tracker</system>
43
 
    <url>http://sourceforge.net/tracker/?atid=629552&amp;group_id=101369</url>
44
 
  </issueManagement>
45
 
  <mailingLists>
46
 
    <mailingList>
47
 
      <name>LogDistiller Users</name>
48
 
      <subscribe>https://lists.sourceforge.net/lists/listinfo/logdistiller-users</subscribe>
49
 
      <unsubscribe>https://lists.sourceforge.net/lists/listinfo/logdistiller-users</unsubscribe>
50
 
      <post>logdistiller-users@lists.sourceforge.net</post>
51
 
      <archive>http://sourceforge.net/mailarchive/forum.php?forum_name=logdistiller-users</archive>
52
 
    </mailingList>
53
 
  </mailingLists>
54
 
 
55
 
  <properties>
56
 
    <project.build.sourceEncoding>ISO-8859-15</project.build.sourceEncoding>
57
 
  </properties>
58
 
 
59
 
  <build>
60
 
    <sourceDirectory>src</sourceDirectory>
61
 
    <testSourceDirectory>test</testSourceDirectory>
62
 
    <resources>
63
 
      <resource>
64
 
        <directory>${basedir}/src/</directory>
65
 
        <includes>
66
 
          <include>net/sf/logdistiller/xml/*.dtd</include>
67
 
          <include>net/sf/logdistiller/gui/*.xml</include>
68
 
        </includes>
69
 
      </resource>
70
 
    </resources>
71
 
    <testResources>
72
 
      <testResource>
73
 
        <directory>${basedir}/test/</directory>
74
 
        <includes>
75
 
          <include>logdistiller.properties</include>
76
 
          <include>net/sf/logdistiller/*.ser</include>
77
 
          <include>net/sf/logdistiller/logtypes/*.log</include>
78
 
          <include>net/sf/logdistiller/logtypes/*.csv</include>
79
 
          <include>net/sf/logdistiller/xml/*.xml</include>
80
 
        </includes>
81
 
      </testResource>
82
 
    </testResources>
83
 
 
84
 
    <plugins>
85
 
      <plugin>
86
 
        <groupId>org.apache.maven.plugins</groupId>
87
 
        <artifactId>maven-compiler-plugin</artifactId>
88
 
        <version>2.0.2</version>
89
 
        <configuration>
90
 
          <source>1.4</source>
91
 
          <target>1.4</target>
92
 
          <encoding>${project.build.sourceEncoding}</encoding><!-- not needed for 2.1 -->
93
 
        </configuration>
94
 
      </plugin>
95
 
      <plugin>
96
 
        <groupId>org.apache.maven.plugins</groupId>
97
 
        <artifactId>maven-surefire-plugin</artifactId>
98
 
        <version>2.3</version>
99
 
        <configuration>
100
 
          <test>**/*TestCase</test>
101
 
        </configuration>
102
 
      </plugin>
103
 
      <plugin>
104
 
        <groupId>org.codehaus.mojo</groupId>
105
 
        <artifactId>buildnumber-maven-plugin</artifactId>
106
 
        <version>1.0-beta-1</version>
107
 
        <configuration>
108
 
          <format>{0,date,yyyy-MM-dd HH:mm:ss}</format>
109
 
          <items>
110
 
            <item>timestamp</item>
111
 
          </items>
112
 
        </configuration>
113
 
        <executions>
114
 
          <execution>
115
 
            <phase>validate</phase>
116
 
            <goals>
117
 
              <goal>create</goal>
118
 
            </goals>
119
 
          </execution>
120
 
        </executions>
121
 
      </plugin>
122
 
      <plugin>
123
 
        <groupId>org.apache.maven.plugins</groupId>
124
 
        <artifactId>maven-assembly-plugin</artifactId>
125
 
        <version>2.1</version>
126
 
        <configuration>
127
 
          <descriptors>
128
 
            <descriptor>src/main/assembly/full.xml</descriptor>
129
 
          </descriptors>
130
 
        </configuration>
131
 
      </plugin>
132
 
      <plugin>
133
 
        <groupId>org.apache.maven.plugins</groupId>
134
 
        <artifactId>maven-jar-plugin</artifactId>
135
 
        <version>2.1</version>
136
 
        <configuration>
137
 
          <archive>
138
 
            <index>true</index>
139
 
            <manifest>
140
 
              <addClasspath>true</addClasspath>
141
 
              <classpathPrefix>lib</classpathPrefix>
142
 
              <mainClass>net.sf.logdistiller.gui.Main</mainClass>
143
 
            </manifest>
144
 
            <manifestEntries>
145
 
              <Built-By>${maven.username}</Built-By>
146
 
              <Specification-Title>${project.name}</Specification-Title>
147
 
              <Specification-Version>${project.version}</Specification-Version>
148
 
              <Specification-Vendor>Hervé BOUTEMY</Specification-Vendor>
149
 
              <Implementation-Title>${project.groupId}</Implementation-Title>
150
 
              <Implementation-Version>${project.version} ${buildNumber}</Implementation-Version>
151
 
              <Implementation-Vendor>${project.url}</Implementation-Vendor>
152
 
            </manifestEntries>
153
 
          </archive>
154
 
        </configuration>
155
 
      </plugin>
156
 
      <plugin>
157
 
        <groupId>org.codehaus.mojo</groupId>
158
 
        <artifactId>cobertura-maven-plugin</artifactId>
159
 
        <version>2.2</version>
160
 
        <executions>
161
 
          <execution>
162
 
            <goals>
163
 
              <goal>clean</goal>
164
 
            </goals>
165
 
          </execution>
166
 
        </executions>
167
 
      </plugin>
168
 
      <plugin>
169
 
        <groupId>org.apache.maven.plugins</groupId>
170
 
        <artifactId>maven-antrun-plugin</artifactId>
171
 
        <version>1.1</version>
172
 
        <executions>
173
 
          <execution>
174
 
            <id>ant-test</id>
175
 
            <phase>test</phase>
176
 
            <configuration>
177
 
              <tasks>
178
 
                <ant antfile="${basedir}/test/build.xml" inheritRefs="true">
179
 
                  <target name="test.full"/>
180
 
                </ant>
181
 
              </tasks>
182
 
            </configuration>
183
 
            <goals>
184
 
              <goal>run</goal>
185
 
            </goals>
186
 
          </execution>
187
 
        </executions>
188
 
      </plugin>
189
 
      <plugin>
190
 
        <groupId>org.apache.maven.plugins</groupId>
191
 
        <artifactId>maven-clean-plugin</artifactId>
192
 
        <version>2.2</version>
193
 
      </plugin>
194
 
      <plugin>
195
 
        <groupId>org.apache.maven.plugins</groupId>
196
 
        <artifactId>maven-resources-plugin</artifactId>
197
 
        <version>2.2</version>
198
 
      </plugin>
199
 
      <plugin>
200
 
        <groupId>org.apache.maven.plugins</groupId>
201
 
        <artifactId>maven-install-plugin</artifactId>
202
 
        <version>2.2</version>
203
 
      </plugin>
204
 
      <plugin>
205
 
        <groupId>org.apache.maven.plugins</groupId>
206
 
        <artifactId>maven-deploy-plugin</artifactId>
207
 
        <version>2.3</version>
208
 
      </plugin>
209
 
      <plugin>
210
 
        <groupId>org.apache.maven.plugins</groupId>
211
 
        <artifactId>maven-site-plugin</artifactId>
212
 
        <version>2.0-beta-7</version>
213
 
      </plugin>
214
 
      <plugin>
215
 
        <groupId>org.apache.maven.plugins</groupId>
216
 
        <artifactId>maven-enforcer-plugin</artifactId>
217
 
        <version>1.0-SNAPSHOT</version>
218
 
        <executions>
219
 
          <execution>
220
 
            <id>enforce-versions</id>
221
 
            <goals>
222
 
              <goal>enforce</goal>
223
 
            </goals>
224
 
            <configuration>
225
 
              <rules>
226
 
                <requirePluginVersions>
227
 
                  <unCheckedPlugins>
228
 
                    <unCheckedPlugin>
229
 
                      org.apache.maven.plugins:maven-enforcer-plugin
230
 
                    </unCheckedPlugin>
231
 
                  </unCheckedPlugins>
232
 
                </requirePluginVersions>
233
 
              </rules>
234
 
            </configuration>
235
 
          </execution>
236
 
        </executions>
237
 
      </plugin>
238
 
    </plugins>
239
 
  </build>
240
 
 
241
 
  <dependencies>
242
 
    <dependency>
243
 
      <groupId>ant</groupId>
244
 
      <artifactId>ant</artifactId>
245
 
      <version>1.6.5</version>
246
 
    </dependency>
247
 
    <dependency>
248
 
      <groupId>javax.mail</groupId>
249
 
      <artifactId>mail</artifactId>
250
 
      <version>1.4</version>
251
 
    </dependency>
252
 
    <dependency>
253
 
      <groupId>com.jgoodies</groupId>
254
 
      <artifactId>forms</artifactId>
255
 
      <version>1.0.7</version>
256
 
      <optional>true</optional>
257
 
    </dependency>
258
 
    <dependency>
259
 
      <groupId>net.sf.formlayoutmaker</groupId>
260
 
      <artifactId>formlayoutmakerx</artifactId>
261
 
      <version>rc7</version>
262
 
      <optional>true</optional>
263
 
    </dependency>
264
 
    <dependency>
265
 
      <groupId>org.apache.commons</groupId>
266
 
      <artifactId>commons-io</artifactId>
267
 
      <version>1.3.2</version>
268
 
    </dependency>
269
 
    <dependency>
270
 
      <groupId>commons-lang</groupId>
271
 
      <artifactId>commons-lang</artifactId>
272
 
      <version>2.3</version>
273
 
    </dependency>
274
 
    <dependency>
275
 
      <groupId>rome</groupId>
276
 
      <artifactId>rome</artifactId>
277
 
      <version>0.8</version>
278
 
      <optional>true</optional>
279
 
    </dependency>
280
 
    <dependency>
281
 
      <groupId>jdom</groupId>
282
 
      <artifactId>jdom</artifactId>
283
 
      <version>1.0</version>
284
 
    </dependency>
285
 
    <dependency>
286
 
      <groupId>junit</groupId>
287
 
      <artifactId>junit</artifactId>
288
 
      <version>3.8.1</version>
289
 
      <optional>true</optional>
290
 
    </dependency>
291
 
  </dependencies>
292
 
 
293
 
  <reporting>
294
 
    <plugins>
295
 
      <plugin>
296
 
        <groupId>org.apache.maven.plugins</groupId>
297
 
        <artifactId>maven-project-info-reports-plugin</artifactId>
298
 
        <version>2.1-SNAPSHOT</version>
299
 
      </plugin>
300
 
      <plugin>
301
 
        <groupId>org.apache.maven.plugins</groupId>
302
 
        <artifactId>maven-javadoc-plugin</artifactId>
303
 
        <version>2.3</version>
304
 
        <configuration>
305
 
          <encoding>${project.build.sourceEncoding}</encoding><!-- not needed in 2.5 -->
306
 
          <overview>${basedir}/src/overview.html</overview>
307
 
          <stylesheetfile>${basedir}/xdocs/style/stylesheet.css</stylesheetfile>
308
 
          <linksource>true</linksource>
309
 
          <links>
310
 
            <link>http://java.sun.com/j2se/1.4.2/docs/api</link>
311
 
            <link>http://www.junit.org/junit/javadoc/3.8.1</link>
312
 
          </links>
313
 
        </configuration>
314
 
      </plugin>
315
 
      <plugin>
316
 
        <groupId>org.apache.maven.plugins</groupId>
317
 
        <artifactId>maven-pmd-plugin</artifactId>
318
 
        <version>2.2</version>
319
 
        <configuration>
320
 
          <sourceEncoding>${project.build.sourceEncoding}</sourceEncoding><!-- not needed in 2.4 -->
321
 
        </configuration>
322
 
      </plugin>
323
 
      <plugin>
324
 
        <groupId>org.apache.maven.plugins</groupId>
325
 
        <artifactId>maven-surefire-report-plugin</artifactId>
326
 
        <version>2.3</version>
327
 
      </plugin>
328
 
      <plugin>
329
 
        <groupId>org.codehaus.mojo</groupId>
330
 
        <artifactId>cobertura-maven-plugin</artifactId>
331
 
      </plugin>
332
 
      <plugin>
333
 
        <groupId>org.apache.maven.plugins</groupId>
334
 
        <artifactId>maven-jxr-plugin</artifactId>
335
 
        <version>2.1</version>
336
 
        <configuration>
337
 
          <inputEncoding>${project.build.sourceEncoding}</inputEncoding><!-- not needed in 2.2 -->
338
 
        </configuration>
339
 
      </plugin>
340
 
      <plugin>
341
 
        <groupId>org.codehaus.mojo</groupId>
342
 
        <artifactId>jdepend-maven-plugin</artifactId>
343
 
        <version>2.0-beta-1</version>
344
 
      </plugin>
345
 
      <plugin>
346
 
        <groupId>org.codehaus.mojo</groupId>
347
 
        <artifactId>findbugs-maven-plugin</artifactId>
348
 
        <version>1.1.1</version>
349
 
        <configuration>
350
 
          <excludeFilterFile>test/findBugsExcludeFilter.xml</excludeFilterFile>
351
 
        </configuration>
352
 
      </plugin>
353
 
      <plugin>
354
 
        <groupId>org.codehaus.mojo</groupId>
355
 
        <artifactId>javancss-maven-plugin</artifactId>
356
 
        <version>2.0-beta-2</version>
357
 
      </plugin>
358
 
      <plugin>
359
 
        <groupId>net.sf.dtddoc</groupId>
360
 
        <artifactId>dtddoc-maven-plugin</artifactId>
361
 
        <version>1.1</version>
362
 
        <configuration>
363
 
          <sourceDirectory>${basedir}/src/net/sf/logdistiller/xml</sourceDirectory>
364
 
          <docTitle>LogDistiller's DTD</docTitle>
365
 
          <styleSheet>${basedir}/xdocs/style/DTDDocStyle.css</styleSheet>
366
 
          <includes>
367
 
            <include>logdistiller-1_3.dtd</include>
368
 
          </includes>
369
 
        </configuration>
370
 
      </plugin>
371
 
    </plugins>
372
 
  </reporting>
373
 
 
374
 
  <profiles>
375
 
    <profile>
376
 
      <id>full</id>
377
 
      <reporting>
378
 
        <plugins>
379
 
          <plugin>
380
 
            <groupId>statcvs</groupId>
381
 
            <artifactId>maven-statcvs-plugin</artifactId>
382
 
            <version>3.1-SNAPSHOT</version>
383
 
            <configuration>
384
 
              <history>true</history>
385
 
              <fork>true</fork>
386
 
              <webUrlType>viewcvs</webUrlType>
387
 
              <excludes>
388
 
                <exclude>docs/*</exclude>
389
 
                <exclude>sample/logs/**/*</exclude>
390
 
                <exclude>**/tmp/*</exclude>
391
 
              </excludes>
392
 
            </configuration>
393
 
          </plugin>
394
 
        </plugins>
395
 
      </reporting>
396
 
    </profile>
397
 
  </profiles>
398
 
 
399
 
  <distributionManagement>
400
 
    <site>
401
 
      <id>sourceforge</id>
402
 
      <url>scp://logdistiller.sourceforge.net/home/groups/l/lo/logdistiller/htdocs</url>
403
 
    </site>
404
 
    <repository>
405
 
      <id>sourceforge</id>
406
 
      <url>scp://dtddoc.sourceforge.net/home/groups/l/lo/logdistiller/htdocs/m2repo/releases</url>
407
 
    </repository>
408
 
    <snapshotRepository>
409
 
      <id>sourceforge</id>
410
 
      <url>scp://dtddoc.sourceforge.net/home/groups/l/lo/logdistiller/htdocs/m2repo/snapshots</url>
411
 
    </snapshotRepository>
412
 
  </distributionManagement>
413
 
</project>