pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 22 Nov 2021 15:58:31 +0100
changeset 244 cea2063fd0f9
parent 236 b157a20a6945
permissions -rw-r--r--
Rochade shall move the rock as well
     1 <?xml version="1.0" encoding="UTF-8"?>
     2 <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">
     3   <modelVersion>4.0.0</modelVersion>
     4   <groupId>org.apidesign.html</groupId>
     5   <artifactId>demo</artifactId>
     6   <version>1.0-SNAPSHOT</version>
     7   <packaging>pom</packaging>
     8   <name>Demo of HTML APIs</name>
     9   <parent>
    10     <groupId>net.java</groupId>
    11     <artifactId>jvnet-parent</artifactId>
    12     <version>3</version>
    13   </parent>  
    14   <properties>
    15       <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    16       <net.java.html.version>1.7.2</net.java.html.version>
    17       <jersey.version>2.13</jersey.version>
    18       <grizzly.version>2.3.16</grizzly.version>
    19       <bck2brwsr.version>0.53</bck2brwsr.version>
    20       <teavm.version>1.4.0</teavm.version>
    21       <license>COPYING</license>
    22   </properties>
    23   <modules>
    24     <module>chat</module>
    25     <module>chess</module>
    26     <module>spinningcube</module>
    27     <module>words</module>
    28   </modules>
    29   <licenses>
    30       <license>
    31           <name>MIT</name>
    32           <url>http://opensource.org/licenses/mit-license.php</url>
    33           <distribution>repo</distribution>
    34       </license>
    35   </licenses>
    36   <organization>
    37       <name>API Design</name>
    38       <url>http://apidesign.org</url>
    39   </organization>
    40   <scm>
    41       <connection>scm:hg:https://hg.java.net/hg/html~demo</connection>
    42       <developerConnection>scm:hg:https://hg.java.net/hg/html~demo</developerConnection>
    43       <url>https://hg.java.net/hg/html~demo</url>
    44       <tag>default</tag>
    45   </scm>
    46   <build>
    47       <plugins>
    48           <plugin>
    49               <groupId>org.apache.maven.plugins</groupId>
    50               <artifactId>maven-enforcer-plugin</artifactId>
    51               <version>1.3.1</version>
    52               <executions>
    53                   <execution>
    54                       <id>enforce-versions</id>
    55                       <goals>
    56                           <goal>enforce</goal>
    57                       </goals>
    58                       <configuration>
    59                           <rules>
    60                               <DependencyConvergence/>
    61                               <requireJavaVersion>
    62                                   <version>1.7</version>
    63                               </requireJavaVersion>
    64                           </rules>
    65                       </configuration>
    66                   </execution>
    67               </executions>              
    68           </plugin>
    69          <plugin>
    70               <inherited>false</inherited>
    71               <groupId>com.mycila.maven-license-plugin</groupId>
    72               <artifactId>maven-license-plugin</artifactId>
    73               <version>1.9.0</version>
    74               <executions>
    75                   <execution>
    76                       <id>blah</id>
    77                       <goals>
    78                           <goal>check</goal>
    79                       </goals>
    80                   </execution>
    81               </executions>
    82               <configuration>
    83                   <aggregate>true</aggregate>
    84                   <basedir>${basedir}</basedir>
    85                   <header>COPYING</header>
    86                   <strictCheck>true</strictCheck>
    87                   <excludes>
    88                        <exclude>*</exclude>
    89                        <exclude>.*/**</exclude>
    90                   </excludes>
    91               </configuration>
    92           </plugin>
    93       </plugins>
    94   </build>
    95 </project>