This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
task 'showdeps' do | |
raise 'Need to define ENV property DEP' unless ENV['DEP'] | |
Buildr.transitive(ENV['DEP']).each do |a| | |
puts a.to_spec | |
end | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT | |
TableName = s.name + '.' + t.name, | |
IndexName = ind.name, | |
ColumnName = col.name, | |
ind.type_desc, | |
ind.is_unique, | |
ind.has_filter, | |
ind.filter_definition, | |
ic.index_column_id, | |
ic.is_descending_key, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -v -u admin:admin --upload-file artifact-version.zip http://repo/repository/releases/group/artifact/version/artifact-version.zip |