|
@@ -1559,6 +1559,22 @@ function make_def_config(cb) {
|
|
|
JSON.stringify(externalDataSources, null, 4)
|
|
JSON.stringify(externalDataSources, null, 4)
|
|
|
);
|
|
);
|
|
|
|
|
|
|
|
|
|
+ fs.readdirSync(path.resolve(__dirname, "jar")).forEach((child) => {
|
|
|
|
|
+ if (/^.+\.jar$/i.test(child)) {
|
|
|
|
|
+ fs.copyFileSync(
|
|
|
|
|
+ path.resolve(__dirname, "jar", child),
|
|
|
|
|
+ path.resolve(
|
|
|
|
|
+ __dirname,
|
|
|
|
|
+ "target",
|
|
|
|
|
+ "o2server",
|
|
|
|
|
+ "commons",
|
|
|
|
|
+ "ext",
|
|
|
|
|
+ child
|
|
|
|
|
+ )
|
|
|
|
|
+ );
|
|
|
|
|
+ }
|
|
|
|
|
+ });
|
|
|
|
|
+
|
|
|
cb();
|
|
cb();
|
|
|
}
|
|
}
|
|
|
exports.make_def_config = gulp.series(make_def_config);
|
|
exports.make_def_config = gulp.series(make_def_config);
|