LoginSignup
2
3

More than 5 years have passed since last update.

maven プロジェクトで利用する JDKのバージョンを指定する。

Last updated at Posted at 2013-08-29

メモ

pom.xml-スペニット
    <profiles>
        <profile>
            <activation>
                <jdk>1.7</jdk>
            </activation>
        </profile>
    </profiles>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.1</version>
                <configuration>
                    <source>1.7</source>
                    <target>1.7</target>
                </configuration>
            </plugin>
        </plugins>
    </build>
2
3
1

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
2
3