You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by gu...@apache.org on 2022/04/12 06:12:51 UTC

[pulsar-manager] branch master updated: Simplified classpath (#444)

This is an automated email from the ASF dual-hosted git repository.

guangning pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar-manager.git


The following commit(s) were added to refs/heads/master by this push:
     new 5a250d2  Simplified classpath (#444)
5a250d2 is described below

commit 5a250d25f7ba160a69f5c968d758e8fae3c2d9a8
Author: xuesongxs <54...@users.noreply.github.com>
AuthorDate: Tue Apr 12 14:12:46 2022 +0800

    Simplified classpath (#444)
---
 build.gradle | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/build.gradle b/build.gradle
index b629cba..0ccab9c 100644
--- a/build.gradle
+++ b/build.gradle
@@ -55,6 +55,10 @@ apply plugin: 'application'
 
 mainClassName = 'org.apache.pulsar.manager.PulsarManagerApplication'
 
+startScripts {
+    classpath  = files('$APP_HOME/lib/*')
+}
+
 task licenseFormatNode(type: com.hierynomus.gradle.license.tasks.LicenseFormat) {
     source = fileTree(dir: "src").include("**/*")
     source = fileTree(dir: "front-end/src").include("**/*")