mabu_you_devの日記

日々のプログラム学習記録と備忘録

JUnit実践入門 Part3

# JUnit実践入門
P.189まで終了

# Github
久しぶりにGithubソースコード共有開始
MBP<>MBAで行ったり来たり

# Maven導入
DependenciesでAddできなかった件
maven - Cannot search for artifact in Eclipse Kepler using m2e plugin - Stack Overflow
ここの
1. Go to Window > Show View > Other > type Maven in filter and select Maven Repositories.
2. In Maven Repositories tab Expand Global Repositories, Right-click on central and Update Index.
でOK

EclipseMavenプロジェクトを作成するとJavaのバージョンが1.5なので
pom.xmlを編集

<build>
  <plugins>
    <plugin>
      <groupId>org.apache.maven.plugins</groupId>
  	<artifactId>maven-compiler-plugin</artifactId>
  	<version>2.3.2</version>
  	<configuration>
  	<source>1.8</source>
  	<target>1.8</target>
      </configuration>
    </plugin>
  </plugins>
 </build>