Commit 8932a5e609002f69d24312048994cfea6728f59a
1 parent
886ed8a4
Exists in
master
set use java 1.8
Showing
2 changed files
with
16 additions
and
0 deletions
Show diff stats
... | ... | @@ -0,0 +1 @@ |
1 | +/target/ | ... | ... |
pom.xml
... | ... | @@ -7,6 +7,21 @@ |
7 | 7 | <version>0.0.1-SNAPSHOT</version> |
8 | 8 | <packaging>jar</packaging> |
9 | 9 | |
10 | + <build> | |
11 | + <sourceDirectory>src</sourceDirectory> | |
12 | + <plugins> | |
13 | + <plugin> | |
14 | + <artifactId>maven-compiler-plugin</artifactId> | |
15 | + <version>3.7.0</version> | |
16 | + <configuration> | |
17 | + <source>1.8</source> | |
18 | + <target>1.8</target> | |
19 | + </configuration> | |
20 | + </plugin> | |
21 | + </plugins> | |
22 | + </build> | |
23 | + | |
24 | + | |
10 | 25 | <name>MockUp</name> |
11 | 26 | <url>http://maven.apache.org</url> |
12 | 27 | ... | ... |