Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
no-classes-script/maven プラグイン宣言内からスクリプトの関数 (クラスなし) を呼び出すことは可能でしょうか?
たとえば、スクリプトcallMe.groovy:
callMe.groovy
def foo(){ println "hello" }
そして、これは私がmaven/別のacriptから呼び出したい機能です。 これはクラスを作成せずに可能ですか?
よろしくお願いします。
Groovy Script はクラスとして保存されます。したがって、別のスクリプトからメソッドを呼び出す方法は 2 つあります。
//Script Foo.groovy def foo(){ println "hello" } //Script Baz.groovy def static baz(){ println "static hello" } //Script Bar.groovy new Foo().foo() //prints hello Baz.baz() //prints static hello