Skip to content

Commit 48a83d2

Browse files
committed
Remove the versioned jar from repo
This was probably added to allow running warbler directly from the repository, but versioning the jar will bloat up the size of the repository with every commit, and it will usually be behind the actual source version. Removing here and we'll deal with fallout later. spec and integration targets should build jar first
1 parent e697a3f commit 48a83d2

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

Rakefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ RSpec::Core::RakeTask.new(:spec) do |t|
1717
t.rspec_opts = ['--color', "--format documentation"]
1818
end
1919

20+
task :spec => :jar
21+
2022
task :default => :spec
2123

2224
# use Mavenfile to define :jar task
@@ -36,7 +38,7 @@ task :jar do
3638
end
3739

3840
desc 'run some integration test'
39-
task :integration do
41+
task :integration => :jar do
4042
success = mvn.verify
4143
exit(1) unless success
4244
end

lib/warbler_jar.jar

-20.3 KB
Binary file not shown.

0 commit comments

Comments
 (0)