Sha256: 2c4a3a58296c16b7ab6af644512c06e31b3af1719f82f537f8fd9093c5d463ba
Contents?: true
Size: 535 Bytes
Versions: 7
Compression:
Stored size: 535 Bytes
Contents
# encoding: UTF-8 module Tetra # tetra ant class AntCommand < Tetra::BaseCommand parameter "[ANT OPTIONS] ...", "ant options", attribute_name: "dummy" # override parsing in order to pipe everything to mvn # rubocop:disable TrivialAccessors def parse(args) @options = args end def execute checking_exceptions do project = Tetra::Project.new(".") ensure_dry_running(true, project) do Tetra::AntRunner.new(project).ant(@options) end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems