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.
他のフォルダー/プロジェクト (非 grails、しかし間違いなく Java プロジェクト) からの依存関係を自分の grails プロジェクトに追加する方法はありますか? 検索してみましたが、あまり答えが得られませんでした。:(
Maven リポジトリにあるすべての可能なライブラリを使用できます。そのため、Java プロジェクトを maven または gradle プロジェクトに変換してください。ビルドした jar を maven リポジトリにインストールすると、依存関係を grails-app/conf/BuildConfig.groovy に追加できます。
dependencies { compile "your.group:your.artifact:1.0" }