GateNLP / gate-core

The GATE Embedded core API and GATE Developer application
GNU Lesser General Public License v3.0
75 stars 29 forks source link

8.5.2 #145

Closed PiercarloSlavazza closed 3 years ago

PiercarloSlavazza commented 3 years ago

Maven URLs are now required to be HTTPS (instead of plain HTTP)

ianroberts commented 3 years ago

Thank you for your contribution, however we do not intend to make any further releases of the 8.5.x line. This same issue was fixed in gate-core 8.6.1, if for any reason you are unable to upgrade to 8.6.1 or later (9.0.1 is the current release) then you can configure earlier versions to use the HTTPS version of central via your .m2/settings.xml file

  <profiles>
    <profile>
      <id>https-central-repo</id>
      <pluginRepositories>
        <pluginRepository>
            <id>central-https-plugins</id>
            <name>Central repository (https)</name>
            <url>https://repo1.maven.org/maven2/</url>
            <layout>default</layout>
            <releases><enabled>true</enabled></releases>
            <snapshots><enabled>false</enabled></snapshots>
          </pluginRepository>
      </pluginRepositories>
      <repositories>
        <repository>
            <id>central-https</id>
            <name>Central repository (https)</name>
            <url>https://repo1.maven.org/maven2/</url>
            <layout>default</layout>
            <releases><enabled>true</enabled></releases>
            <snapshots><enabled>false</enabled></snapshots>
          </repository>
      </repositories>
    </profile>
  </profiles>

  <activeProfiles>
    <activeProfile>https-central-repo</activeProfile>
  </activeProfiles>