Init du projet avant refacto

master
Thomas Clavier 8 years ago
parent 035d24299e
commit 8db9ad21cd
  1. 3
      .gitignore
  2. 16
      pom.xml

3
.gitignore vendored

@ -1,2 +1,5 @@
target/ target/
.idea/
*.iml
*~ *~
*.swp

@ -8,11 +8,25 @@
<artifactId>movie-rental</artifactId> <artifactId>movie-rental</artifactId>
<version>0.1</version> <version>0.1</version>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>(whatever version is current)</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>junit</groupId> <groupId>junit</groupId>
<artifactId>junit</artifactId> <artifactId>junit</artifactId>
<version>4.11</version> <version>4.12</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>

Loading…
Cancel
Save