Lines 676-681
Link Here
|
676 |
<path refid="logging.classpath"/> |
676 |
<path refid="logging.classpath"/> |
677 |
</classpath> |
677 |
</classpath> |
678 |
</javac> |
678 |
</javac> |
|
|
679 |
|
680 |
<!-- Convert the message files from UTF-8 to ASCII. This can be removed |
681 |
after upgrading to Java 9+ as the minimum JRE and specifying the encoding |
682 |
when loading the ResourceBundles --> |
683 |
<native2ascii src="${src.core}" dest="${build.core}" includes="**/*.properties" encoding="UTF-8"/> |
679 |
</target> |
684 |
</target> |
680 |
|
685 |
|
681 |
<target name="compile-components" depends="compile-jorphan,compile-core" description="Compile generic (protocol-independent) components."> |
686 |
<target name="compile-components" depends="compile-jorphan,compile-core" description="Compile generic (protocol-independent) components."> |
Lines 690-695
Link Here
|
690 |
<path refid="classpath"/> |
695 |
<path refid="classpath"/> |
691 |
</classpath> |
696 |
</classpath> |
692 |
</javac> |
697 |
</javac> |
|
|
698 |
|
699 |
<!-- Convert the message files from UTF-8 to ASCII. This can be removed |
700 |
after upgrading to Java 9+ as the minimum JRE and specifying the encoding |
701 |
when loading the ResourceBundles --> |
702 |
<native2ascii src="${src.components}" dest="${build.components}" includes="**/*.properties" encoding="UTF-8"/> |
693 |
</target> |
703 |
</target> |
694 |
|
704 |
|
695 |
<target name="compile-functions" depends="compile-jorphan,compile-core" description="Compile functions."> |
705 |
<target name="compile-functions" depends="compile-jorphan,compile-core" description="Compile functions."> |
Lines 703-708
Link Here
|
703 |
<path refid="classpath"/> |
713 |
<path refid="classpath"/> |
704 |
</classpath> |
714 |
</classpath> |
705 |
</javac> |
715 |
</javac> |
|
|
716 |
|
717 |
<!-- Convert the message files from UTF-8 to ASCII. This can be removed |
718 |
after upgrading to Java 9+ as the minimum JRE and specifying the encoding |
719 |
when loading the ResourceBundles --> |
720 |
<native2ascii src="${src.functions}" dest="${build.functions}" includes="**/*.properties" encoding="UTF-8"/> |
706 |
</target> |
721 |
</target> |
707 |
|
722 |
|
708 |
<target name="compile-http" depends="compile-jorphan,compile-core,compile-components" description="Compile components specific to HTTP sampling."> |
723 |
<target name="compile-http" depends="compile-jorphan,compile-core,compile-components" description="Compile components specific to HTTP sampling."> |
Lines 721-726
Link Here
|
721 |
<pathelement location="${lib.dir}/${log4j-core.jar}"/> |
736 |
<pathelement location="${lib.dir}/${log4j-core.jar}"/> |
722 |
</classpath> |
737 |
</classpath> |
723 |
</javac> |
738 |
</javac> |
|
|
739 |
|
740 |
<!-- Convert the message files from UTF-8 to ASCII. This can be removed |
741 |
after upgrading to Java 9+ as the minimum JRE and specifying the encoding |
742 |
when loading the ResourceBundles --> |
743 |
<native2ascii src="${src.http}" dest="${build.http}" includes="**/*.properties" encoding="UTF-8"/> |
724 |
</target> |
744 |
</target> |
725 |
|
745 |
|
726 |
<!-- Tests need main classes --> |
746 |
<!-- Tests need main classes --> |
Lines 750-755
Link Here
|
750 |
</classpath> |
770 |
</classpath> |
751 |
</javac> |
771 |
</javac> |
752 |
|
772 |
|
|
|
773 |
<!-- Convert the message files from UTF-8 to ASCII. This can be removed |
774 |
after upgrading to Java 9+ as the minimum JRE and specifying the encoding |
775 |
when loading the ResourceBundles --> |
776 |
<native2ascii src="${src.test}" dest="${build.test}" includes="**/*.properties" encoding="UTF-8"/> |
777 |
|
753 |
<!-- Compile Spock tests (groovy) --> |
778 |
<!-- Compile Spock tests (groovy) --> |
754 |
<taskdef name="groovyc" classname="org.codehaus.groovy.ant.Groovyc"> |
779 |
<taskdef name="groovyc" classname="org.codehaus.groovy.ant.Groovyc"> |
755 |
<classpath> |
780 |
<classpath> |
Lines 791-796
Link Here
|
791 |
<path refid="classpath"/> |
816 |
<path refid="classpath"/> |
792 |
</classpath> |
817 |
</classpath> |
793 |
</javac> |
818 |
</javac> |
|
|
819 |
|
820 |
<!-- Convert the message files from UTF-8 to ASCII. This can be removed |
821 |
after upgrading to Java 9+ as the minimum JRE and specifying the encoding |
822 |
when loading the ResourceBundles --> |
823 |
<native2ascii src="${src.ftp}" dest="${build.ftp}" includes="**/*.properties" encoding="UTF-8"/> |
794 |
</target> |
824 |
</target> |
795 |
|
825 |
|
796 |
<target name="compile-jdbc" depends="compile-jorphan,compile-core" description="Compile components specific to JDBC sampling."> |
826 |
<target name="compile-jdbc" depends="compile-jorphan,compile-core" description="Compile components specific to JDBC sampling."> |
Lines 804-809
Link Here
|
804 |
<path refid="classpath"/> |
834 |
<path refid="classpath"/> |
805 |
</classpath> |
835 |
</classpath> |
806 |
</javac> |
836 |
</javac> |
|
|
837 |
|
838 |
<!-- Convert the message files from UTF-8 to ASCII. This can be removed |
839 |
after upgrading to Java 9+ as the minimum JRE and specifying the encoding |
840 |
when loading the ResourceBundles --> |
841 |
<native2ascii src="${src.jdbc}" dest="${build.jdbc}" includes="**/*.properties" encoding="UTF-8"/> |
807 |
</target> |
842 |
</target> |
808 |
|
843 |
|
809 |
<target name="compile-ldap" depends="compile-jorphan,compile-core" |
844 |
<target name="compile-ldap" depends="compile-jorphan,compile-core" |
Lines 818-823
Link Here
|
818 |
<path refid="classpath"/> |
853 |
<path refid="classpath"/> |
819 |
</classpath> |
854 |
</classpath> |
820 |
</javac> |
855 |
</javac> |
|
|
856 |
|
857 |
<!-- Convert the message files from UTF-8 to ASCII. This can be removed |
858 |
after upgrading to Java 9+ as the minimum JRE and specifying the encoding |
859 |
when loading the ResourceBundles --> |
860 |
<native2ascii src="${src.ldap}" dest="${build.ldap}" includes="**/*.properties" encoding="UTF-8"/> |
821 |
</target> |
861 |
</target> |
822 |
|
862 |
|
823 |
<target name="create-mail-dir"> |
863 |
<target name="create-mail-dir"> |
Lines 835-840
Link Here
|
835 |
<path refid="classpath"/> |
875 |
<path refid="classpath"/> |
836 |
</classpath> |
876 |
</classpath> |
837 |
</javac> |
877 |
</javac> |
|
|
878 |
|
879 |
<!-- Convert the message files from UTF-8 to ASCII. This can be removed |
880 |
after upgrading to Java 9+ as the minimum JRE and specifying the encoding |
881 |
when loading the ResourceBundles --> |
882 |
<native2ascii src="${src.mail}" dest="${build.mail}" includes="**/*.properties" encoding="UTF-8"/> |
838 |
</target> |
883 |
</target> |
839 |
|
884 |
|
840 |
<target name="compile-java" depends="compile-jorphan,compile-core" description="Compile components specific to Java sampling."> |
885 |
<target name="compile-java" depends="compile-jorphan,compile-core" description="Compile components specific to Java sampling."> |
Lines 848-853
Link Here
|
848 |
<path refid="classpath"/> |
893 |
<path refid="classpath"/> |
849 |
</classpath> |
894 |
</classpath> |
850 |
</javac> |
895 |
</javac> |
|
|
896 |
|
897 |
<!-- Convert the message files from UTF-8 to ASCII. This can be removed |
898 |
after upgrading to Java 9+ as the minimum JRE and specifying the encoding |
899 |
when loading the ResourceBundles --> |
900 |
<native2ascii src="${src.java}" dest="${build.java}" includes="**/*.properties" encoding="UTF-8"/> |
851 |
</target> |
901 |
</target> |
852 |
|
902 |
|
853 |
<target name="compile-junit" depends="compile-jorphan,compile-core" description="Compile components specific to JUnit sampling."> |
903 |
<target name="compile-junit" depends="compile-jorphan,compile-core" description="Compile components specific to JUnit sampling."> |
Lines 861-866
Link Here
|
861 |
<path refid="classpath"/> |
911 |
<path refid="classpath"/> |
862 |
</classpath> |
912 |
</classpath> |
863 |
</javac> |
913 |
</javac> |
|
|
914 |
|
915 |
<!-- Convert the message files from UTF-8 to ASCII. This can be removed |
916 |
after upgrading to Java 9+ as the minimum JRE and specifying the encoding |
917 |
when loading the ResourceBundles --> |
918 |
<native2ascii src="${src.junit}" dest="${build.junit}" includes="**/*.properties" encoding="UTF-8"/> |
864 |
</target> |
919 |
</target> |
865 |
|
920 |
|
866 |
<target name="compile-tcp" depends="compile-jorphan,compile-core" description="Compile components specific to TCP sampling."> |
921 |
<target name="compile-tcp" depends="compile-jorphan,compile-core" description="Compile components specific to TCP sampling."> |
Lines 874-879
Link Here
|
874 |
<path refid="classpath"/> |
929 |
<path refid="classpath"/> |
875 |
</classpath> |
930 |
</classpath> |
876 |
</javac> |
931 |
</javac> |
|
|
932 |
|
933 |
<!-- Convert the message files from UTF-8 to ASCII. This can be removed |
934 |
after upgrading to Java 9+ as the minimum JRE and specifying the encoding |
935 |
when loading the ResourceBundles --> |
936 |
<native2ascii src="${src.tcp}" dest="${build.tcp}" includes="**/*.properties" encoding="UTF-8"/> |
877 |
</target> |
937 |
</target> |
878 |
|
938 |
|
879 |
<target name="compile-protocols" depends="compile-http,compile-ftp,compile-jdbc,compile-java,compile-ldap,compile-mail,compile-tcp" description="Compile all protocol-specific components."/> |
939 |
<target name="compile-protocols" depends="compile-http,compile-ftp,compile-jdbc,compile-java,compile-ldap,compile-mail,compile-tcp" description="Compile all protocol-specific components."/> |
Lines 889-894
Link Here
|
889 |
<path refid="classpath"/> |
949 |
<path refid="classpath"/> |
890 |
</classpath> |
950 |
</classpath> |
891 |
</javac> |
951 |
</javac> |
|
|
952 |
|
953 |
<!-- Convert the message files from UTF-8 to ASCII. This can be removed |
954 |
after upgrading to Java 9+ as the minimum JRE and specifying the encoding |
955 |
when loading the ResourceBundles --> |
956 |
<native2ascii src="${src.examples}" dest="${build.examples}" includes="**/*.properties" encoding="UTF-8"/> |
892 |
</target> |
957 |
</target> |
893 |
|
958 |
|
894 |
<target name="compile-jorphan" depends="init-version" description="Compile JOrphan utility classes."> |
959 |
<target name="compile-jorphan" depends="init-version" description="Compile JOrphan utility classes."> |
Lines 900-905
Link Here
|
900 |
<path refid="classpath"/> |
965 |
<path refid="classpath"/> |
901 |
</classpath> |
966 |
</classpath> |
902 |
</javac> |
967 |
</javac> |
|
|
968 |
|
969 |
<!-- Convert the message files from UTF-8 to ASCII. This can be removed |
970 |
after upgrading to Java 9+ as the minimum JRE and specifying the encoding |
971 |
when loading the ResourceBundles --> |
972 |
<native2ascii src="${src.jorphan}" dest="${build.jorphan}" includes="**/*.properties" encoding="UTF-8"/> |
903 |
</target> |
973 |
</target> |
904 |
|
974 |
|
905 |
<target name="compile-jms" depends="compile-jorphan,compile-core,compile-components" |
975 |
<target name="compile-jms" depends="compile-jorphan,compile-core,compile-components" |
Lines 914-919
Link Here
|
914 |
<path refid="classpath"/> |
984 |
<path refid="classpath"/> |
915 |
</classpath> |
985 |
</classpath> |
916 |
</javac> |
986 |
</javac> |
|
|
987 |
|
988 |
<!-- Convert the message files from UTF-8 to ASCII. This can be removed |
989 |
after upgrading to Java 9+ as the minimum JRE and specifying the encoding |
990 |
when loading the ResourceBundles --> |
991 |
<native2ascii src="${src.jms}" dest="${build.jms}" includes="**/*.properties" encoding="UTF-8"/> |
917 |
</target> |
992 |
</target> |
918 |
|
993 |
|
919 |
<target name="compile-native" depends="compile-jorphan,compile-core,compile-components" |
994 |
<target name="compile-native" depends="compile-jorphan,compile-core,compile-components" |
Lines 928-933
Link Here
|
928 |
<path refid="classpath"/> |
1003 |
<path refid="classpath"/> |
929 |
</classpath> |
1004 |
</classpath> |
930 |
</javac> |
1005 |
</javac> |
|
|
1006 |
|
1007 |
<!-- Convert the message files from UTF-8 to ASCII. This can be removed |
1008 |
after upgrading to Java 9+ as the minimum JRE and specifying the encoding |
1009 |
when loading the ResourceBundles --> |
1010 |
<native2ascii src="${src.native}" dest="${build.native}" includes="**/*.properties" encoding="UTF-8"/> |
931 |
</target> |
1011 |
</target> |
932 |
|
1012 |
|
933 |
<target name="compile-mongodb" depends="compile-jorphan,compile-core,compile-components" |
1013 |
<target name="compile-mongodb" depends="compile-jorphan,compile-core,compile-components" |
Lines 942-947
Link Here
|
942 |
<path refid="classpath"/> |
1022 |
<path refid="classpath"/> |
943 |
</classpath> |
1023 |
</classpath> |
944 |
</javac> |
1024 |
</javac> |
|
|
1025 |
|
1026 |
<!-- Convert the message files from UTF-8 to ASCII. This can be removed |
1027 |
after upgrading to Java 9+ as the minimum JRE and specifying the encoding |
1028 |
when loading the ResourceBundles --> |
1029 |
<native2ascii src="${src.mongodb}" dest="${build.mongodb}" includes="**/*.properties" encoding="UTF-8"/> |
945 |
</target> |
1030 |
</target> |
946 |
|
1031 |
|
947 |
<target name="compile" |
1032 |
<target name="compile" |
Lines 1060-1066
run JMeter unless all the JMeter jars are added.
Link Here
|
1060 |
excludes="**/BeanShellClient*.class,**/NewDriver*,**/DynamicClassLoader*"/> |
1145 |
excludes="**/BeanShellClient*.class,**/NewDriver*,**/DynamicClassLoader*"/> |
1061 |
<fileset dir="${src.core}" includes="org/apache/jmeter/images/**" |
1146 |
<fileset dir="${src.core}" includes="org/apache/jmeter/images/**" |
1062 |
excludes="**/*.properties,org/apache/jmeter/images/toolbar/icons-custom/**"/> |
1147 |
excludes="**/*.properties,org/apache/jmeter/images/toolbar/icons-custom/**"/> |
1063 |
<fileset dir="${src.core}" includes="**/*.properties"> |
1148 |
<fileset dir="${build.core}" includes="**/*.properties"> |
1064 |
<exclude name="*eucJP*"/> |
1149 |
<exclude name="*eucJP*"/> |
1065 |
</fileset> |
1150 |
</fileset> |
1066 |
<fileset dir="${src.core}" includes="**/*.xml" /> |
1151 |
<fileset dir="${src.core}" includes="**/*.xml" /> |
Lines 1076-1082
run JMeter unless all the JMeter jars are added.
Link Here
|
1076 |
<zipfileset file="${resources.meta-inf}/default.license" |
1161 |
<zipfileset file="${resources.meta-inf}/default.license" |
1077 |
fullpath="META-INF/LICENSE" /> |
1162 |
fullpath="META-INF/LICENSE" /> |
1078 |
<fileset dir="${build.components}" includes="**/*.class" /> |
1163 |
<fileset dir="${build.components}" includes="**/*.class" /> |
1079 |
<fileset dir="${src.components}" includes="**/*.properties" /> |
1164 |
<fileset dir="${build.components}" includes="**/*.properties" /> |
1080 |
</jar> |
1165 |
</jar> |
1081 |
|
1166 |
|
1082 |
<!-- functions --> |
1167 |
<!-- functions --> |
Lines 1086-1092
run JMeter unless all the JMeter jars are added.
Link Here
|
1086 |
<zipfileset file="${resources.meta-inf}/default.license" |
1171 |
<zipfileset file="${resources.meta-inf}/default.license" |
1087 |
fullpath="META-INF/LICENSE" /> |
1172 |
fullpath="META-INF/LICENSE" /> |
1088 |
<fileset dir="${build.functions}" includes="**/*.class" /> |
1173 |
<fileset dir="${build.functions}" includes="**/*.class" /> |
1089 |
<fileset dir="${src.functions}" includes="**/*.properties" /> |
1174 |
<fileset dir="${build.functions}" includes="**/*.properties" /> |
1090 |
</jar> |
1175 |
</jar> |
1091 |
|
1176 |
|
1092 |
<!-- http --> |
1177 |
<!-- http --> |
Lines 1096-1102
run JMeter unless all the JMeter jars are added.
Link Here
|
1096 |
<zipfileset file="${resources.meta-inf}/default.license" |
1181 |
<zipfileset file="${resources.meta-inf}/default.license" |
1097 |
fullpath="META-INF/LICENSE" /> |
1182 |
fullpath="META-INF/LICENSE" /> |
1098 |
<fileset dir="${build.http}" includes="**/*.class"/> |
1183 |
<fileset dir="${build.http}" includes="**/*.class"/> |
1099 |
<fileset dir="${src.http}" includes="**/*.properties" /> |
1184 |
<fileset dir="${build.http}" includes="**/*.properties" /> |
1100 |
</jar> |
1185 |
</jar> |
1101 |
|
1186 |
|
1102 |
<!-- ftp --> |
1187 |
<!-- ftp --> |
Lines 1106-1112
run JMeter unless all the JMeter jars are added.
Link Here
|
1106 |
<zipfileset file="${resources.meta-inf}/default.license" |
1191 |
<zipfileset file="${resources.meta-inf}/default.license" |
1107 |
fullpath="META-INF/LICENSE" /> |
1192 |
fullpath="META-INF/LICENSE" /> |
1108 |
<fileset dir="${build.ftp}" includes="**/*.class" /> |
1193 |
<fileset dir="${build.ftp}" includes="**/*.class" /> |
1109 |
<fileset dir="${src.ftp}" includes="**/*.properties" /> |
1194 |
<fileset dir="${build.ftp}" includes="**/*.properties" /> |
1110 |
</jar> |
1195 |
</jar> |
1111 |
|
1196 |
|
1112 |
<!-- jdbc --> |
1197 |
<!-- jdbc --> |
Lines 1116-1122
run JMeter unless all the JMeter jars are added.
Link Here
|
1116 |
<zipfileset file="${resources.meta-inf}/default.license" |
1201 |
<zipfileset file="${resources.meta-inf}/default.license" |
1117 |
fullpath="META-INF/LICENSE" /> |
1202 |
fullpath="META-INF/LICENSE" /> |
1118 |
<fileset dir="${build.jdbc}" includes="**/*.class" /> |
1203 |
<fileset dir="${build.jdbc}" includes="**/*.class" /> |
1119 |
<fileset dir="${src.jdbc}" includes="**/*.properties" /> |
1204 |
<fileset dir="${build.jdbc}" includes="**/*.properties" /> |
1120 |
</jar> |
1205 |
</jar> |
1121 |
|
1206 |
|
1122 |
<!-- java --> |
1207 |
<!-- java --> |
Lines 1126-1132
run JMeter unless all the JMeter jars are added.
Link Here
|
1126 |
<zipfileset file="${resources.meta-inf}/default.license" |
1211 |
<zipfileset file="${resources.meta-inf}/default.license" |
1127 |
fullpath="META-INF/LICENSE" /> |
1212 |
fullpath="META-INF/LICENSE" /> |
1128 |
<fileset dir="${build.java}" includes="**/*.class" /> |
1213 |
<fileset dir="${build.java}" includes="**/*.class" /> |
1129 |
<fileset dir="${src.java}" includes="**/*.properties" /> |
1214 |
<fileset dir="${build.java}" includes="**/*.properties" /> |
1130 |
</jar> |
1215 |
</jar> |
1131 |
|
1216 |
|
1132 |
<!-- BeanShell Client --> |
1217 |
<!-- BeanShell Client --> |
Lines 1148-1154
run JMeter unless all the JMeter jars are added.
Link Here
|
1148 |
<zipfileset file="${resources.meta-inf}/default.license" |
1233 |
<zipfileset file="${resources.meta-inf}/default.license" |
1149 |
fullpath="META-INF/LICENSE" /> |
1234 |
fullpath="META-INF/LICENSE" /> |
1150 |
<fileset dir="${build.junit}" includes="org/**/*.class" /> |
1235 |
<fileset dir="${build.junit}" includes="org/**/*.class" /> |
1151 |
<fileset dir="${src.junit}" includes="**/*.properties" /> |
1236 |
<fileset dir="${build.junit}" includes="**/*.properties" /> |
1152 |
</jar> |
1237 |
</jar> |
1153 |
|
1238 |
|
1154 |
<!-- Build junit/test.jar sample --> |
1239 |
<!-- Build junit/test.jar sample --> |
Lines 1168-1174
run JMeter unless all the JMeter jars are added.
Link Here
|
1168 |
<zipfileset file="${resources.meta-inf}/default.license" |
1253 |
<zipfileset file="${resources.meta-inf}/default.license" |
1169 |
fullpath="META-INF/LICENSE" /> |
1254 |
fullpath="META-INF/LICENSE" /> |
1170 |
<fileset dir="${build.ldap}" includes="**/*.class" /> |
1255 |
<fileset dir="${build.ldap}" includes="**/*.class" /> |
1171 |
<fileset dir="${src.ldap}" includes="**/*.properties" /> |
1256 |
<fileset dir="${build.ldap}" includes="**/*.properties" /> |
1172 |
</jar> |
1257 |
</jar> |
1173 |
|
1258 |
|
1174 |
<!-- mail --> |
1259 |
<!-- mail --> |
Lines 1178-1184
run JMeter unless all the JMeter jars are added.
Link Here
|
1178 |
<zipfileset file="${resources.meta-inf}/default.license" |
1263 |
<zipfileset file="${resources.meta-inf}/default.license" |
1179 |
fullpath="META-INF/LICENSE" /> |
1264 |
fullpath="META-INF/LICENSE" /> |
1180 |
<fileset dir="${build.mail}" includes="**/*.class" /> |
1265 |
<fileset dir="${build.mail}" includes="**/*.class" /> |
1181 |
<fileset dir="${src.mail}" includes="**/*.properties" /> |
1266 |
<fileset dir="${build.mail}" includes="**/*.properties" /> |
1182 |
<fileset dir="${src.mail}" includes="**/*.providers" /> |
1267 |
<fileset dir="${src.mail}" includes="**/*.providers" /> |
1183 |
</jar> |
1268 |
</jar> |
1184 |
|
1269 |
|
Lines 1189-1195
run JMeter unless all the JMeter jars are added.
Link Here
|
1189 |
<zipfileset file="${resources.meta-inf}/default.license" |
1274 |
<zipfileset file="${resources.meta-inf}/default.license" |
1190 |
fullpath="META-INF/LICENSE" /> |
1275 |
fullpath="META-INF/LICENSE" /> |
1191 |
<fileset dir="${build.tcp}" includes="**/*.class" /> |
1276 |
<fileset dir="${build.tcp}" includes="**/*.class" /> |
1192 |
<fileset dir="${src.tcp}" includes="**/*.properties" /> |
1277 |
<fileset dir="${build.tcp}" includes="**/*.properties" /> |
1193 |
</jar> |
1278 |
</jar> |
1194 |
|
1279 |
|
1195 |
<!-- jms --> |
1280 |
<!-- jms --> |
Lines 1201-1207
run JMeter unless all the JMeter jars are added.
Link Here
|
1201 |
<zipfileset file="${resources.meta-inf}/default.license" |
1286 |
<zipfileset file="${resources.meta-inf}/default.license" |
1202 |
fullpath="META-INF/LICENSE" /> |
1287 |
fullpath="META-INF/LICENSE" /> |
1203 |
<fileset dir="${build.jms}" includes="**/*.class" /> |
1288 |
<fileset dir="${build.jms}" includes="**/*.class" /> |
1204 |
<fileset dir="${src.jms}" includes="**/*.properties" /> |
1289 |
<fileset dir="${build.jms}" includes="**/*.properties" /> |
1205 |
</jar> |
1290 |
</jar> |
1206 |
|
1291 |
|
1207 |
<!-- native --> |
1292 |
<!-- native --> |
Lines 1213-1219
run JMeter unless all the JMeter jars are added.
Link Here
|
1213 |
<zipfileset file="${resources.meta-inf}/default.license" |
1298 |
<zipfileset file="${resources.meta-inf}/default.license" |
1214 |
fullpath="META-INF/LICENSE" /> |
1299 |
fullpath="META-INF/LICENSE" /> |
1215 |
<fileset dir="${build.native}" includes="**/*.class" /> |
1300 |
<fileset dir="${build.native}" includes="**/*.class" /> |
1216 |
<fileset dir="${src.native}" includes="**/*.properties" /> |
1301 |
<fileset dir="${build.native}" includes="**/*.properties" /> |
1217 |
</jar> |
1302 |
</jar> |
1218 |
|
1303 |
|
1219 |
<!-- mongodb --> |
1304 |
<!-- mongodb --> |
Lines 1225-1231
run JMeter unless all the JMeter jars are added.
Link Here
|
1225 |
<zipfileset file="${resources.meta-inf}/default.license" |
1310 |
<zipfileset file="${resources.meta-inf}/default.license" |
1226 |
fullpath="META-INF/LICENSE" /> |
1311 |
fullpath="META-INF/LICENSE" /> |
1227 |
<fileset dir="${build.mongodb}" includes="**/*.class" /> |
1312 |
<fileset dir="${build.mongodb}" includes="**/*.class" /> |
1228 |
<fileset dir="${src.mongodb}" includes="**/*.properties" /> |
1313 |
<fileset dir="${build.mongodb}" includes="**/*.properties" /> |
1229 |
</jar> |
1314 |
</jar> |
1230 |
|
1315 |
|
1231 |
<jar jarfile="${lib.dir}/jorphan.jar" manifest="${build.dir}/MANIFEST_BIN.MF"> |
1316 |
<jar jarfile="${lib.dir}/jorphan.jar" manifest="${build.dir}/MANIFEST_BIN.MF"> |
Lines 1234-1240
run JMeter unless all the JMeter jars are added.
Link Here
|
1234 |
<zipfileset file="${resources.meta-inf}/default.license" |
1319 |
<zipfileset file="${resources.meta-inf}/default.license" |
1235 |
fullpath="META-INF/LICENSE" /> |
1320 |
fullpath="META-INF/LICENSE" /> |
1236 |
<fileset dir="${build.jorphan}" includes="**/*.class"/> |
1321 |
<fileset dir="${build.jorphan}" includes="**/*.class"/> |
1237 |
<fileset dir="${src.jorphan}" includes="**/*.properties"/> |
1322 |
<fileset dir="${build.jorphan}" includes="**/*.properties"/> |
1238 |
</jar> |
1323 |
</jar> |
1239 |
</target> |
1324 |
</target> |
1240 |
|
1325 |
|
Lines 1286-1292
run JMeter unless all the JMeter jars are added.
Link Here
|
1286 |
<zipfileset file="${resources.meta-inf}/default.license" |
1371 |
<zipfileset file="${resources.meta-inf}/default.license" |
1287 |
fullpath="META-INF/LICENSE" /> |
1372 |
fullpath="META-INF/LICENSE" /> |
1288 |
<fileset dir="${build.examples}" includes="**/*.class" /> |
1373 |
<fileset dir="${build.examples}" includes="**/*.class" /> |
1289 |
<fileset dir="${src.examples}" includes="**/*.properties" /> |
1374 |
<fileset dir="${build.examples}" includes="**/*.properties" /> |
1290 |
</jar> |
1375 |
</jar> |
1291 |
</target> |
1376 |
</target> |
1292 |
|
1377 |
|
1293 |
- |
|
|