2017-11-22 24 views
0

私はLiferay用のテーマをビルドしようとしています。 _unstyled /「HTML /テーマ(unstyle CSSをコピーしようとしている私は、同様のテーマを構築することができていますが、私はものMavenテーマビルドLiferay 6.2

[INFO] --- liferay-maven-plugin:6.2.10.13:theme-merge (default) @ my-theme --- 
[INFO] Parent theme group ID com.liferay.portal 
[INFO] Parent theme artifact ID portal-web 
[INFO] Parent theme version 6.2.10.14 
[INFO] Parent theme ID _styled 
[INFO] Copying html/themes/_unstyled/templates to C:\Dev\GIT_LOCAL_REPO\intranet\test-themes\my-theme\target\my-theme\templates 
[INFO] Copying html/themes/_unstyled/css to C:\Dev\GIT_LOCAL_REPO\intranet\test-themes\my-theme\target\my-theme\css 
[INFO] Copying html/themes/_unstyled/images to C:\Dev\GIT_LOCAL_REPO\intranet\test-themes\my-theme\target\my-theme\images 
[INFO] Copying html/themes/_unstyled/js to C:\Dev\GIT_LOCAL_REPO\intranet\test-themes\my-theme\target\my-theme\js 
[INFO] Copying html/themes/_styled/css to C:\Dev\GIT_LOCAL_REPO\intranet\test-themes\my-theme\target\my-theme\css 
[INFO] Copying html/themes/_styled/images to C:\Dev\GIT_LOCAL_REPO\intranet\test-themes\my-theme\target\my-theme\images 

の下より上知っていただきたいと思い、私はどのような場所にMavenから知っていただきたいと思います/ css ")のものです。

このパス "html/themes/_unstyled/css"はどこに属していますか?

テーマを開発するためのベーステーマとして_styleを使用しています。

私のサーバからのファイルを使用しておらず、ローカルのMavenリポジトリに存在する戦争もありません。

答えて

1

6.2を使用していることがわかりました。

6.2プラグインは、実際にLiferayバンドルをダウンロードしたり、そこからファイルを構成して読み込んだりするローカルの方法を使用するというアプローチが異なります。

編集: これはLiferay 7用です。 Liferayには_styledと_unstieldの基本テーマが含まれています。 _unstiledにはFTLテンプレートが含まれていますが、スタイリングされたスタイルからのベーススタイリング(css)は提供されません。

_styledをベースとして使用する場合。依存関係は、スタイルされていないものとロードされていないものがロードされ、ログに表示されるように適用されます。ファイルには、私はMavenのに使用されているかわからないんだけど、JARモジュールにhttps://mvnrepository.com/artifact/com.liferay/com.liferay.frontend.theme.unstyledhttps://mvnrepository.com/artifact/com.liferay/com.liferay.frontend.theme.styledまたはNPMモジュールにhttps://www.npmjs.com/package/liferay-frontend-theme-unstyledhttps://www.npmjs.com/package/liferay-frontend-theme-styled

を格納する必要があります。 Gradle/npm buildはnpnパッケージを使用します。

関連する問題