Browse Source

Fixed bug where .class files in subdirs (aka mediasources plugin) were not being added to the jars.


git-svn-id: http://svn.dmdirc.com/trunk@2696 00569f92-eb28-0410-84fd-f71c24880f
tags/0.5.5
Shane Mc Cormack 16 years ago
parent
commit
398d72fe91
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      BuildPlugins.xml

+ 1
- 1
BuildPlugins.xml View File

@@ -20,7 +20,7 @@
20 20
 		<propertyregex property="folder.name" input="${target.file}" regexp=".*${build.classes.dir}/(.*)$" select="\1" casesensitive="false" />
21 21
 		<echo message="Building: ${folder.name} to ${pluginjar.name}"/>
22 22
 		<delete file="plugins/${pluginjar.name}"/>
23
-		<jar jarfile="plugins/${pluginjar.name}" basedir="build/classes" includes="${folder.name}/*.class">
23
+		<jar jarfile="plugins/${pluginjar.name}" basedir="build/classes" includes="${folder.name}/**/*.class">
24 24
 			<metainf file="${target.file}/plugin.info"/>
25 25
 		</jar>
26 26
 	</target>

Loading…
Cancel
Save