pom.xml
changeset 226 40acb3267711
parent 219 a07e84a4983c
child 227 fd26342cf23d
     1.1 --- a/pom.xml	Fri Oct 31 23:44:42 2014 +0100
     1.2 +++ b/pom.xml	Tue Nov 11 06:58:21 2014 +0100
     1.3 @@ -14,6 +14,8 @@
     1.4    <properties>
     1.5        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     1.6        <net.java.html.version>1.0</net.java.html.version>
     1.7 +      <jersey.version>2.13</jersey.version>
     1.8 +      <grizzly.version>2.3.16</grizzly.version>
     1.9        <nb.html.version>1.0</nb.html.version>
    1.10        <bck2brwsr.version>0.11</bck2brwsr.version>
    1.11        <teavm.version>0.2.1</teavm.version>
    1.12 @@ -43,21 +45,29 @@
    1.13        <url>https://hg.java.net/hg/html~demo</url>
    1.14        <tag>default</tag>
    1.15    </scm>
    1.16 -  <pluginRepositories>
    1.17 -      <pluginRepository>
    1.18 -          <id>mc-release</id>
    1.19 -          <name>Local Maven repository of releases</name>
    1.20 -          <url>http://mc-repo.googlecode.com/svn/maven2/releases</url>
    1.21 -          <snapshots>
    1.22 -              <enabled>false</enabled>
    1.23 -          </snapshots>
    1.24 -          <releases>
    1.25 -              <enabled>true</enabled>
    1.26 -          </releases>
    1.27 -      </pluginRepository>
    1.28 -  </pluginRepositories>
    1.29    <build>
    1.30        <plugins>
    1.31 +          <plugin>
    1.32 +              <groupId>org.apache.maven.plugins</groupId>
    1.33 +              <artifactId>maven-enforcer-plugin</artifactId>
    1.34 +              <version>1.3.1</version>
    1.35 +              <executions>
    1.36 +                  <execution>
    1.37 +                      <id>enforce-versions</id>
    1.38 +                      <goals>
    1.39 +                          <goal>enforce</goal>
    1.40 +                      </goals>
    1.41 +                      <configuration>
    1.42 +                          <rules>
    1.43 +                              <DependencyConvergence/>
    1.44 +                              <requireJavaVersion>
    1.45 +                                  <version>1.7</version>
    1.46 +                              </requireJavaVersion>
    1.47 +                          </rules>
    1.48 +                      </configuration>
    1.49 +                  </execution>
    1.50 +              </executions>              
    1.51 +          </plugin>
    1.52           <plugin>
    1.53                <inherited>false</inherited>
    1.54                <groupId>com.mycila.maven-license-plugin</groupId>