OSDN Git Service

update JinParser to 2.101.4
[jindolf/Jindolf.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8" ?>
2
3 <!--
4     Maven3 POM definition file
5 -->
6
7 <project
8   xmlns="http://maven.apache.org/POM/4.0.0"
9   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
11   http://maven.apache.org/xsd/maven-4.0.0.xsd"
12 >
13     <modelVersion>4.0.0</modelVersion>
14     <!--parent/-->
15
16     <groupId>jp.sourceforge.jindolf</groupId>
17     <artifactId>jindolf</artifactId>
18
19     <version>3.302.5-SNAPSHOT</version>
20
21     <packaging>jar</packaging>
22     <name>Jindolf</name>
23
24     <description><!--
25 -->Jindolfプロジェクトは、CGIゲーム「人狼BBS」を快適にプレイするための<!--
26 -->専用クライアントを製作するために発足したオープンソースプロジェクトです。<!--
27  --></description>
28
29     <url>http://jindolf.osdn.jp/</url>
30     <inceptionYear>2008</inceptionYear>
31
32     <organization>
33         <name>Jindolf Partners</name>
34         <url>https://ja.osdn.net/projects/jindolf/devel/</url>
35     </organization>
36
37     <licenses>
38         <license>
39             <name>The MIT License</name>
40             <url>https://opensource.org/licenses/MIT</url>
41             <distribution>manual</distribution>
42         </license>
43     </licenses>
44
45     <developers>
46         <developer>
47             <id>olyutorskii</id>
48             <url>https://sites.google.com/site/olyutorskiipit/</url>
49             <organization>Jindolf Partners</organization>
50             <organizationUrl>https://ja.osdn.net/projects/jindolf/devel/</organizationUrl>
51             <roles>
52                 <role>Project Founder</role>
53                 <role>Java Developer</role>
54             </roles>
55         </developer>
56     </developers>
57
58     <contributors/>
59     <mailingLists/>
60
61     <prerequisites>
62         <maven>3.0.1</maven>
63     </prerequisites>
64
65     <modules/>
66
67     <scm>
68         <connection>scm:hg:http://hg.osdn.net/view/jindolf/Jindolf</connection>
69         <developerConnection>scm:hg:ssh://hg.osdn.net//hgroot/jindolf/Jindolf</developerConnection>
70         <url>https://osdn.net/projects/jindolf/scm/hg/Jindolf/</url>
71     </scm>
72
73     <issueManagement>
74         <system>OSDN.NET</system>
75         <url>https://ja.osdn.net/projects/jindolf/ticket/</url>
76     </issueManagement>
77
78     <ciManagement/>
79     <distributionManagement/>
80
81     <properties>
82         <maven.compiler.source>1.7</maven.compiler.source>
83         <maven.compiler.target>1.7</maven.compiler.target>
84
85         <maven.compiler.showDeprecation>true</maven.compiler.showDeprecation>
86         <maven.compiler.showWarnings>true</maven.compiler.showWarnings>
87
88         <maven.compiler.encoding>UTF-8</maven.compiler.encoding>
89         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
90         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
91
92         <site.locales>en</site.locales>
93         <javadoc.locale>en</javadoc.locale>
94         <findbugs.jvmArgs>-Duser.language=en</findbugs.jvmArgs>
95
96         <jacoco-plugin.version>0.7.9</jacoco-plugin.version>
97
98         <checkstyle-plugin.version>2.17</checkstyle-plugin.version>
99         <checkstyleruntime.version>6.19</checkstyleruntime.version>
100         <checkstyle.config.location>${project.basedir}/checkstyle.xml</checkstyle.config.location>
101         <checkstyle.suppressions.location>${project.basedir}/checkstyle-suppressions.xml</checkstyle.suppressions.location>
102         <checkstyle.enable.rss>false</checkstyle.enable.rss>
103
104         <pmd-plugin.version>3.7</pmd-plugin.version>
105
106         <findbugs-plugin.version>3.0.4</findbugs-plugin.version>
107         <findbugs.effort>Max</findbugs.effort>
108         <findbugs.threshold>Low</findbugs.threshold>
109         <!-- for Jenkins -->
110         <findbugs.xmlOutput>true</findbugs.xmlOutput>
111
112         <project.mainentry>jp.sfjp.jindolf.Jindolf</project.mainentry>
113         <project.splash>jp/sfjp/jindolf/resources/image/logo.png</project.splash>
114
115     </properties>
116
117     <dependencyManagement/>
118
119     <dependencies>
120
121         <dependency>
122             <groupId>junit</groupId>
123             <artifactId>junit</artifactId>
124             <version>4.12</version>
125             <scope>test</scope>
126         </dependency>
127
128         <dependency>
129             <groupId>jp.osdn.jindolf</groupId>
130             <artifactId>jinparser</artifactId>
131             <version>2.101.4</version>
132             <scope>compile</scope>
133         </dependency>
134
135         <dependency>
136             <groupId>jp.sourceforge.jovsonz</groupId>
137             <artifactId>jovsonz</artifactId>
138             <version>1.101.2</version>
139             <scope>compile</scope>
140         </dependency>
141
142     </dependencies>
143
144     <repositories/>
145     <pluginRepositories/>
146
147     <build>
148
149         <pluginManagement>
150
151             <plugins>
152
153                 <plugin>
154                     <groupId>org.apache.maven.plugins</groupId>
155                     <artifactId>maven-checkstyle-plugin</artifactId>
156                     <version>${checkstyle-plugin.version}</version>
157                     <dependencies>
158                         <dependency>
159                             <groupId>com.puppycrawl.tools</groupId>
160                             <artifactId>checkstyle</artifactId>
161                             <!--artifactId>checkstyle-backport-jre6</artifactId-->
162                             <version>${checkstyleruntime.version}</version>
163                         </dependency>
164                     </dependencies>
165                 </plugin>
166
167             </plugins>
168
169         </pluginManagement>
170
171         <plugins>
172
173
174             <!-- clean lifecycle -->
175
176             <plugin>
177                 <groupId>org.apache.maven.plugins</groupId>
178                 <artifactId>maven-clean-plugin</artifactId>
179                 <version>3.0.0</version>
180                 <configuration>
181                     <filesets>
182                         <fileset>
183                             <directory>${project.basedir}</directory>
184                             <includes>
185                                 <include>**/*~</include>
186                                 <include>**/*.swp</include>
187                                 <include>**/*.DS_Store</include>
188                                 <include>**/._*</include>
189                                 <include>**/__MACOSX</include>
190                                 <include>**/Thumbs.db</include>
191                                 <include>**/desktop.ini</include>
192                                 <include>**/core</include>
193                                 <include>**/hs_err_pid*</include>
194                             </includes>
195                         </fileset>
196                     </filesets>
197                 </configuration>
198             </plugin>
199
200
201             <!-- default lifecycle -->
202
203             <plugin>
204                 <groupId>org.apache.maven.plugins</groupId>
205                 <artifactId>maven-enforcer-plugin</artifactId>
206                 <version>1.4.1</version>
207                 <configuration>
208                     <rules>
209                         <requireMavenVersion>
210                             <version>[3.0.1,)</version>
211                         </requireMavenVersion>
212                         <requireJavaVersion>
213                             <version>[1.7,)</version>
214                         </requireJavaVersion>
215                     </rules>
216                 </configuration>
217             </plugin>
218
219             <plugin>
220                 <groupId>org.apache.maven.plugins</groupId>
221                 <artifactId>maven-resources-plugin</artifactId>
222                 <version>3.0.2</version>
223             </plugin>
224
225             <plugin>
226                 <groupId>org.apache.maven.plugins</groupId>
227                 <artifactId>maven-compiler-plugin</artifactId>
228                 <version>3.6.1</version>
229                 <configuration>
230                     <source>1.7</source>  <!-- for NetBeans IDE -->
231                     <target>1.7</target>
232                     <compilerArguments>
233                         <Xlint/>
234                     </compilerArguments>
235                     <showWarnings>true</showWarnings>
236                     <showDeprecation>true</showDeprecation>
237                 </configuration>
238             </plugin>
239
240             <plugin>
241                 <groupId>org.apache.maven.plugins</groupId>
242                 <artifactId>maven-surefire-plugin</artifactId>
243                 <version>2.19.1</version>
244                 <configuration>
245                     <enableAssertions>true</enableAssertions>
246                 </configuration>
247             </plugin>
248
249             <plugin>
250                 <groupId>org.jacoco</groupId>
251                 <artifactId>jacoco-maven-plugin</artifactId>
252                 <version>${jacoco-plugin.version}</version>
253                 <executions>
254                     <execution>
255                         <id>default-prepare-agent</id>
256                         <goals>
257                             <goal>prepare-agent</goal>
258                         </goals>
259                     </execution>
260                     <execution>
261                         <id>default-report</id>
262                         <phase>prepare-package</phase>
263                         <goals>
264                             <goal>report</goal>
265                         </goals>
266                     </execution>
267                     <execution>
268                         <id>default-check</id>
269                         <goals>
270                             <goal>check</goal>
271                         </goals>
272                         <configuration>
273                             <rules>
274                                 <rule implementation="org.jacoco.maven.RuleConfiguration">
275                                     <element>BUNDLE</element>
276                                     <limits>
277                                         <limit implementation="org.jacoco.report.check.Limit">
278                                             <counter>COMPLEXITY</counter>
279                                             <value>COVEREDRATIO</value>
280                                             <minimum>0.0</minimum>
281                                         </limit>
282                                     </limits>
283                                 </rule>
284                             </rules>
285                         </configuration>
286                     </execution>
287                 </executions>
288             </plugin>
289
290             <plugin>
291                 <groupId>org.apache.maven.plugins</groupId>
292                 <artifactId>maven-jar-plugin</artifactId>
293                 <version>3.0.2</version>
294                 <configuration>
295                     <archive>
296                         <manifest>
297                             <mainClass>${project.mainentry}</mainClass>
298                             <addDefaultImplementationEntries>
299                                 false
300                             </addDefaultImplementationEntries>
301                         </manifest>
302                         <manifestEntries>
303                             <SplashScreen-Image>${project.splash}</SplashScreen-Image>
304                             <Built-By>${project.organization.name}</Built-By>
305                         </manifestEntries>
306                     </archive>
307                 </configuration>
308             </plugin>
309
310             <plugin>
311                 <groupId>org.apache.maven.plugins</groupId>
312                 <artifactId>maven-shade-plugin</artifactId>
313                 <version>3.0.0</version>
314                 <executions>
315                     <execution>
316                         <phase>package</phase>
317                         <goals>
318                           <goal>shade</goal>
319                         </goals>
320                         <configuration>
321                             <createDependencyReducedPom>false</createDependencyReducedPom>
322                         </configuration>
323                     </execution>
324                 </executions>
325             </plugin>
326
327             <plugin>
328                 <groupId>org.apache.maven.plugins</groupId>
329                 <artifactId>maven-source-plugin</artifactId>
330                 <version>3.0.1</version>
331                 <configuration>
332                     <includePom>true</includePom>
333                     <archive>
334                         <manifestEntries>
335                             <Built-By>${project.organization.name}</Built-By>
336                         </manifestEntries>
337                     </archive>
338                 </configuration>
339                 <executions>
340                     <execution>
341                         <id>attach-sources</id>
342                         <phase>verify</phase>
343                         <goals>
344                           <goal>jar-no-fork</goal>
345                         </goals>
346                     </execution>
347                 </executions>
348             </plugin>
349
350             <plugin>
351                 <groupId>org.apache.maven.plugins</groupId>
352                 <artifactId>maven-install-plugin</artifactId>
353                 <version>2.5.2</version>
354             </plugin>
355
356             <plugin>
357                 <groupId>org.apache.maven.plugins</groupId>
358                 <artifactId>maven-deploy-plugin</artifactId>
359                 <version>2.8.2</version>
360             </plugin>
361
362
363             <!-- site lifecycle -->
364
365             <plugin>
366                 <groupId>org.apache.maven.plugins</groupId>
367                 <artifactId>maven-site-plugin</artifactId>
368                 <version>3.6</version>
369                 <configuration>
370                     <locales>${site.locales}</locales>
371                 </configuration>
372             </plugin>
373
374
375             <!-- goals without lifecycle -->
376
377             <plugin>
378                 <groupId>org.apache.maven.plugins</groupId>
379                 <artifactId>maven-assembly-plugin</artifactId>
380                 <version>3.0.0</version>
381                 <configuration>
382                     <descriptors>
383                         <descriptor>src/assembly/src.xml</descriptor>
384                     </descriptors>
385                 </configuration>
386             </plugin>
387
388             <plugin>
389                 <groupId>org.apache.maven.plugins</groupId>
390                 <artifactId>maven-checkstyle-plugin</artifactId>
391                 <version>${checkstyle-plugin.version}</version>
392             </plugin>
393
394         </plugins>
395
396         <resources>
397
398             <resource>
399                 <directory>src/main/resources</directory>
400                 <filtering>true</filtering>
401                 <includes>
402                     <include>**/version.properties</include>
403                 </includes>
404             </resource>
405
406             <resource>
407                 <directory>src/main/resources</directory>
408                 <includes>
409                     <include>**/*.txt</include>
410
411                     <include>**/*.properties</include>
412
413                     <include>**/*.xml</include>
414                     <include>**/*.xsd</include>
415                     <include>**/*.dtd</include>
416
417                     <include>**/*.html</include>
418                     <include>**/*.htm</include>
419                     <include>**/*.css</include>
420
421                     <include>**/*.png</include>
422                     <include>**/*.gif</include>
423                     <include>**/*.jpeg</include>
424                     <include>**/*.jpg</include>
425                 </includes>
426                 <excludes>
427                     <exclude>**/version.properties</exclude>
428
429                     <exclude>**/.DS_Store</exclude>
430                     <exclude>**/__MACOSX</exclude>
431                     <exclude>**/Thumbs.db</exclude>
432                     <exclude>**/thumbs.db</exclude>
433                     <exclude>**/Desktop.ini</exclude>
434                     <exclude>**/desktop.ini</exclude>
435                     <exclude>**/core</exclude>
436                 </excludes>
437             </resource>
438
439         </resources>
440
441     </build>
442
443     <reporting>
444
445         <plugins>
446
447             <plugin>
448                 <groupId>org.apache.maven.plugins</groupId>
449                 <artifactId>maven-project-info-reports-plugin</artifactId>
450                 <version>2.9</version>
451                 <configuration>
452                     <linkOnly>true</linkOnly>
453                     <offline>true</offline>
454                 </configuration>
455                 <reportSets>
456                     <reportSet>
457                         <reports>
458                             <report>index</report>
459                             <report>summary</report>
460                             <report>license</report>
461                             <report>dependency-info</report>
462                             <report>dependencies</report>
463                             <report>dependency-convergence</report>
464                             <report>plugins</report>
465                             <report>plugin-management</report>
466                             <report>project-team</report>
467                             <report>issue-tracking</report>
468                             <report>scm</report>
469 <!--
470                             <report>dependency-management</report>
471                             <report>distribution-management</report>
472                             <report>cim</report>
473                             <report>mailing-list</report>
474                             <report>modules</report>
475 -->
476                         </reports>
477                     </reportSet>
478                 </reportSets>
479             </plugin>
480
481             <plugin>
482                 <groupId>org.apache.maven.plugins</groupId>
483                 <artifactId>maven-javadoc-plugin</artifactId>
484                 <version>2.10.4</version>
485                 <configuration>
486                     <author>false</author>
487                     <notimestamp>true</notimestamp>
488                     <quiet>true</quiet>
489                     <show>protected</show>
490                     <locale>${javadoc.locale}</locale>
491                     <header>${project.name} ${project.version} API</header>
492                     <version>true</version>
493                 </configuration>
494                 <reportSets>
495                     <reportSet>
496                         <reports>
497                             <report>javadoc</report>
498                         </reports>
499                     </reportSet>
500                 </reportSets>
501             </plugin>
502
503             <plugin>
504                 <groupId>org.apache.maven.plugins</groupId>
505                 <artifactId>maven-jxr-plugin</artifactId>
506                 <version>2.5</version>
507             </plugin>
508
509             <plugin>
510                 <groupId>org.apache.maven.plugins</groupId>
511                 <artifactId>maven-surefire-report-plugin</artifactId>
512                 <version>2.19.1</version>
513             </plugin>
514
515             <plugin>
516                 <groupId>org.jacoco</groupId>
517                 <artifactId>jacoco-maven-plugin</artifactId>
518                 <version>${jacoco-plugin.version}</version>
519                 <reportSets>
520                     <reportSet>
521                         <reports>
522                             <report>report</report>
523                         </reports>
524                     </reportSet>
525                 </reportSets>
526             </plugin>
527
528             <plugin>
529                 <groupId>org.apache.maven.plugins</groupId>
530                 <artifactId>maven-checkstyle-plugin</artifactId>
531                 <version>${checkstyle-plugin.version}</version>
532                 <reportSets>
533                     <reportSet>
534                         <reports>
535                             <report>checkstyle</report>
536                         </reports>
537                     </reportSet>
538                 </reportSets>
539             </plugin>
540
541             <plugin>
542                 <groupId>org.apache.maven.plugins</groupId>
543                 <artifactId>maven-pmd-plugin</artifactId>
544                 <version>${pmd-plugin.version}</version>
545                 <configuration>
546                     <rulesets>
547                         <ruleset>${project.basedir}/pmdrules.xml</ruleset>
548                     </rulesets>
549                 </configuration>
550                 <reportSets>
551                     <reportSet>
552                         <reports>
553                             <report>pmd</report>
554                             <report>cpd</report>
555                         </reports>
556                     </reportSet>
557                 </reportSets>
558             </plugin>
559
560             <plugin>
561                 <groupId>org.codehaus.mojo</groupId>
562                 <artifactId>findbugs-maven-plugin</artifactId>
563                 <version>${findbugs-plugin.version}</version>
564             </plugin>
565
566         </plugins>
567
568     </reporting>
569
570     <profiles/>
571
572 </project>
573
574 <!-- EOF -->