maven 3.6.0 (#33572)
This commit is contained in:
parent
1f8c7ab0d8
commit
a9fd5ddf92
4 changed files with 8 additions and 68 deletions
|
@ -1,9 +1,9 @@
|
|||
class Maven < Formula
|
||||
desc "Java-based project management"
|
||||
homepage "https://maven.apache.org/"
|
||||
url "https://www.apache.org/dyn/closer.cgi?path=maven/maven-3/3.5.4/binaries/apache-maven-3.5.4-bin.tar.gz"
|
||||
mirror "https://archive.apache.org/dist/maven/maven-3/3.5.4/binaries/apache-maven-3.5.4-bin.tar.gz"
|
||||
sha256 "ce50b1c91364cb77efe3776f756a6d92b76d9038b0a0782f7d53acf1e997a14d"
|
||||
url "https://www.apache.org/dyn/closer.cgi?path=maven/maven-3/3.6.0/binaries/apache-maven-3.6.0-bin.tar.gz"
|
||||
mirror "https://archive.apache.org/dist/maven/maven-3/3.6.0/binaries/apache-maven-3.6.0-bin.tar.gz"
|
||||
sha256 "6a1b346af36a1f1a491c1c1a141667c5de69b42e6611d3687df26868bc0f4637"
|
||||
|
||||
bottle :unneeded
|
||||
|
||||
|
|
|
@ -1,60 +0,0 @@
|
|||
class MavenAT30 < Formula
|
||||
desc "Java-based project management"
|
||||
homepage "https://maven.apache.org/"
|
||||
url "https://www.apache.org/dyn/closer.cgi?path=maven/maven-3/3.0.5/binaries/apache-maven-3.0.5-bin.tar.gz"
|
||||
mirror "https://archive.apache.org/dist/maven/maven-3/3.0.5/binaries/apache-maven-3.0.5-bin.tar.gz"
|
||||
sha256 "d98d766be9254222920c1d541efd466ae6502b82a39166c90d65ffd7ea357dd9"
|
||||
|
||||
bottle :unneeded
|
||||
|
||||
keg_only :versioned_formula
|
||||
|
||||
depends_on :java => "1.7+"
|
||||
|
||||
def install
|
||||
# Remove windows files
|
||||
rm_f Dir["bin/*.bat"]
|
||||
|
||||
# Fix the permissions on the global settings file.
|
||||
chmod 0644, "conf/settings.xml"
|
||||
|
||||
prefix.install_metafiles
|
||||
libexec.install Dir["*"]
|
||||
|
||||
# Leave conf file in libexec. The mvn symlink will be resolved and the conf
|
||||
# file will be found relative to it
|
||||
Pathname.glob("#{libexec}/bin/*") do |file|
|
||||
next if file.directory?
|
||||
basename = file.basename
|
||||
next if basename.to_s == "m2.conf"
|
||||
(bin/basename).write_env_script file, Language::Java.overridable_java_home_env
|
||||
end
|
||||
end
|
||||
|
||||
test do
|
||||
(testpath/"pom.xml").write <<~EOS
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="https://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.homebrew</groupId>
|
||||
<artifactId>maven-test</artifactId>
|
||||
<version>1.0.0-SNAPSHOT</version>
|
||||
<properties>
|
||||
<maven.compiler.source>1.8</maven.compiler.source>
|
||||
<maven.compiler.target>1.8</maven.compiler.target>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
</properties>
|
||||
</project>
|
||||
EOS
|
||||
(testpath/"src/main/java/org/homebrew/MavenTest.java").write <<~EOS
|
||||
package org.homebrew;
|
||||
public class MavenTest {
|
||||
public static void main(String[] args) {
|
||||
System.out.println("Testing Maven with Homebrew!");
|
||||
}
|
||||
}
|
||||
EOS
|
||||
system "#{bin}/mvn", "compile", "-Duser.home=#{testpath}"
|
||||
end
|
||||
end
|
|
@ -1,8 +1,9 @@
|
|||
class MavenAT31 < Formula
|
||||
class MavenAT35 < Formula
|
||||
desc "Java-based project management"
|
||||
homepage "https://maven.apache.org/"
|
||||
url "https://www.apache.org/dyn/closer.cgi?path=maven/maven-3/3.1.1/binaries/apache-maven-3.1.1-bin.tar.gz"
|
||||
sha256 "077ed466455991d5abb4748a1d022e2d2a54dc4d557c723ecbacdc857c61d51b"
|
||||
url "https://www.apache.org/dyn/closer.cgi?path=maven/maven-3/3.5.4/binaries/apache-maven-3.5.4-bin.tar.gz"
|
||||
mirror "https://archive.apache.org/dist/maven/maven-3/3.5.4/binaries/apache-maven-3.5.4-bin.tar.gz"
|
||||
sha256 "ce50b1c91364cb77efe3776f756a6d92b76d9038b0a0782f7d53acf1e997a14d"
|
||||
|
||||
bottle :unneeded
|
||||
|
||||
|
@ -12,12 +13,11 @@ class MavenAT31 < Formula
|
|||
|
||||
def install
|
||||
# Remove windows files
|
||||
rm_f Dir["bin/*.bat"]
|
||||
rm_f Dir["bin/*.cmd"]
|
||||
|
||||
# Fix the permissions on the global settings file.
|
||||
chmod 0644, "conf/settings.xml"
|
||||
|
||||
prefix.install_metafiles
|
||||
libexec.install Dir["*"]
|
||||
|
||||
# Leave conf file in libexec. The mvn symlink will be resolved and the conf
|
Loading…
Reference in a new issue