forked from apache/ode
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Rakefile
907 lines (780 loc) · 42.3 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
gem "buildr", "~>1.5.3"
require "buildr"
require "buildr/xmlbeans.rb"
require "buildr/openjpa"
require "buildr/javacc"
require "buildr/jetty"
require "buildr/hibernate"
require File.join(File.dirname(__FILE__), 'repositories.rb')
require File.join(File.dirname(__FILE__), 'dependencies.rb')
Buildr::Hibernate::REQUIRES[:hibernate] = HIBERNATE,
#Buildr.settings.build['junit'] = "4.11"
#Buildr::JUnit.instance_eval { @dependencies = ["junit:junit:jar:#{version}", "org.hamcrest:hamcrest-core:jar:1.3"] + Buildr::JMock.dependencies}
Buildr::Hibernate::REQUIRES[:xdoclet] = Buildr.group("xdoclet", "xdoclet-xdoclet-module", "xdoclet-hibernate-module",
:under=>"xdoclet", :version=>"1.2.3") + ["xdoclet:xjavadoc:jar:1.1-j5"]
# XMLBeans addon must use the same version as we do.
Buildr::XMLBeans::REQUIRES.xmlbeans.version = artifact(XMLBEANS).version
Buildr::OpenJPA::REQUIRES=[ OPENJPA, COMMONS.lang, COMMONS.collections, JAVAX.transaction, JAVAX.persistence]
# dirty workaround for BUILDR-541/BUILDR-508
Java.classpath << Buildr::OpenJPA::REQUIRES
# Keep this structure to allow the build system to update version numbers.
VERSION_NUMBER = "1.3.8-SNAPSHOT"
repositories.release_to[:options] = {:digests => [:md5, :sha1, :sha512]}
# if SNAPSHOT version...
if VERSION_NUMBER =~ /SNAPSHOT/
# ... deploy to:
# Apache Development Snapshot Repository
repositories.release_to[:url] ||= 'https://repository.apache.org/content/repositories/snapshots'
else
# ... else deploy to:
# Apache Release Distribution Repository
repositories.release_to[:url] ||= 'https://repository.apache.org/service/local/staging/deploy/maven2'
# and make sure artifacts are signed.
require "buildr/gpg"
end
BUNDLE_VERSIONS = {
"ode.version" => VERSION_NUMBER,
"commons.collections.version" => artifact(COMMONS.collections).version,
"commons.httpclient.bundle.version" => "3.1_1",
"commons.lang.version" => artifact(COMMONS.lang).version,
"commons.pool.version" => artifact(COMMONS.pool).version,
"derby.version" => artifact(DERBY).version,
"geronimo.specs.version" => "1.1.1",
"servicemix.nmr.version" => "1.1.0-SNAPSHOT",
"servicemix.shared.version" => "2009.02-SNAPSHOT",
"servicemix.specs.version" => "1.4-SNAPSHOT",
}
BND_VERSION_POLICY = "[$(version;==;$(@)),$(version;+;$(@)))"
Release.tag_name = lambda { |version| "APACHE_ODE_#{version.upcase}" } if Release
desc "Apache ODE"
define "ode" do
project.version = VERSION_NUMBER
project.group = "org.apache.ode"
compile.options.source = "1.8"
compile.options.target = "1.8"
manifest["Implementation-Vendor"] = "Apache Software Foundation"
meta_inf << file("NOTICE")
desc "ODE Axis Integration Layer"
define "axis2" do
compile.with projects("bpel-api", "bpel-connector", "bpel-dao", "bpel-epr", "bpel-runtime",
"scheduler-simple", "bpel-schemas", "bpel-store", "utils", "agents"),
AXIOM, AXIS2_ALL, COMMONS.lang, COMMONS.collections, COMMONS.httpclient, COMMONS.lang,
DERBY, GERONIMO.kernel, GERONIMO.transaction, JAVAX.activation, JAVAX.servlet, JAVAX.stream,
JAVAX.transaction, JENCKS, WSDL4J, WS_COMMONS, XMLBEANS, AXIS2_MODULES.libs, SLF4J
test.exclude 'org.apache.ode.axis2.management.*'
test.with project("tools"), AXIOM, JAVAX.javamail, COMMONS.codec, COMMONS.httpclient, XERCES, WOODSTOX
package :jar
end
desc "ODE Axis2 Based Web Application"
define "axis2-war" do
libs = projects("axis2", "bpel-api", "bpel-compiler", "bpel-connector", "bpel-dao",
"bpel-epr", "bpel-obj", "bpel-ql", "bpel-runtime", "scheduler-simple",
"bpel-schemas", "bpel-store", "dao-hibernate", "jacob", "jca-ra", "jca-server",
"utils", "dao-jpa", "agents", "bpel-rest-extensions"),
AXIS2_ALL, ANNONGEN, BACKPORT, COMMONS.codec, COMMONS.collections, COMMONS.fileupload, COMMONS.io, COMMONS.httpclient, COMMONS.beanutils,
COMMONS.lang, COMMONS.pool, DERBY, DERBY_TOOLS, JAXEN, JAVAX.activation, JAVAX.ejb, JAVAX.javamail,
JAVAX.connector, JAVAX.jms, JAVAX.persistence, JAVAX.transaction, JAVAX.stream, JIBX,
GERONIMO.connector, GERONIMO.kernel, GERONIMO.transaction, LOG4J2, OPENJPA, SAXON, TRANQL,
WOODSTOX, WSDL4J, WS_COMMONS, XALAN, XERCES, XMLBEANS, SPRING,
AXIS2_MODULES.libs, H2::REQUIRES, SLF4J, ODE_WEB_CONSOLE, TUCKEY_URLREWRITE
package(:war).with(:libs=>libs).path("WEB-INF").tap do |web_inf|
web_inf.merge project("dao-jpa-ojpa-derby").package(:zip)
web_inf.merge project("dao-hibernate-db").package(:zip)
web_inf.include project("axis2").path_to("src/main/wsdl/*")
web_inf.include project("bpel-schemas").path_to("src/main/xsd/pmapi.xsd")
end
package(:war).path("WEB-INF/modules").include(artifacts(AXIS2_MODULES.mods))
#exlude old console that uses json.org, due to licensing issues
package(:war).exclude("css").exclude("images").exclude("js")
# package(:war).tap do |root|
# root.merge(artifact(AXIS2_WAR)).exclude("WEB-INF/*").exclude("META-INF/*")
# end
#specify version of web console in urlrewrite.xml
build do
mkdir_p project.path_to("target")
cp _("src/main/webapp/WEB-INF/urlrewrite.xml"), _(:target)
text = File.read(_(:target, "urlrewrite.xml"))
changed_text = text.gsub(/\$\{ode-console.version\}/, artifact(ODE_WEB_CONSOLE).version)
File.open(_(:target, "urlrewrite.xml"),'w') {|f| f.puts changed_text}
package(:war).path("WEB-INF").include(_(:target, "urlrewrite.xml"))
end
task("start"=>[package(:war), jetty.use]) do |task|
class << task ; attr_accessor :url, :path ; end
task.url = "http://localhost:8080/ode"
task.path = jetty.deploy(task.url, task.prerequisites.first)
jetty.teardown task("stop")
end
task("stop") do |task|
if url = task("start").url rescue nil
jetty.undeploy url
end
end
test.using :testng, :forkmode=>'perTest', :properties=>{ "log4j.configurationFile"=>"test-log4j2.xml", "test.ports" => ENV['TEST_PORTS'] } #, :java_args=>['-Xdebug', '-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=6001', '-Xmx2048m', '-XX:MaxPermSize=256m']
test.with [projects("tools"), libs, AXIS2_MODULES.mods, AXIOM, JAVAX.servlet, transitive(Buildr::Jetty::REQUIRES).reject { |a| a.group == 'org.slf4j' && a.id == 'slf4j-simple' }, HIBERNATE, DOM4J, H2::REQUIRES, SPRING_TEST, LOG4J2].uniq
webapp_dir = "#{test.compile.target}/webapp"
test.setup task(:prepare_webapp) do |task|
cp_r _("src/main/webapp"), test.compile.target.to_s
rm_rf Dir[_(webapp_dir) + "/**/.svn"]
cp_r _("src/test/webapp"), test.compile.target.to_s
rm_rf Dir[_(webapp_dir) + "/**/.svn"]
cp_r Dir[_("src/main/webapp/WEB-INF/classes/*")], test.compile.target.to_s
rm_rf Dir[_(webapp_dir) + "/**/.svn"]
cp Dir[project("axis2").path_to("src/main/wsdl/*")], "#{webapp_dir}/WEB-INF"
cp project("bpel-schemas").path_to("src/main/xsd/pmapi.xsd"), "#{webapp_dir}/WEB-INF"
rm_rf Dir[_(webapp_dir) + "/**/.svn"]
mkdir "#{webapp_dir}/WEB-INF/processes" unless File.exist?("#{webapp_dir}/WEB-INF/processes")
mkdir "#{webapp_dir}/WEB-INF/modules" unless File.exist?("#{webapp_dir}/WEB-INF/modules")
# move around some property files for test purposes
mv Dir["#{test.compile.target}/TestEndpointProperties/*_global_conf*.endpoint"], "#{webapp_dir}/WEB-INF/conf"
Dir["#{webapp_dir}/WEB-INF/conf.*"].each {|d| cp "#{webapp_dir}/WEB-INF/conf/global-config.endpoint",d}
artifacts(AXIS2_MODULES.mods).each(&:invoke)
cp AXIS2_MODULES.mods.map {|a| repositories.locate(a)} , "#{webapp_dir}/WEB-INF/modules"
end
test.setup unzip("#{webapp_dir}/WEB-INF"=>project("dao-jpa-ojpa-derby").package(:zip))
test.setup unzip("#{webapp_dir}/WEB-INF"=>project("dao-hibernate-db").package(:zip))
test.exclude('*') if ENV["notestng"]
NativeDB.prepare_configs test, _(".")
test.setup WSSecurity.prepare_secure_services_tests("#{test.resources.target}/TestRampartBasic/secured-services", "sample*.axis2", AXIS2_MODULES.mods)
test.setup WSSecurity.prepare_secure_services_tests("#{test.resources.target}/TestRampartPolicy/secured-services", "sample*-policy.xml", AXIS2_MODULES.mods)
test.setup WSSecurity.prepare_secure_processes_tests("#{test.resources.target}/TestRampartBasic/secured-processes", AXIS2_MODULES.mods)
test.setup WSSecurity.prepare_secure_processes_tests("#{test.resources.target}/TestRampartPolicy/secured-processes", AXIS2_MODULES.mods)
end
desc "ODE APIs"
define "bpel-api" do
compile.with projects("utils", "bpel-obj", "bpel-schemas"), WSDL4J, SLF4J
package :jar
end
desc "ODE JCA connector"
define "bpel-api-jca" do
compile.with project("bpel-api"), JAVAX.connector
package :jar
end
desc "ODE BPEL Compiler"
define "bpel-compiler" do
compile.with projects("bpel-api", "bpel-obj", "bpel-schemas", "utils"),
JAVAX.stream, JAXEN, SAXON, WSDL4J, XALAN, XERCES, COMMONS.collections, SLF4J
test.resources { filter(project("bpel-scripts").path_to("src/main/resources")).into(test.resources.target).run }
test.with SLF4J, LOG4J2
package :jar
end
desc "ODE JCA Connector Implementation"
define "bpel-connector" do
compile.with projects("bpel-api", "bpel-api-jca", "bpel-runtime", "jca-ra", "jca-server", "bpel-dao")
package :jar
end
desc "ODE DAO Interfaces"
define "bpel-dao" do
compile.with project("bpel-api")
package :jar
end
desc "ODE Interface Layers Common"
define "bpel-epr" do
compile.with projects("utils", "bpel-dao", "bpel-api"),
AXIOM, COMMONS.lang, COMMONS.beanutils, DERBY, JAVAX.connector, JAVAX.stream, JAVAX.transaction, GERONIMO.transaction, GERONIMO.connector, TRANQL, XMLBEANS, LOG4J2, H2::REQUIRES, SLF4J
test.with XERCES
package :jar
end
desc "ODE BPEL Object Model"
define "bpel-obj" do
compile.with project("utils"), SAXON, WSDL4J, COMMONS.collections
package :jar
end
desc "ODE BPEL Query Language"
define "bpel-ql" do
pkg_name = "org.apache.ode.ql.jcc"
jjtree = jjtree(_("src/main/jjtree"), :in_package=>pkg_name)
compile.from javacc(jjtree, :in_package=>pkg_name), jjtree
compile.with projects("bpel-api", "bpel-compiler", "bpel-obj", "jacob", "utils")
package :jar
end
desc "ODE Runtime Engine"
define "bpel-runtime" do
compile.with projects("bpel-api", "bpel-compiler", "bpel-dao", "bpel-epr", "bpel-obj", "bpel-schemas",
"bpel-store", "jacob", "jacob-ap", "utils", "agents"),
COMMONS.collections, COMMONS.httpclient, JAXEN, JAVAX.persistence, JAVAX.stream, SAXON, WSDL4J, XMLBEANS,
SPRING, SLF4J
test.with projects("scheduler-simple", "dao-jpa", "dao-hibernate", "bpel-epr"),
BACKPORT, COMMONS.pool, COMMONS.lang, COMMONS.io, DERBY, JAVAX.connector, JAVAX.transaction,
GERONIMO.transaction, GERONIMO.kernel, GERONIMO.connector, TRANQL, HSQLDB, H2::REQUIRES, JAVAX.ejb,
OPENJPA, XERCES, XALAN, LOG4J2, SLF4J,
DOM4J, HIBERNATE, H2::REQUIRES, SPRING_TEST,
"tranql:tranql-connector-derby-common:jar:1.1"
package :jar
end
desc "ODE Simple Scheduler"
define "scheduler-simple" do
compile.with projects("bpel-api", "utils"), COMMONS.collections, JAVAX.transaction, LOG4J2, SLF4J
test.compile.with HSQLDB, H2::REQUIRES, GERONIMO.kernel, GERONIMO.transaction
test.with HSQLDB, H2::REQUIRES, JAVAX.transaction, JAVAX.resource, JAVAX.connector, LOG4J2,
GERONIMO.kernel, GERONIMO.transaction, GERONIMO.connector, TRANQL, BACKPORT, JAVAX.ejb
package :jar
end
desc "ODE Schemas"
define "bpel-schemas" do
compile_xml_beans _("src/main/xsd/*.xsdconfig"), _("src/main/xsd")
package :jar
end
desc "ODE BPEL Test Script Files"
define "bpel-scripts" do
eclipse.natures = :java
package :jar
end
desc "ODE Process Store"
define "bpel-store" do
compile.with projects("bpel-api", "bpel-compiler", "bpel-dao", "bpel-obj", "bpel-schemas", "bpel-epr",
"dao-hibernate", "dao-jpa", "utils"),
JAVAX.persistence, JAVAX.stream, JAVAX.transaction, HIBERNATE, HSQLDB, H2::REQUIRES, XMLBEANS, XERCES, WSDL4J, OPENJPA, SPRING, SLF4J
compile { open_jpa_enhance }
resources hibernate_doclet(:package=>"org.apache.ode.store.hib", :excludedtags=>"@version,@author,@todo")
task "hbm-replace-namespace" do |task|
Dir["#{_("target/classes/org/apache/ode/store/hib")}/*.hbm.xml"].each do |f|
file_content = File.read(f)
file_content.gsub!("http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd","http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd")
File.open(f,'w') {|wf| wf << file_content}
end
end
task "compile" => ["hbm-replace-namespace"]
test.with COMMONS.collections, COMMONS.lang, JAVAX.connector, JAVAX.transaction, DOM4J, LOG4J2,
XERCES, XALAN, JAXEN, SAXON, OPENJPA, GERONIMO.transaction, SLF4J, SPRING_TEST, DERBY,
GERONIMO.transaction, GERONIMO.kernel, GERONIMO.connector, JAVAX.connector, JAVAX.ejb, H2::REQUIRES
package :jar
end
desc "ODE BPEL Tests"
define "bpel-test" do
compile.with projects("bpel-api", "bpel-compiler", "bpel-dao", "bpel-runtime",
"bpel-store", "utils", "bpel-epr", "dao-hibernate", "agents", "scheduler-simple", "bpel-obj"),
DERBY, JUnit.dependencies, JAVAX.persistence, OPENJPA, WSDL4J, COMMONS.httpclient, COMMONS.io,
GERONIMO.transaction, GERONIMO.kernel, GERONIMO.connector, JAVAX.connector, JAVAX.ejb, JAVAX.transaction, TRANQL, "tranql:tranql-connector-derby-common:jar:1.1",
SPRING_TEST, COMMONS.codec, SLF4J, LOG4J2
test.with projects("bpel-obj", "jacob", "bpel-schemas",
"bpel-scripts", "scheduler-simple", "bpel-rest-extensions"),
COMMONS.collections, COMMONS.lang, DERBY, JAVAX.connector,
JAVAX.stream, JAVAX.transaction, JAXEN, HSQLDB, H2::REQUIRES, LOG4J2, SAXON, XERCES, XMLBEANS, XALAN, GERONIMO.transaction, SPRING, HIBERNATE, SLF4J, DOM4J
package :jar
end
desc "ODE Hibernate DAO Implementation"
define "dao-hibernate" do
compile.with projects("bpel-api", "bpel-dao", "bpel-ql", "utils"),
COMMONS.lang, JAVAX.transaction, HIBERNATE, DOM4J, SLF4J, LOG4J2
resources hibernate_doclet(:package=>"org.apache.ode.daohib.bpel.hobj", :excludedtags=>"@version,@author,@todo")
# doclet does not support not-found="ignore"
task "hbm-hack" do |task|
process_instance_hbm_file = project.path_to("target/classes/org/apache/ode/daohib/bpel/hobj/HProcessInstance.hbm.xml")
process_instance_hbm = File.read(process_instance_hbm_file)
if !process_instance_hbm.include? "not-found=\"ignore\""
process_instance_hbm.insert(process_instance_hbm.index("class=\"org.apache.ode.daohib.bpel.hobj.HProcess\"") - 1, "not-found=\"ignore\" ")
File.open(process_instance_hbm_file, "w") { |f| f << process_instance_hbm }
end
end
task "hbm-replace-namespace" do |task|
Dir["#{_("target/classes/org/apache/ode/daohib/bpel/hobj")}/*.hbm.xml"].each do |f|
file_content = File.read(f)
file_content.gsub!("http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd","http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd")
File.open(f,'w') {|wf| wf << file_content}
end
end
task "compile" => ["hbm-hack", "hbm-replace-namespace"]
test.with project("bpel-epr"), BACKPORT, COMMONS.collections, COMMONS.lang, DERBY, COMMONS.pool, COMMONS.dbcp,
GERONIMO.transaction, GERONIMO.kernel, GERONIMO.connector, JAVAX.connector, JAVAX.ejb, SPRING, SPRING_TEST
package :jar
end
desc "ODE Hibernate Compatible Databases"
define "dao-hibernate-db" do
predefined_for = lambda { |name| _("src/main/sql/simplesched-#{name}.sql") }
properties_for = lambda { |name| _("src/main/sql/ode.#{name}.properties") }
dao_hibernate = project("dao-hibernate").compile.target
bpel_store = project("bpel-store").compile.target
hibernate_requires[:xdoclet] = Buildr.group("xdoclet", "xdoclet-xdoclet-module", "xdoclet-hibernate-module",
:under=>"xdoclet", :version=>"1.2.3") + ["xdoclet:xjavadoc:jar:1.1-j5"] + projects("dao-hibernate")
export = lambda do |properties, source, target|
file(target=>[properties, source]) do |task|
mkpath File.dirname(target), :verbose=>false
hibernate_schemaexport target do |task, ant|
ant.schemaexport(:properties=>properties.to_s, :quiet=>"yes", :text=>"yes", :delimiter=>";",
:drop=>"no", :create=>"yes", :output=>target) do
ant.fileset(:dir=>source.to_s) {
ant.include :name=>"**/*.hbm.xml"
ant.exclude :name=>"**/HMessageExchangeProperty.hbm.xml"}
end
end
end
end
mysql_sql = lambda do |src_file,dest_file,engineType|
File.open(project.path_to(dest_file).to_s,"a") do |w|
File.open(project.path_to(src_file).to_s,"r") do |f|
isCT="no"
f.each_line do |line|
if line.index(/[ ]*create[ ]+table/i) && line.index(";") then
w << line.insert(line.index(";"),engineType)
elsif line.index(/[ ]*create[ ]+table/i) && !line.index(";") then
isCT="yes"
w << line
elsif isCT=="yes" && line.index(";") then
isCT="no"
w << line.insert(line.index(";"),engineType)
else
w << line
end
end
end
end
end
license_sql = _("src/main/sql/license-header.sql")
common_sql = _("src/main/sql/common.sql")
index_sql = _("src/main/sql/index.sql")
%w{ derby mysql hsql postgres sqlserver oracle h2}.each do |db|
partial_runtime = export[ properties_for[db], dao_hibernate, _("target/partial.runtime.#{db}.sql") ]
partial_store = export[ properties_for[db], bpel_store, _("target/partial.store.#{db}.sql") ]
build concat(_("target/#{db}.sql")=>[ license_sql, common_sql, predefined_for[db], partial_store, partial_runtime, index_sql])
end
build do
mysql_sql["target/mysql.sql","target/mysql5.sql"," TYPE=INNODB"]
mysql_sql["target/mysql.sql","target/mysql55.sql"," ENGINE=INNODB"]
end
derby_sql = _("target/derby.sql")
derby_db = Derby.create(_("target/derby-hibdb")=>derby_sql)
build derby_db
h2_sql = _("target/h2.sql")
h2_db = H2.create("ode-hib-h2", _("target/h2-hibdb")=>h2_sql)
build h2_db
NativeDB.create_dbs self, _("."), :hib
package(:zip).include(derby_db, h2_db)
end
desc "ODE OpenJPA DAO Implementation"
define "dao-jpa" do
compile.with projects("bpel-api", "bpel-dao", "utils"),
COMMONS.collections, JAVAX.connector, JAVAX.persistence, JAVAX.transaction,
OPENJPA, XERCES, SLF4J
compile { open_jpa_enhance }
package :jar
end
desc "ODE OpenJPA Derby Database"
define "dao-jpa-ojpa-derby" do
mysql_sql = lambda do |src_file,dest_file,engineType|
File.open(project.path_to(dest_file).to_s,"a") do |w|
File.open(project.path_to(src_file).to_s,"r") do |f|
isCT="no"
f.each_line do |line|
if line.index(/[ ]*create[ ]+table/i) && line.index(";") then
w << line.insert(line.index(";"),engineType)
elsif line.index(/[ ]*create[ ]+table/i) && !line.index(";") then
isCT="yes"
w << line
elsif isCT=="yes" && line.index(";") then
isCT="no"
w << line.insert(line.index(";"),engineType)
else
w << line
end
end
end
end
end
%w{ derby mysql oracle postgres h2 sqlserver}.each do |db|
db_xml = _("src/main/descriptors/persistence.#{db}.xml")
scheduler_sql = _("src/main/scripts/simplesched-#{db}.sql")
common_sql = _("src/main/scripts/common.sql")
partial_sql = file("target/partial.#{db}.sql"=>db_xml) do |task|
mkpath _("target"), :verbose=>false
Buildr::OpenJPA.mapping_tool :properties=>db_xml, :action=>"build", :sql=>task.name,
:classpath=>projects("bpel-store", "dao-jpa", "bpel-api", "bpel-dao", "utils" )
end
sql = concat(_("target/#{db}.sql")=>[_("src/main/scripts/license-header.sql"), common_sql, partial_sql, scheduler_sql])
build sql
end
build do
mysql_sql["target/mysql.sql","target/mysql5.sql"," TYPE=INNODB"]
mysql_sql["target/mysql.sql","target/mysql55.sql"," ENGINE=INNODB"]
end
derby_db = Derby.create(_("target/derby-jpadb")=>_("target/derby.sql"))
h2_db = H2.create("ode-jpa-h2", _("target/h2-jpadb")=>_("target/h2.sql"))
test.with projects("bpel-api", "bpel-dao", "bpel-obj", "bpel-epr", "dao-jpa", "utils"),
BACKPORT, COMMONS.collections, COMMONS.lang, GERONIMO.transaction,
GERONIMO.kernel, GERONIMO.connector, HSQLDB, H2::REQUIRES, JAVAX.connector, JAVAX.ejb, JAVAX.persistence,
JAVAX.transaction, LOG4J2, OPENJPA, XERCES, WSDL4J, SLF4J
build derby_db
build h2_db
NativeDB.create_dbs self, _("."), :jpa
package(:zip).include(derby_db).include(h2_db)
end
desc "ODE JAva Concurrent OBjects"
define "jacob" do
compile.with projects("utils", "jacob-ap"), SLF4J
package :jar
end
desc "ODE Jacob APR Code Generation"
define "jacob-ap" do
package :jar
end
desc "OpenTOSCA BPEL REST Extensions"
define "bpel-rest-extensions" do
compile.with projects("bpel-api", "bpel-obj", "bpel-runtime", "utils"), COMMONS.codec, COMMONS.httpclient, SLF4J, LOG4J2
package :jar
end
# desc "ODE JBI Integration Layer"
# define "jbi" do
# compile.with projects("bpel-api", "bpel-connector", "bpel-dao", "bpel-epr", "bpel-obj",
# "bpel-runtime", "scheduler-simple", "bpel-schemas", "bpel-store", "utils", "agents"),
# AXIOM, COMMONS.pool, JAVAX.transaction, GERONIMO.transaction, JBI, LOG4J2, WSDL4J, XERCES, SLF4J
#
# package(:jar)
# package(:jbi).tap do |jbi|
# libs = artifacts(package(:jar),
# projects("bpel-api", "bpel-api-jca", "bpel-compiler", "bpel-connector", "bpel-dao",
# "bpel-epr", "jca-ra", "jca-server", "bpel-obj", "bpel-ql", "bpel-runtime",
# "scheduler-simple", "bpel-schemas", "bpel-store", "dao-hibernate", "dao-jpa",
# "jacob", "jacob-ap", "utils", "agents"),
# ANT, AXIOM, BACKPORT, COMMONS.codec, COMMONS.collections, COMMONS.dbcp, COMMONS.lang, COMMONS.pool,
# COMMONS.primitives, DERBY, GERONIMO.connector, GERONIMO.transaction, JAXEN, JAVAX.connector,
# JAVAX.ejb, JAVAX.jms, JAVAX.persistence, JAVAX.stream, JAVAX.transaction, LOG4J2, OPENJPA,
# SAXON, TRANQL, XALAN, XERCES, XMLBEANS, WSDL4J)
#
# jbi.component :type=>:service_engine, :name=>"OdeBpelEngine", :description=>self.comment
# jbi.component :class_name=>"org.apache.ode.jbi.OdeComponent", :libs=>libs
# jbi.bootstrap :class_name=>"org.apache.ode.jbi.OdeBootstrap", :libs=>libs
# jbi.merge project("dao-hibernate-db").package(:zip)
# jbi.merge project("dao-jpa-ojpa-derby").package(:zip)
# jbi.include path_to("src/main/jbi/ode-jbi.properties")
# end
#
# test.using :properties=>{ "java.naming.factory.initial" => "org.apache.xbean.spring.jndi.SpringInitialContextFactory"}, :java_args=>ENV['TEST_JVM_ARGS']
# test.with projects("dao-jpa", "dao-hibernate", "bpel-compiler", "bpel-api-jca", "jca-ra",
# "jca-server", "jacob"),
# BACKPORT, COMMONS.lang, COMMONS.io, COMMONS.collections, DERBY, GERONIMO.connector, GERONIMO.kernel,
# GERONIMO.transaction, JAVAX.connector, JAVAX.ejb, JAVAX.persistence, JAVAX.stream,
# JAVAX.transaction, JAXEN, JBI, OPENJPA, SAXON, SERVICEMIX, SPRING, TRANQL,
# XALAN, XBEAN, XMLBEANS, SLF4J, LOG4J2, DOM4J, HIBERNATE
# test.exclude '*TestBase', 'org.apache.ode.jbi.OdeJbiComponentLifeCycleTest', 'org.apache.ode.jbi.ReplayerJbiTest'
# test.setup unzip(_("target/test/smx/ode")=>project("dao-jpa-ojpa-derby").package(:zip))
# test.setup unzip(_("target/test/smx/ode")=>project("dao-hibernate-db").package(:zip))
# test.setup task(:prepare_jbi_tests) do |task|
# cp _("src/test/jbi/ode-jbi.properties"), _("target/test/smx/ode")
# cp _("src/main/jbi/hibernate.properties"), _("target/test/smx/ode")
# rm_rf Dir["target/test/resources"]
# cp_r _("src/test/resources"), _("target/test/resources")
# end
# end
#
# desc "ODE Commmands for Karaf"
# define "jbi-karaf-commands" do
# compile.with projects("bpel-schemas", "jbi"), JBI, KARAF, XMLBEANS, SLF4J
# libs = artifacts(projects("bpel-schemas", "jbi"), JBI, KARAF, XMLBEANS, )
# package(:bundle).tap do |bnd|
# bnd.classpath = [_("target/classes"), libs].flatten
# BUNDLE_VERSIONS.each {|key, value| bnd[key] = value }
# bnd['Bundle-Name'] = "Apache ODE :: Commands"
# bnd['Bundle-Version'] = VERSION_NUMBER
# bnd['Require-Bundle'] = "org.apache.ode.ode-jbi-bundle;bundle-version=#{osgi_version_for(VERSION_NUMBER)}"
# bnd['Import-Package'] = 'org.apache.karaf.shell.console,*'
# bnd['Private-Package'] = "org.apache.ode.karaf.commands;version=#{VERSION_NUMBER}"
# bnd['Include-Resource'] = _('src/main/resources')
# bnd['-versionpolicy'] = BND_VERSION_POLICY
# end
# end
#
# desc "ODE Examples for Karaf"
# define "jbi-karaf-examples",
# :group => "org.apache.ode.examples",
# :base_dir => "distro/src/examples-jbi/maven2" do
#
# define "helloworld2-osgi" do
# package(:bundle, :id => "helloworld-bundle").tap do |bnd|
# bnd.classpath = [KARAF, project("ode:jbi-bundle")]
# bnd['Bundle-Name'] = "Apache ODE :: Hello World Example"
# bnd['Bundle-SymbolicName'] = "org.apache.ode.examples-helloworld2-bundle"
# bnd['Bundle-Version'] = VERSION_NUMBER
# bnd['Require-Bundle'] = "org.apache.ode.ode-jbi-bundle;bundle-version=#{osgi_version_for(VERSION_NUMBER)}"
# bnd['Import-Package'] = "org.apache.servicemix.cxfbc,org.apache.servicemix.common.osgi"
# bnd['Export-Package'] = ""
# bnd['-exportcontents'] = ""
# bnd['Include-Resource'] = _('src/main/resources')
# bnd['-versionpolicy'] = BND_VERSION_POLICY
# end
# # we package sources and javadocs separately to give them a custom id
# package(:sources, :id => "helloworld-bundle")
#
# # This project does not contain java classes, hence there are no javadocs.
# # But since Nexus will complain about a missing javadoc artifact, we make sure that an empty one is created.
# package(:javadoc, :id => "helloworld-bundle").enhance { mkdir_p _("target/doc") }
# end
#
# define "ping-pong-osgi" do
# compile
# package(:bundle, :id => "ping-pong-bundle").tap do |bnd|
# bnd.classpath = [_("target/classes"), KARAF, project("ode:jbi-bundle")].flatten
# bnd['Bundle-Name'] = "Apache ODE :: Ping-Pong Example"
# bnd['Bundle-SymbolicName'] = "org.apache.ode.examples-ping-pong-bundle"
# bnd['Bundle-Version'] = VERSION_NUMBER
# bnd['Require-Bundle'] = "org.apache.ode.ode-jbi-bundle;bundle-version=#{osgi_version_for(VERSION_NUMBER)}"
# bnd['Import-Package'] = "org.apache.servicemix.cxfbc,org.apache.servicemix.common.osgi"
# bnd['Export-Package'] = "org.apache.ode.ping"
# bnd['Include-Resource'] = _('src/main/resources')
# bnd['-versionpolicy'] = BND_VERSION_POLICY
# end
#
# # we package sources and javadocs separately to give them a custom id
# package(:sources, :id => "ping-pong-bundle")
# package(:javadoc, :id => "ping-pong-bundle")
# end
# end
#
# define "jbi-karaf-pmapi-httpbinding" do
# package(:bundle).tap do |bnd|
# bnd.classpath = [KARAF, project("ode:jbi-bundle")]
# bnd['Bundle-Name'] = "Apache ODE :: PMAPI HTTP Binding"
# bnd['Bundle-SymbolicName'] = "org.apache.ode-pmapi-httpbinding"
# bnd['Bundle-Version'] = VERSION_NUMBER
# bnd['Require-Bundle'] = "org.apache.ode.ode-jbi-bundle;bundle-version=#{osgi_version_for(VERSION_NUMBER)}"
# bnd['Import-Package'] = "org.apache.servicemix.cxfbc,org.apache.servicemix.common.osgi"
# bnd['-exportcontents'] = ""
# bnd['Include-Resource'] = _('src/main/resources')
# end
# end
#
# desc "ODE JBI Packaging for Karaf"
# define "jbi-karaf" do
# resources.filter.using(BUNDLE_VERSIONS)
# package :jar
# # Generate features.xml
# def package_as_feature(file_name)
# file file_name => [_("src/main/resources/features.xml")] do
# filter(_("src/main/resources")).include("features.xml").into(_("target")).using(BUNDLE_VERSIONS).run
# mv _("target/features.xml"), file_name
# end
# end
# def package_as_feature_spec(spec)
# spec.merge({ :type=>:xml, :classifier=>'features' })
# end
# package(:feature)
# end
#
# desc "ODE JBI Bundle"
# define "jbi-bundle" do
# ode_libs = artifacts(projects("bpel-api", "bpel-api-jca", "bpel-compiler", "bpel-connector", "bpel-dao",
# "bpel-epr", "jca-ra", "jca-server", "bpel-obj", "bpel-ql", "bpel-runtime",
# "scheduler-simple", "bpel-schemas", "bpel-store", "dao-hibernate", "dao-jpa",
# "jacob", "jacob-ap", "utils", "agents"))
# libs = artifacts(ANT, AXIOM, BACKPORT, COMMONS.codec, COMMONS.collections, COMMONS.dbcp, COMMONS.lang, COMMONS.pool,
# COMMONS.primitives, COMMONS.io, DERBY, GERONIMO.connector, GERONIMO.transaction, JAXEN, JAVAX.connector,
# JAVAX.ejb, JAVAX.jms, JAVAX.persistence, JAVAX.stream, JAVAX.transaction, LOG4J2, OPENJPA,
# SAXON, TRANQL, XALAN, XERCES, XMLBEANS, WSDL4J, KARAF)
# compile.with projects("bpel-schemas", "jbi", "bpel-api"), JBI, libs, KARAF, SPRING, SPRING_OSGI
#
# package(:bundle).tap do |bnd|
# # inline dao zip files
# zips = artifacts(project("dao-hibernate-db").package(:zip), project("dao-jpa-ojpa-derby").package(:zip))
# inlines = zips.map{|item| "@" + item.to_s}
#
# # embed jars
# bnd_libs = ode_libs + artifacts(AXIOM, BACKPORT, GERONIMO.connector, JAXEN,
# JAVAX.connector, JAVAX.persistence, JAVAX.ejb,
# OPENJPA, SAXON, TRANQL,
# XALAN, XERCES, XMLBEANS, WSDL4J)
# includes = bnd_libs.map{|item| File.basename(item.to_s)}
# bnd["includes"] = includes.join(', ')
#
# # embedd *.xsd, *.xml, xmlbeans* from ode libs
# embedres = ode_libs.map {|pkg| ['**.xsd', '**.xml', 'schemaorg_apache_xmlbeans/**'].map {|x| '@' + pkg.to_s + '!/' + x}}.join(', ')
# bnd['Export-Package'] = "org.apache.ode*;version=#{VERSION_NUMBER};-split-package:=merge-first"
# bnd['Import-Package'] = '!org.apache.axis2.client*, !org.apache.ode*, javax.jbi*;version="1.0", javax.transaction*;version="[1.1,1.2)", javax.xml.stream;version="[1.0,2)", org.apache.axiom*;resolution:=optional, org.apache.axis2*;resolution:=optional, org.apache.commons.beanutils;version="[1.8,2)", org.apache.commons.collections*;version="[3.2,4)", org.apache.commons.httpclient*;resolution:=optional, org.apache.commons.io;version="[1.4,2)", org.apache.commons.lang;version="[2.4,3)", org.apache.commons.logging*;version="[1.1,1.2)", org.apache.derby.jdbc;resolution:=optional, org.apache.geronimo.transaction.manager;version="[2,3)", org.apache.openjpa.jdbc.kernel;version="1.2.1", org.springframework.osgi.service.exporter.support, org.osgi.service.cm, org.springframework.osgi.compendium.cm, com.ibm.wsdl*;version="[1.6,2)", org.apache.xmlbeans.impl.schema;version="[2.5,3)", org.apache.xmlbeans*;version="[2.5,3)", org.hibernate*;resolution:=optional, org.hsqldb.jdbc;resolution:=optional, org.osgi.framework;version="[1.5,2)", org.osgi.util.tracker;version="[1.4,2)", org.springframework.beans.factory*;version="[2.5,4)", org.springframework.context*;version="[2.5,4)", org.springframework.osgi.context;version="[1.2,2)", net.sf.saxon.event;version="[9.1,9.2)", net.sf.saxon*;version="[9.1,9.2)",javax.wsdl*;version="[1.2,2)",javax.resource*;version="[1.5, 2]",org.apache.geronimo.connector.outbound*;version="[2.1,3)",org.apache.log4j*;version="[1.2,2)",org.apache.openjpa*;version="[1.2,2)",*'
# bnd['Embed-Dependency'] = '*;inline=**.xsd|schemaorg_apache_xmlbeans/**|**.xml'
# bnd['DynamicImport-Package'] = '*'
# bnd['Include-Resource'] = [embedres, _('src/main/resources'), inlines].flatten.join(', ')
# bnd['Bundle-Vendor'] = 'Apache Software Foundation'
# bnd['Bundle-License'] = 'http://www.apache.org/licenses/LICENSE-2.0'
# bnd['Bundle-DocURL'] = 'http://ode.apache.org'
# bnd['Bundle-Name'] = 'Apache ODE :: BPEL Service Engine'
# bnd['-versionpolicy'] = BND_VERSION_POLICY
# bnd.classpath = [project.compile.target, bnd_libs, artifacts(project("jbi").package(:jar)), libs].flatten
#
# BUNDLE_VERSIONS.each {|key, value| bnd[key] = value }
# end
# end
desc "ODE JCA Resource Archive"
define "jca-ra" do
compile.with project("utils"), JAVAX.connector
package :jar
end
desc "ODE JCA Server"
define "jca-server" do
compile.with projects("jca-ra", "utils"), SLF4J
package :jar
end
desc "ODE Tools"
define "tools" do
compile.with projects("bpel-compiler", "utils", "bpel-obj"), ANT, COMMONS.httpclient, SLF4J
package :jar
end
desc "ODE Utils"
define "utils" do
compile.with AXIOM, AXIS2_ALL, COMMONS.lang, COMMONS.collections, COMMONS.pool, COMMONS.httpclient, COMMONS.codec, LOG4J2, XERCES, JAVAX.stream, WSDL4J, SAXON, SLF4J, LOG4J2
# env variable required by HierarchicalPropertiesTest
test.using :environment=>{ 'TEST_DUMMY_ENV_VAR'=>42}
test.exclude "*TestResources"
package :jar
end
desc "ODE Agents"
define "agents" do
compile
package(:jar).with :manifest=>_("src/main/resources/META-INF/MANIFEST.MF")
end
# sources and javadocs of jbi-karaf-examples are packaged separately.
# package_with_sources :except => ["jbi-karaf-examples:helloworld2-osgi", "jbi-karaf-examples:ping-pong-osgi"]
# package_with_javadoc :except => ["jbi-karaf-examples:helloworld2-osgi", "jbi-karaf-examples:ping-pong-osgi"] unless ENV["JAVADOC"] =~ /^(no|off|false|skip)$/i
task :aligndeps do
pp transitive(['org.apache.axis2:axis2-webapp:jar:1.5.6', 'org.apache.rampart:rampart-project:jar:1.5.2']).group_by {|s| "#{s.group}:#{s.id}:#{s.classifier}:#{s.type}" }.map {|i,v| v.sort_by(&:version).first.to_spec}.sort
end
desc "tomee"
define "tomee" do
compile.with TOMEE, SLF4J
package :jar
end
desc "tomee-server"
define "tomee-server" do
tomee_libs = TOMEE, DERBY, DERBY_TOOLS, SLF4J, LOG4J2
#liraries to be rmomved from ODE war
rm_libs = GERONIMO, JAVAX.transaction, JAVAX.connector, JAVAX.ejb, JAVAX.javamail, JAVAX.jms, JAVAX.persistence, JAVAX.resource, DERBY, DERBY_TOOLS, SLF4J, LOG4J2, OPENJPA, TRANQL, artifacts(AXIS2_MODULES.libs).keep_if {|a| a.group == 'velocity' && a.id == 'velocity'}
# extract ode war
exploded_ode = unzip(_(:target, 'ode') => project("ode:axis2-war").package(:war)).target
package(:zip).enhance do |zip|
zip.include path_to(:src,:main,:server,'*')
zip.include(tomee_libs,:path=>"lib")
projects("tomee").map(&:packages).flatten.each do |pkg|
zip.include(pkg.to_s, :path=>"lib") unless ['sources', 'javadoc'].include?(pkg.classifier)
end
zip.merge project("dao-jpa-ojpa-derby").package(:zip),:path=>"database"
zip.merge project("dao-hibernate-db").package(:zip),:path=>"database"
exploded_ode.invoke
#remove conflicting artifacts from ODE war
artifacts(rm_libs).each {|a| rm _(:target, "ode/WEB-INF/lib/"+Artifact.hash_to_file_name(a.to_hash)) }
#remove classes folder, as there is nothing
remove_entry_secure _(:target, "ode/WEB-INF/classes/")
#copy Servlet 3.0 enabled web.xml
cp path_to("src/main/webapp/WEB-INF/web.xml"), _(:target, "ode/WEB-INF/web.xml")
# Preparing third party licenses
cp project.parent.path_to("LICENSE"), project.path_to("target/LICENSE")
File.open(project.path_to("target/LICENSE"), "a+") do |l|
l << Dir["#{project.path_to(:src,:main,:server,'lib')}/*LICENSE"].map { |f| "lib/"+f[/[^\/]*$/] }.join("\n")
end
zip.include _(:target, 'LICENSE')
# add TomcatFactory to ode-axis2.properties
File.open(_(:target, "ode/WEB-INF/conf/ode-axis2.properties"), 'a') do |file|
file.puts "\node-axis2.tx.factory.class=org.apache.ode.axis2.util.TomcatFactory"
file.puts "ode-axis2.db.mode=EXTERNAL"
file.puts "ode-axis2.db.ext.dataSource=java:comp/env/jdbc/ode"
file.puts "ode-axis2.dao.factory=org.apache.ode.dao.jpa.BPELDAOConnectionFactoryImpl"
file.puts "ode-axis2.threads.pool.size=20"
file.puts "ode-axis2.http.connection-manager.max-per-host=100"
file.puts "ode-axis2.http.connection-manager.max-total=100"
end
zip.include.path("webapps").include _(:target, "ode")
end
end
if not VERSION_NUMBER =~ /SNAPSHOT/
# required to sign the -sources and -javadoc jars
gpg_sign_before_upload
end
end
define "apache-ode" do
[:version, :group, :manifest, :meta_inf].each { |prop| send "#{prop}=", project("ode").send(prop) }
def distro(project, postfix)
id = project.parent.id + postfix
# distros require all packages in project("ode") to be built first
project.package(:zip, :id=>id).enhance(project("ode").projects.map(&:packages).flatten) do |pkg|
pkg.path("#{id}-#{version}").tap do |zip|
zip.include meta_inf + ["RELEASE_NOTES", "README"].map { |f| path_to(f) }
zip.path("examples").include(project.path_to("src/examples"+postfix), :as=>".").exclude "**/target"
# Libraries
zip.path("lib").include artifacts( COMMONS.codec, COMMONS.httpclient,
COMMONS.pool, COMMONS.collections, JAXEN, SAXON, LOG4J2, WSDL4J, XALAN, XERCES, SLF4J)
project("ode").projects("utils", "tools", "bpel-compiler", "bpel-api", "bpel-obj", "bpel-schemas").
map(&:packages).flatten.each do |pkg|
zip.include(pkg.to_s, :as=>"#{pkg.id}.#{pkg.type}", :path=>"lib") unless ['sources', 'javadoc'].include?(pkg.classifier)
end
# Including third party licenses
Dir["#{project.path_to("license")}/*LICENSE"].each { |l| zip.include(l, :path=>"lib") }
zip.include(project.path_to("target/LICENSE"))
# Include supported database schemas
Dir["#{project("ode:dao-jpa-ojpa-derby").path_to("target")}/*.sql"].each do |f|
zip.include(f, :path=>"sql/openjpa") unless f =~ /partial/
end
Dir["#{project("ode:dao-hibernate-db").path_to("target")}/*.sql"].each do |f|
zip.include(f, :path=>"sql/hibernate") unless f =~ /partial/
end
# Tools scripts (like bpelc and sendsoap)
bins = file(project.path_to("target/bin")=>FileList[project.path_to("src/bin/*")]) do |task|
mkdir_p project.path_to("target/bin")
mkpath task.name
cp task.prerequisites, task.name
chmod 0755, FileList[task.name + "/*"], :verbose=>false
end
bins.invoke
zip.include bins
yield zip
project.check zip, "should contain mysql.sql" do
it.should contain("sql/openjpa/mysql.sql")
end
project.check zip, "should contain sendsoap.bat" do
it.should contain("bin/sendsoap.bat")
end
end
end
end
desc "ODE Axis2 Based Distribution"
define "distro" do
parent.distro(self, "-war") { |zip| zip.include project("ode:axis2-war").package(:war), :as=>"ode.war" }
# parent.distro(self, "-jbi") { |zip| zip.include project("ode:jbi").package(:zip) }
parent.distro(self, "-server") { |zip| zip.include project("ode:tomee-server").package(:zip) }
# Preparing third party licenses
build do
Dir.mkdir(project.path_to("target")) unless File.exist?(project.path_to("target"))
cp parent.path_to("LICENSE"), project.path_to("target/LICENSE")
File.open(project.path_to("target/LICENSE"), "a+") do |l|
l << Dir["#{project.path_to("license")}/*LICENSE"].map { |f| "lib/"+f[/[^\/]*$/] }.join("\n")
end
end
project("ode:axis2-war").task("start").enhance do |task|
target = "#{task.path}/webapp/WEB-INF/processes"
puts "Deploying processes to #{target}" if verbose
verbose(false) do
mkpath target
cp_r FileList[_("src/examples/*")].to_a, target
rm Dir.glob("#{target}/*.deployed")
end
end
end
# package(:zip, :id=>"#{id}-sources").path("#{id}-sources-#{version}").tap do |zip|
# if File.exist?(".svn")
# `svn status -v`.reject { |l| l[0] == ?? || l[0] == ?D || l.strip.empty? || l[0...3] == "---"}.
# map { |l| l.split.last }.reject { |f| File.directory?(f) }.
# each { |f| zip.include f, :as=>f.gsub("\\", "/") }
# elsif File.exist? '.git/config'
# `git ls-files`.split("\n").each { |f| zip.include f, :as=>f.gsub("\\", "/") }
# else
# zip.include Dir.pwd, :as=>"."
# end
# #exlude old console that uses json.org, due to licensing issues
# zip.exclude('axis2-war/src/main/webapp/css').exclude('axis2-war/src/main/webapp/images').exclude('axis2-war/src/main/webapp/js')
# end
package(:zip, :id=>"#{id}-docs").include(doc.from(project("ode").projects).
using(:javadoc, :windowtitle=>"Apache ODE #{project.version}").target, :as=>"#{id}-docs-#{version}") unless ENV["JAVADOC"] =~ /^(no|off|false|skip)$/i
if not VERSION_NUMBER =~ /SNAPSHOT/
# required to sign the -sources and -javadoc jars
gpg_sign_before_upload
end
end