| Issue 14: | maven2でビルド、テストが通らない | |
| 1 person starred this issue and may be notified of changes. | Back to list |
1.mvelのpomがおかしいため、ワーニングが出る 2.mvn compileがとおらない(あいまいなキャストが駄目?) 3.mvn testでJava6のServieLoaderが読むはずのMETA-INFをよんでない
Jan 28, 2008
Project Member
#1
shinpei.ohtani@gmail.com
Status:
Started
Jan 28, 2008
1は何もしない.
2に関してはLucyImpl/AbstarctAttributeBehaviorのあいまいキャストを明示キャストに
変更した.
3に関しては、pom.xmlで<resources><testResources>の指定が抜けているので
下記記述を追加した.
<resources>
<resource>
<directory>${basedir}/src</directory>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</resource>
</resources>
<testResources>
<testResource>
<directory>${basedir}/test</directory>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</testResource>
</testResources>
Status:
Fixed
|