0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

MavenにJava 8を使用するように指定

Posted at

毎回検索するので、メモ。
参考サイト:
https://www.codeflow.site/ja/article/maven__how-to-tell-maven-to-use-java-8

★★★★★
Eclipse を使用する場合、プロジェクトを右クリック→Maven→プロジェクトの更新
を行わないと反映しないので、注意!
★★★★★

pom.xml
	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<java.version>1.8</java.version>
		<maven.compiler.target>${java.version}</maven.compiler.target>
		<maven.compiler.source>${java.version}</maven.compiler.source>
	</properties>
pom.xml
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.6.1</version>
                <configuration>
           <source>${java.version}</source>
           <target>${java.version}</target>
                </configuration>
            </plugin>
        </plugins>
    </build>
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?