Difference between revisions of "Maven Project 생성"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
* [[ | * [[file:maven-01.png]] | ||
* [[ | * [[file:maven-02.png]] | ||
* [[ | * [[file:maven-03.png]] | ||
* [[ | * [[file:maven-04.png]] | ||
* [[ | * [[file:maven-05.png]] | ||
* [[ | * [[file:maven-06.png]] | ||
* [[ | * [[file:maven-07.png]] | ||
* [[ | * [[file:maven-08.png]] | ||
* [[ | * [[file:maven-09.png]] | ||
* [[ | * [[file:maven-10.png]] | ||
<syntaxhighlight lang="xml"> | <syntaxhighlight lang="xml"> |
Revision as of 20:20, 18 July 2022
...
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>stanfordkarel</groupId>
<artifactId>stanfordkarel</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/Karel.jar</systemPath>
</dependency>
<dependency>
<groupId>hufskarel</groupId>
<artifactId>hufskarel</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/Hufs-karel.jar</systemPath>
</dependency>
</dependencies>
...