Changeset 765
- Timestamp:
- Sep 16, 2008, 11:20:48 AM (14 years ago)
- Location:
- plugins/base1/se.lu.onk.BaseFile/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/base1/se.lu.onk.BaseFile/trunk/README
r760 r765 32 32 from the repository, change to the package directory and issue `ant`; 33 33 {{{ 34 svn co http://baseplugins.thep.lu.se/svn/plugins/base1/se.lu.onk.BaseFile/trunk se.lu.onk.BaseFile35 cdse.lu.onk.BaseFile36 ant34 check out project, see instructions below 35 # cd /path/to/se.lu.onk.BaseFile 36 # ant 37 37 }}} 38 This will create a jar file `dist/basefile.jar`. If you want to change 39 a released version you should replace `trunk` with `tags/release` in 40 the above example. 38 This will create a jar file `dist/BaseFile.jar`. 41 39 42 40 … … 57 55 `svn co http://baseplugins.thep.lu.se/svn/plugins/base1/se.lu.onk.BaseFile/trunk se.lu.onk.BaseFile` 58 56 59 There is no guarantees about the contents or quality of the latest code 60 in the subversion repository: it is not unheard of for code that is 61 known to be broken to be committed to the repository. Use at your own 62 risk. You may prefer to check out a released version instead. 57 There is no guarantees about the contents or quality of the latest 58 code in the subversion repository: it is not unheard of for code that 59 is known to be broken to be committed to the repository. Use at your 60 own risk. You may prefer to check out a released version instead, then 61 replace `trunk` with `tags/release-number` in the above example. 63 62 64 63 -
plugins/base1/se.lu.onk.BaseFile/trunk/build.xml
r759 r765 70 70 <delete dir="${dist}" /> 71 71 <delete dir="${package}" /> 72 <delete file="${packagestring}. zip" />72 <delete file="${packagestring}.tgz" /> 73 73 </target> 74 74 … … 91 91 ================================= --> 92 92 <target name="package" depends="dist" 93 description="--> Create a zipfile for distribution.">93 description="--> Create a tgz file for distribution."> 94 94 <mkdir dir="${package}"/> 95 <mkdir dir="${package}/${packagestring}"/> 96 <copy todir="${package}/${packagestring}"> 95 <copy todir="${package}"> 97 96 <fileset file="${dist}/BaseFile.jar" /> 98 97 <fileset file="README" /> 99 98 <fileset file="license.txt" /> 100 99 </copy> 101 <zip destfile="${packagestring}.zip" basedir="${package}" /> 100 <tar 101 destfile="${packagestring}.tgz" 102 longfile="gnu" 103 compression="gzip" 104 > 105 <tarfileset 106 dir="${package}" 107 prefix="${packagestring}" 108 preserveLeadingSlashes="true" 109 > 110 </tarfileset> 111 </tar> 102 112 </target> 103 113
Note: See TracChangeset
for help on using the changeset viewer.