Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Jtestを使用してJavaプロジェクトの解析およびテストを実行するための準備を行います。

...

Maven のバージョン情報が表示されない場合は、ご利用環境の設定を見直してください。

サンプルプロジェクトのビルド

demo プロジェクトがビルドできることを確認します。

  1. demoプロジェクトディレクトリに移動し、「mvn clean compile」コマンドを実行してdemoプロジェクトをビルドします。

    Code Block
    jtest\examples\demo>mvn clean compile
    [INFO] Scanning for projects...
    [INFO]
    [INFO] -------------------------< com.parasoft:demo >--------------------------
    [INFO] Building Demo Project 1.0.0
    [INFO] --------------------------------[ jar ]---------------------------------
    [INFO]
    [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ demo ---
    [INFO]
    [INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ demo ---
    [WARNING] Using platform encoding (MS932 actually) to copy filtered resources, i.e. build is platform dependent!
    [INFO] Copying 18 resources
    [INFO]
    [INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ demo ---
    [INFO] Changes detected - recompiling the module!
    [WARNING] File encoding has not been set, using platform encoding MS932, i.e. build is platform dependent!
    [INFO] Compiling 66 source files to C:\jtest2022.1\examples\demo\target\classes
    [INFO] /C:/jtest2022.1/examples/demo/src/main/java/examples/flowanalysis/np/MyDictionary.java: 入力ファイルの操作のうち 、未チェックまたは安全ではないものがあります。
    [INFO] /C:/jtest2022.1/examples/demo/src/main/java/examples/flowanalysis/np/MyDictionary.java: 詳細は、-Xlint:unchecked オプションを指定して再コンパイルしてください。
    [INFO] ------------------------------------------------------------------------
    [INFO] BUILD SUCCESS
    [INFO] ------------------------------------------------------------------------
    [INFO] Total time:  6.304 s
    [INFO] Finished at: 2022-08-16T18:41:16+09:00
    [INFO] ------------------------------------------------------------------------


  2. 「BUILD SUCCESS」 が出力されビルドが成功したことを確認します。
    ビルドエラーが発生する場合は、ご利用環境の環境設定を見直してください。

...