release v0.900201
[dbsrgits/DBIx-Class-Journal.git] / Makefile.PL
CommitLineData
a7652ab8 1use inc::Module::Install 0.89;
2use strict;
3use warnings;
4
5use 5.008001;
6
7# ****** DO NOT ADD OPTIONAL DEPENDENCIES. EVER. --mst ******
8
9name 'DBIx-Class-Journal';
10perl_version '5.008001';
11all_from 'lib/DBIx/Class/Journal.pm';
12
13
a4c5cf28 14test_requires 'Test::More' => '0.94';
15test_requires 'DBD::SQLite' => '1.29';
71e2d68c 16test_requires 'SQL::Translator' => '0.11003'; # we'll make this optional for release
a7652ab8 17
a4c5cf28 18requires 'DBIx::Class' => '0.08115';
19requires 'Class::C3::Componentised' => '1.0006';
a7652ab8 20
21tests_recursive ('t');
22
23resources 'license' => 'http://dev.perl.org/licenses/';
841bbca7 24resources 'repository' => 'http://github.com/dbsrgits/DBIx-Class-Journal';
a7652ab8 25
26WriteAll();
27