Changeset 15502 for trunk/abcl/build.xml
- Timestamp:
- 05/10/21 13:10:29 (23 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/build.xml
r15495 r15502 431 431 </target> 432 432 433 <!-- 434 The usage of abcl.implementation.version is deprecated as not working. 435 The intention of this value was that if a given source tree could be 436 unidentified as being under source control by the presence of given 437 revision control system artifacts, the abcl.implementation.version 438 would contain a version derived from the revision control system. 439 440 To hack around the non-prescriptive nature of Ant, chains of 441 conditional targets had to be created that while might have once 442 worked for Subversion, were going to get increasingly hairy for 443 Mercurial and Git. 444 --> 445 433 446 <target name="abcl.stamp.version" 434 447 depends="abcl.version.src,abcl.stamp.version.1,abcl.stamp.version.2" … … 511 524 value="ABCL"/> 512 525 <attribute name="Implementation-Version" 513 value="${abcl. implementation.version}"/>526 value="${abcl.version}"/> 514 527 <attribute name="Implementation-Build" 515 528 value="${build}"/> … … 521 534 </target> 522 535 523 <target name="abcl-aio.jar" depends="abcl.compile,abcl.stamp"> 536 <target name="abcl-aio.jar" 537 depends="abcl.jar.uptodate"> 524 538 <mkdir dir="${dist.dir}"/> 525 539 <jar destfile="${abcl-aio.jar.path}" … … 544 558 value="ABCL"/> 545 559 <attribute name="Implementation-Version" 546 value="${abcl. implementation.version}"/>560 value="${abcl.version}"/> 547 561 <attribute name="Implementation-Build" 548 562 value="${build}"/> … … 553 567 <!-- FIXME: declare separate abcl-contrib version? --> 554 568 <attribute name="Implementation-Version" 555 value="${abcl. implementation.version}"/>569 value="${abcl.version}"/> 556 570 </section> 557 571 <section name="tools"> … … 563 577 value="org.abcl-source"/> 564 578 <attribute name="Implementation-Version" 565 value="${abcl. implementation.version}"/>579 value="${abcl.version}"/> 566 580 </section> 567 581 </manifest>
Note: See TracChangeset
for help on using the changeset viewer.