OSDN Git Service

modify CHANGELOG
[jindolf/JinCore.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>jincore</artifactId>
18
19     <version>1.206.10</version>
20
21     <packaging>jar</packaging>
22     <name>JinCore</name>
23
24     <description><!--
25 -->JinCoreライブラリは、Jindolf プロジェクトのコア共通部分を構成する<!--
26 -->Javaパッケージです。<!--
27  --></description>
28
29     <url>https://ja.osdn.net/projects/jindolf/devel/</url>
30     <inceptionYear>2009</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/JinCore</connection>
69         <developerConnection>scm:hg:ssh://hg.osdn.net//hgroot/jindolf/JinCore</developerConnection>
70         <url>https://osdn.net/projects/jindolf/scm/hg/JinCore/</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     </properties>
113
114     <dependencyManagement/>
115
116     <dependencies>
117
118         <dependency>
119             <groupId>junit</groupId>
120             <artifactId>junit</artifactId>
121             <version>4.12</version>
122             <scope>test</scope>
123         </dependency>
124
125     </dependencies>
126
127     <repositories/>
128     <pluginRepositories/>
129
130     <build>
131
132         <pluginManagement>
133
134             <plugins>
135
136                 <plugin>
137                     <groupId>org.apache.maven.plugins</groupId>
138                     <artifactId>maven-checkstyle-plugin</artifactId>
139                     <version>${checkstyle-plugin.version}</version>
140                     <dependencies>
141                         <dependency>
142                             <groupId>com.puppycrawl.tools</groupId>
143                             <artifactId>checkstyle</artifactId>
144                             <!--artifactId>checkstyle-backport-jre6</artifactId-->
145                             <version>${checkstyleruntime.version}</version>
146                         </dependency>
147                     </dependencies>
148                 </plugin>
149
150             </plugins>
151
152         </pluginManagement>
153
154         <plugins>
155
156
157             <!-- clean lifecycle -->
158
159             <plugin>
160                 <groupId>org.apache.maven.plugins</groupId>
161                 <artifactId>maven-clean-plugin</artifactId>
162                 <version>3.0.0</version>
163                 <configuration>
164                     <filesets>
165                         <fileset>
166                             <directory>${project.basedir}</directory>
167                             <includes>
168                                 <include>**/*~</include>
169                                 <include>**/*.swp</include>
170                                 <include>**/*.DS_Store</include>
171                                 <include>**/._*</include>
172                                 <include>**/__MACOSX</include>
173                                 <include>**/Thumbs.db</include>
174                                 <include>**/desktop.ini</include>
175                                 <include>**/core</include>
176                                 <include>**/hs_err_pid*</include>
177                             </includes>
178                         </fileset>
179                     </filesets>
180                 </configuration>
181             </plugin>
182
183
184             <!-- default lifecycle -->
185
186             <plugin>
187                 <groupId>org.apache.maven.plugins</groupId>
188                 <artifactId>maven-enforcer-plugin</artifactId>
189                 <version>1.4.1</version>
190                 <configuration>
191                     <rules>
192                         <requireMavenVersion>
193                             <version>[3.0.1,)</version>
194                         </requireMavenVersion>
195                         <requireJavaVersion>
196                             <version>[1.7,)</version>
197                         </requireJavaVersion>
198                     </rules>
199                 </configuration>
200             </plugin>
201
202             <plugin>
203                 <groupId>org.apache.maven.plugins</groupId>
204                 <artifactId>maven-resources-plugin</artifactId>
205                 <version>3.0.2</version>
206             </plugin>
207
208             <plugin>
209                 <groupId>org.apache.maven.plugins</groupId>
210                 <artifactId>maven-compiler-plugin</artifactId>
211                 <version>3.6.1</version>
212                 <configuration>
213                     <source>1.7</source>  <!-- for NetBeans IDE -->
214                     <target>1.7</target>
215                     <compilerArguments>
216                         <Xlint/>
217                     </compilerArguments>
218                     <showWarnings>true</showWarnings>
219                     <showDeprecation>true</showDeprecation>
220                 </configuration>
221             </plugin>
222
223             <plugin>
224                 <groupId>org.apache.maven.plugins</groupId>
225                 <artifactId>maven-surefire-plugin</artifactId>
226                 <version>2.19.1</version>
227                 <configuration>
228                     <enableAssertions>true</enableAssertions>
229                 </configuration>
230             </plugin>
231
232             <plugin>
233                 <groupId>org.jacoco</groupId>
234                 <artifactId>jacoco-maven-plugin</artifactId>
235                 <version>${jacoco-plugin.version}</version>
236                 <executions>
237                     <execution>
238                         <id>default-prepare-agent</id>
239                         <goals>
240                             <goal>prepare-agent</goal>
241                         </goals>
242                     </execution>
243                     <execution>
244                         <id>default-report</id>
245                         <phase>prepare-package</phase>
246                         <goals>
247                             <goal>report</goal>
248                         </goals>
249                     </execution>
250                     <execution>
251                         <id>default-check</id>
252                         <goals>
253                             <goal>check</goal>
254                         </goals>
255                         <configuration>
256                             <rules>
257                                 <rule implementation="org.jacoco.maven.RuleConfiguration">
258                                     <element>BUNDLE</element>
259                                     <limits>
260                                         <limit implementation="org.jacoco.report.check.Limit">
261                                             <counter>COMPLEXITY</counter>
262                                             <value>COVEREDRATIO</value>
263                                             <minimum>0.0</minimum>
264                                         </limit>
265                                     </limits>
266                                 </rule>
267                             </rules>
268                         </configuration>
269                     </execution>
270                 </executions>
271             </plugin>
272
273             <plugin>
274                 <groupId>org.apache.maven.plugins</groupId>
275                 <artifactId>maven-jar-plugin</artifactId>
276                 <version>3.0.2</version>
277                 <configuration>
278                     <archive>
279                         <manifest>
280                             <addDefaultImplementationEntries>
281                                 true
282                             </addDefaultImplementationEntries>
283                         </manifest>
284                         <manifestEntries>
285                             <Built-By>${project.organization.name}</Built-By>
286                         </manifestEntries>
287                     </archive>
288                 </configuration>
289             </plugin>
290
291             <plugin>
292                 <groupId>org.apache.maven.plugins</groupId>
293                 <artifactId>maven-source-plugin</artifactId>
294                 <version>3.0.1</version>
295                 <configuration>
296                     <includePom>true</includePom>
297                     <archive>
298                         <manifestEntries>
299                             <Built-By>${project.organization.name}</Built-By>
300                         </manifestEntries>
301                     </archive>
302                 </configuration>
303                 <executions>
304                     <execution>
305                         <id>attach-sources</id>
306                         <phase>verify</phase>
307                         <goals>
308                           <goal>jar-no-fork</goal>
309                         </goals>
310                     </execution>
311                 </executions>
312             </plugin>
313
314             <plugin>
315                 <groupId>org.apache.maven.plugins</groupId>
316                 <artifactId>maven-install-plugin</artifactId>
317                 <version>2.5.2</version>
318             </plugin>
319
320             <plugin>
321                 <groupId>org.apache.maven.plugins</groupId>
322                 <artifactId>maven-deploy-plugin</artifactId>
323                 <version>2.8.2</version>
324             </plugin>
325
326
327             <!-- site lifecycle -->
328
329             <plugin>
330                 <groupId>org.apache.maven.plugins</groupId>
331                 <artifactId>maven-site-plugin</artifactId>
332                 <version>3.6</version>
333                 <configuration>
334                     <locales>${site.locales}</locales>
335                 </configuration>
336             </plugin>
337
338
339             <!-- goals without lifecycle -->
340
341             <plugin>
342                 <groupId>org.apache.maven.plugins</groupId>
343                 <artifactId>maven-assembly-plugin</artifactId>
344                 <version>3.0.0</version>
345                 <configuration>
346                     <descriptors>
347                         <descriptor>src/assembly/src.xml</descriptor>
348                     </descriptors>
349                 </configuration>
350             </plugin>
351
352             <plugin>
353                 <groupId>org.apache.maven.plugins</groupId>
354                 <artifactId>maven-checkstyle-plugin</artifactId>
355                 <version>${checkstyle-plugin.version}</version>
356             </plugin>
357
358         </plugins>
359
360         <resources>
361
362             <resource>
363                 <directory>src/main/resources</directory>
364                 <filtering>true</filtering>
365                 <includes>
366                     <include>**/version.properties</include>
367                 </includes>
368             </resource>
369
370             <resource>
371                 <directory>src/main/resources</directory>
372                 <includes>
373                     <include>**/*.txt</include>
374
375                     <include>**/*.properties</include>
376
377                     <include>**/*.xml</include>
378                     <include>**/*.xsd</include>
379                     <include>**/*.dtd</include>
380
381                     <include>**/*.html</include>
382                     <include>**/*.htm</include>
383                     <include>**/*.css</include>
384
385                     <include>**/*.png</include>
386                     <include>**/*.gif</include>
387                     <include>**/*.jpeg</include>
388                     <include>**/*.jpg</include>
389                 </includes>
390                 <excludes>
391                     <exclude>**/version.properties</exclude>
392
393                     <exclude>**/.DS_Store</exclude>
394                     <exclude>**/__MACOSX</exclude>
395                     <exclude>**/Thumbs.db</exclude>
396                     <exclude>**/thumbs.db</exclude>
397                     <exclude>**/Desktop.ini</exclude>
398                     <exclude>**/desktop.ini</exclude>
399                     <exclude>**/core</exclude>
400                 </excludes>
401             </resource>
402
403         </resources>
404
405     </build>
406
407     <reporting>
408
409         <plugins>
410
411             <plugin>
412                 <groupId>org.apache.maven.plugins</groupId>
413                 <artifactId>maven-project-info-reports-plugin</artifactId>
414                 <version>2.9</version>
415                 <configuration>
416                     <linkOnly>true</linkOnly>
417                     <offline>true</offline>
418                 </configuration>
419                 <reportSets>
420                     <reportSet>
421                         <reports>
422                             <report>index</report>
423                             <report>summary</report>
424                             <report>license</report>
425                             <report>dependency-info</report>
426                             <report>dependencies</report>
427                             <report>dependency-convergence</report>
428                             <report>plugins</report>
429                             <report>plugin-management</report>
430                             <report>project-team</report>
431                             <report>issue-tracking</report>
432                             <report>scm</report>
433 <!--
434                             <report>dependency-management</report>
435                             <report>distribution-management</report>
436                             <report>cim</report>
437                             <report>mailing-list</report>
438                             <report>modules</report>
439 -->
440                         </reports>
441                     </reportSet>
442                 </reportSets>
443             </plugin>
444
445             <plugin>
446                 <groupId>org.apache.maven.plugins</groupId>
447                 <artifactId>maven-javadoc-plugin</artifactId>
448                 <version>2.10.4</version>
449                 <configuration>
450                     <author>false</author>
451                     <notimestamp>true</notimestamp>
452                     <quiet>true</quiet>
453                     <show>protected</show>
454                     <locale>${javadoc.locale}</locale>
455                     <header>${project.name} ${project.version} API</header>
456                     <version>true</version>
457                 </configuration>
458                 <reportSets>
459                     <reportSet>
460                         <reports>
461                             <report>javadoc</report>
462                         </reports>
463                     </reportSet>
464                 </reportSets>
465             </plugin>
466
467             <plugin>
468                 <groupId>org.apache.maven.plugins</groupId>
469                 <artifactId>maven-jxr-plugin</artifactId>
470                 <version>2.5</version>
471             </plugin>
472
473             <plugin>
474                 <groupId>org.apache.maven.plugins</groupId>
475                 <artifactId>maven-surefire-report-plugin</artifactId>
476                 <version>2.19.1</version>
477             </plugin>
478
479             <plugin>
480                 <groupId>org.jacoco</groupId>
481                 <artifactId>jacoco-maven-plugin</artifactId>
482                 <version>${jacoco-plugin.version}</version>
483                 <reportSets>
484                     <reportSet>
485                         <reports>
486                             <report>report</report>
487                         </reports>
488                     </reportSet>
489                 </reportSets>
490             </plugin>
491
492             <plugin>
493                 <groupId>org.apache.maven.plugins</groupId>
494                 <artifactId>maven-checkstyle-plugin</artifactId>
495                 <version>${checkstyle-plugin.version}</version>
496                 <reportSets>
497                     <reportSet>
498                         <reports>
499                             <report>checkstyle</report>
500                         </reports>
501                     </reportSet>
502                 </reportSets>
503             </plugin>
504
505             <plugin>
506                 <groupId>org.apache.maven.plugins</groupId>
507                 <artifactId>maven-pmd-plugin</artifactId>
508                 <version>${pmd-plugin.version}</version>
509                 <configuration>
510                     <rulesets>
511                         <ruleset>${project.basedir}/pmdrules.xml</ruleset>
512                     </rulesets>
513                 </configuration>
514                 <reportSets>
515                     <reportSet>
516                         <reports>
517                             <report>pmd</report>
518                             <report>cpd</report>
519                         </reports>
520                     </reportSet>
521                 </reportSets>
522             </plugin>
523
524             <plugin>
525                 <groupId>org.codehaus.mojo</groupId>
526                 <artifactId>findbugs-maven-plugin</artifactId>
527                 <version>${findbugs-plugin.version}</version>
528             </plugin>
529
530         </plugins>
531
532     </reporting>
533
534     <profiles/>
535
536 </project>
537
538 <!-- EOF -->