Skip to content

Commit bd87ed5

Browse files
basic project
0 parents  commit bd87ed5

File tree

3 files changed

+57
-0
lines changed

3 files changed

+57
-0
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/bin/
2+
/target/
3+
/.settings
4+
/.classpath
5+
/.project
6+
/resources

pom.xml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>VKSF_Searcher</groupId>
5+
<artifactId>VKSF_Searcher</artifactId>
6+
<version>0.0.1-SNAPSHOT</version>
7+
<build>
8+
<sourceDirectory>src</sourceDirectory>
9+
<plugins>
10+
<plugin>
11+
<artifactId>maven-compiler-plugin</artifactId>
12+
<version>3.5.1</version>
13+
<configuration>
14+
<source>1.8</source>
15+
<target>1.8</target>
16+
</configuration>
17+
</plugin>
18+
</plugins>
19+
</build>
20+
21+
<dependencies>
22+
<!-- https://mvnrepository.com/artifact/junit/junit -->
23+
<dependency>
24+
<groupId>junit</groupId>
25+
<artifactId>junit</artifactId>
26+
<version>4.12</version>
27+
<scope>test</scope>
28+
</dependency>
29+
<!-- https://mvnrepository.com/artifact/org.mockito/mockito-all -->
30+
<dependency>
31+
<groupId>org.mockito</groupId>
32+
<artifactId>mockito-all</artifactId>
33+
<version>1.10.19</version>
34+
<scope>test</scope>
35+
</dependency>
36+
</dependencies>
37+
</project>

src/Tests/Test_JUnitSetup.java

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
package Tests;
2+
3+
import org.junit.Assert;
4+
import org.junit.Test;
5+
6+
public class Test_JUnitSetup {
7+
8+
@Test
9+
public void develOn1_8() {
10+
final String vers = System.getProperty("java.version");
11+
Assert.assertTrue(vers.startsWith("1.8"));
12+
}
13+
14+
}

0 commit comments

Comments
 (0)