forked from yegor256/s3auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
747 lines (730 loc) · 33 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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
<?xml version="1.0"?>
<!--
* Copyright (c) 2012, s3auth.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met: 1) Redistributions of source code must retain the above
* copyright notice, this list of conditions and the following
* disclaimer. 2) Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution. 3) Neither the name of the s3auth.com nor
* the names of its contributors may be used to endorse or promote
* products derived from this software without specific prior written
* permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT
* NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
* THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This file is an Apache Maven 3.0 build automation script. Maven is used
* in the project since it's one of the most powerful and stable
* tools in the market. Other tools were reviewed, including: Apache Ant,
* Phing, and GNU Make (all I personally know). None of them are suitable
* better than Apache Maven to this project. Maven is widely supported
* by open source community and is extended by many plugins. The only
* critical defect that I know is that Maven doesn't support incremental
* build and re-builds everything from scratch. I already reported this
* problem: http://jira.codehaus.org/browse/MNG-4885.
*
* @author Yegor Bugayenko ([email protected])
* @link http://maven.apache.org/
* @link http://en.wikipedia.org/wiki/List_of_build_automation_software
-->
<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.s3auth</groupId>
<artifactId>s3auth</artifactId>
<version s3auth="yes">1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>s3auth</name>
<modules>
<module>s3auth-hosts</module>
<module>s3auth-relay</module>
<module>s3auth-rest</module>
</modules>
<description>Amazon S3 HTTP Auth Relay</description>
<url>http://www.s3auth.com</url>
<inceptionYear>2012</inceptionYear>
<organization>
<name>s3auth.com</name>
<url>http://www.s3auth.com</url>
</organization>
<licenses>
<license>
<name>GNU</name>
<url>http://www.s3auth.com/misc/LICENSE.txt</url>
<distribution>site</distribution>
<comments>read the licenese</comments>
</license>
</licenses>
<developers>
<developer>
<id>1</id>
<name>Yegor Bugayenko</name>
<email>[email protected]</email>
<organization>s3auth.com</organization>
<organizationUrl>http://www.s3auth.com</organizationUrl>
<roles>
<role>Architect</role>
<role>Developer</role>
</roles>
<timezone>+1</timezone>
</developer>
</developers>
<issueManagement>
<system>github</system>
<url>https://github.com/yegor256/s3auth</url>
</issueManagement>
<scm>
<connection>scm:git:[email protected]:yegor256/s3auth.git</connection>
<developerConnection>scm:git:[email protected]:yegor256/s3auth.git</developerConnection>
<url>scm:git:[email protected]:yegor256/s3auth.git</url>
</scm>
<distributionManagement>
<snapshotRepository>
<id>s3auth.s3</id>
<url>s3://repo.s3auth.com/snapshot</url>
</snapshotRepository>
<repository>
<id>s3auth.s3</id>
<url>s3://repo.s3auth.com/release</url>
</repository>
<site>
<id>s3auth.s3</id>
<name>s3auth.com Project Site</name>
<url>s3://maven.s3auth.com</url>
</site>
</distributionManagement>
<prerequisites>
<maven>3.0</maven>
</prerequisites>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.build.timestamp.format>yyyy-MM-dd</maven.build.timestamp.format>
</properties>
<repositories>
<repository>
<id>s3auth.s3</id>
<url>s3://repo.s3auth.com/snapshot</url>
</repository>
<repository>
<id>rexsl.snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>rexsl.snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</pluginRepository>
</pluginRepositories>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk</artifactId>
<version since="22 Aug 2012">1.3.17</version>
</dependency>
<dependency>
<!-- Logging facility, on top of SLF4J. -->
<groupId>com.jcabi</groupId>
<artifactId>jcabi-log</artifactId>
<version since="9 Nov 2012">0.5.2</version>
</dependency>
<dependency>
<!-- Aspects -->
<groupId>com.jcabi</groupId>
<artifactId>jcabi-aspects</artifactId>
<version since="9 Nov 2012">0.5.2</version>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<!-- this one is compliant with aspectj-maven-plugin -->
<version since="27 May 2012">1.6.11</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version since="27 May 2012">1.1.0.Alpha1</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<version since="27 May 2012">4.3.0.Final</version>
<scope>runtime</scope>
</dependency>
<dependency>
<!--
This library simplifies string operations. This is
org.apache.commons.lang.*.
-->
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version since="19 Oct 2011">2.6</version>
</dependency>
<dependency>
<!--
This library simplifies file-management operations.
-->
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version since="19 Oct 2011">2.1</version>
</dependency>
<dependency>
<!-- Base64 codec -->
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version since="8 Nov 2011">1.5</version>
</dependency>
<dependency>
<!--
Assertions and matchers for unit tests.
@link http://code.google.com/p/hamcrest/wiki/Tutorial
-->
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version since="23 Dec 2011">1.2.1</version>
<scope>test</scope>
</dependency>
<dependency>
<!--
Assertions and matchers for unit tests.
@link http://code.google.com/p/hamcrest/wiki/Tutorial
-->
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version since="23 Dec 2011">1.2.1</version>
<scope>test</scope>
</dependency>
<dependency>
<!--
We are using JUnit framework for unit test organization
and management. This framework is the most stable and mature
in the market. Other options considered: TestNG.
@link http://www.junit.org/
-->
<groupId>junit</groupId>
<artifactId>junit-dep</artifactId>
<version since="23 Dec 2011">4.10</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<!--
Mockito is used as a mocking library during testing.
Other options: jMock.
@link http://stackoverflow.com/questions/22697
@link http://www.mockito.org/
-->
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version since="17 Apr 2012">1.9.0</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<!-- Forward all calls to SLF4J to LOG4J. -->
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version since="19 Sep 2011">1.6.2</version>
<scope>test</scope>
</dependency>
<dependency>
<!-- Use LOG4J logging facility for all loggings. -->
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version since="19 Sep 2011">1.2.16</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<profiles>
<profile>
<!--
Package MOCK artifact.
-->
<id>mock</id>
<activation>
<file><exists>${basedir}/src/mock</exists></file>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version since="5 Dec 2011">2.3.2</version>
<executions>
<execution>
<id>mock-artifact</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classesDirectory>${project.build.testOutputDirectory}</classesDirectory>
<archive>
<index>true</index>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
</archive>
<classifier>mock</classifier>
<includes>
<include>**/*Mocker*.class</include>
</includes>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version since="2 Dec 2011">1.7</version>
<executions>
<execution>
<id>add-test-sources</id>
<phase>validate</phase>
<goals>
<goal>add-test-source</goal>
</goals>
<configuration>
<sources>
<source>${basedir}/src/mock/java</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<!--
Sign artifacts before installation with GPG.
-->
<id>gpg</id>
<activation>
<property><name>gpg.keyname</name></property>
</activation>
<build>
<plugins>
<plugin>
<!--
To GPG-sign the artifact before deployment to foreign
repository. GPG keys have to be provided in CI
environment, and published beforehand.
@link http://www.sonatype.com/people/2010/01/how-to-generate-pgp-signatures-with-maven/
-->
<artifactId>maven-gpg-plugin</artifactId>
<version since="19 Oct 2011">1.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<!--
This profile activates all continuous integration specific
plugins, not necessary in development. To activate
this profile run: "mvn -Dci"
-->
<id>continuous-integration</id>
<activation>
<property><name>ci</name></property>
</activation>
<build>
<plugins>
<plugin>
<groupId>com.qulice</groupId>
<artifactId>qulice-maven-plugin</artifactId>
<version since="29 Oct 2012">0.2</version>
<configuration>
<license>file:${basedir}/LICENSE.txt</license>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.ning.maven.plugins</groupId>
<artifactId>maven-duplicate-finder-plugin</artifactId>
<version since="30 May 2012">1.0.3</version>
<configuration>
<failBuildInCaseOfConflict>true</failBuildInCaseOfConflict>
<checkTestClasspath>false</checkTestClasspath>
<ignoredResources>
<ignoredResource>META-INF/.*</ignoredResource>
</ignoredResources>
</configuration>
<executions>
<execution>
<!-- https://github.com/ning/maven-duplicate-finder-plugin/issues/12 -->
<phase>verify-never</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>analyze-only</id>
<phase>verify</phase>
<goals>
<goal>analyze-only</goal>
</goals>
<configuration>
<ignoreNonCompile>true</ignoreNonCompile>
<failOnWarning>true</failOnWarning>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<!--
This profile activates all site-related plugins. To activate
this profile run: "mvn -Dsite"
-->
<id>live-site</id>
<activation>
<property><name>site</name></property>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-site-plugin</artifactId>
<version since="11 Nov 2012">3.2</version>
<configuration>
<reportPlugins>
<plugin>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version since="7 Nov 2010">2.2</version>
<configuration>
<dependencyDetailsEnabled>false</dependencyDetailsEnabled>
<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
</configuration>
<reports>
<report>cim</report>
<report>dependencies</report>
<report>issue-tracking</report>
<report>license</report>
<report>mailing-list</report>
<report>plugins</report>
<report>project-team</report>
<report>scm</report>
<report>summary</report>
</reports>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>taglist-maven-plugin</artifactId>
<version since="15 Nov 2010">2.4</version>
<configuration>
<tagListOptions>
<tagClasses>
<tagClass>
<displayName>ToDo</displayName>
<tags>
<tag>
<matchString>@todo</matchString>
<matchType>exact</matchType>
</tag>
</tags>
</tagClass>
</tagClasses>
</tagListOptions>
</configuration>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version since="5 Jun 2011">2.8</version>
<configuration>
<failOnError>true</failOnError>
<windowtitle>
${project.name} ${project.version} API
</windowtitle>
<quiet>true</quiet>
<links>
<link>http://download.oracle.com/javaee/6/api/</link>
<link>http://hamcrest.org/JavaHamcrest/javadoc/1.3/</link>
<link>http://docs.mockito.googlecode.com/hg/latest/</link>
<link>http://docs.amazonwebservices.com/AWSJavaSDK/latest/javadoc/</link>
<link>http://jackson.codehaus.org/javadoc/bean-validation-api/1.0/</link>
<link>http://www.eclipse.org/aspectj/doc/next/runtime-api/</link>
</links>
<detectLinks>true</detectLinks>
<tags>
<!--
Here we instruct plugin to use custom tag
@link http://maven.apache.org/plugins/maven-javadoc-plugin/examples/tag-configuration.html
-->
<tag>
<name>todo</name>
<placement>a</placement>
<head>To do:</head>
</tag>
<tag>
<name>checkstyle</name>
<placement>a</placement>
<head>Suppressed Checkstyle violations:</head>
</tag>
</tags>
</configuration>
<reportSets>
<reportSet>
<id>html</id>
<reports>
<report>javadoc</report>
</reports>
<configuration>
<sourcepath>src/main/java</sourcepath>
</configuration>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version since="2 Oct 2011">2.5.1</version>
</plugin>
</reportPlugins>
</configuration>
<executions>
<execution>
<id>attach-descriptor</id>
<goals>
<goal>attach-descriptor</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<build>
<resources>
<!--
To enable filtering of resources
@link http://maven.apache.org/guides/getting-started/index.html#How_do_I_filter_resource_files
-->
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<testResources>
<testResource>
<directory>src/test/resources</directory>
<filtering>true</filtering>
</testResource>
</testResources>
<extensions>
<extension>
<groupId>org.kuali.maven.wagons</groupId>
<artifactId>maven-s3-wagon</artifactId>
<version since="20 Sep 2012">1.1.14</version>
</extension>
</extensions>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version since="2 Oct 2011">2.4.1</version>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version since="2 Oct 2011">2.7</version>
</plugin>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<version since="2 Oct 2011">2.3</version>
</plugin>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<version since="2 Oct 2011">2.3.1</version>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version since="2 Oct 2011">2.5</version>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version since="2 Dec 2011">1.7</version>
</plugin>
<plugin>
<artifactId>maven-site-plugin</artifactId>
<version since="11 Nov 2012">3.2</version>
<configuration>
<reportPlugins>
<!--
Section is intentionally empty. Full list of plugins
is configured in "CI" profile. We don't need all them
during development, that's why they are not here.
-->
</reportPlugins>
</configuration>
</plugin>
<plugin>
<!--
Starts unit tests, protocols their results and creates
a summary report. It is required to send testing protocol
to the STDOUT as well, not only to the file.
-->
<artifactId>maven-surefire-plugin</artifactId>
<version since="13 Dec 2011">2.11</version>
<configuration>
<argLine>-Dfile.encoding=UTF8</argLine>
<runOrder>random</runOrder>
<useFile>false</useFile>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version since="20 May 2012">2.4</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<optimize>true</optimize>
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>
<compilerArguments>
<Xlint/>
<Werror/>
<Xlint:-path/>
<!-- @see https://blogs.oracle.com/darcy/entry/bootclasspath_older_source -->
<Xlint:-options/>
<!-- @see http://netbeans.org/bugzilla/show_bug.cgi?format=multiple&id=208666 -->
<!-- this is to avoid a problem with ANTLR and JDK7 -->
<Xlint:-classfile/>
</compilerArguments>
<testExcludes>
<exclude>**/package-info.java</exclude>
</testExcludes>
</configuration>
</plugin>
<plugin>
<!--
This plugin will collect current build number
from Git and save it into Maven property "build.number".
-->
<groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
<version since="5 Aug 2012">1.1</version>
<configuration>
<buildNumberPropertyName>build.number</buildNumberPropertyName>
<timestampPropertyName>timestamp.number</timestampPropertyName>
<doCheck>false</doCheck>
<doUpdate>false</doUpdate>
<getRevisionOnlyOnce>true</getRevisionOnlyOnce>
<shortRevisionLength>8</shortRevisionLength>
</configuration>
</plugin>
<plugin>
<groupId>com.texry</groupId>
<artifactId>texry-maven-plugin</artifactId>
<version since="29 Oct 2012">0.2.1</version>
<configuration>
<closures>
<file>header.tex</file>
<file>uml2.tex</file>
</closures>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>com.texry</groupId>
<artifactId>texry-maven-plugin</artifactId>
<inherited>false</inherited>
<executions>
<execution>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<sources>
<file>packages.tex</file>
<file>classes-relay.tex</file>
<file>classes-hosts.tex</file>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<version since="27 May 2012">1.4</version>
<configuration>
<complianceLevel>1.6</complianceLevel>
<encoding>${project.build.sourceEncoding}</encoding>
<showWeaveInfo>false</showWeaveInfo>
<source>1.6</source>
<target>1.6</target>
<verbose>false</verbose>
<Xlint>warning</Xlint>
<argumentFileName>builddef-${project.name}.lst</argumentFileName>
<aspectLibraries>
<aspectLibrary>
<groupId>com.jcabi</groupId>
<artifactId>jcabi-aspects</artifactId>
</aspectLibrary>
</aspectLibraries>
</configuration>
<executions>
<execution>
<id>weave-classes</id>
<phase>process-classes</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>