Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content
This repository was archived by the owner on Oct 4, 2020. It is now read-only.

Commit 84ebf2f

Browse files
author
nipa
committed
Create pom
1 parent 1529748 commit 84ebf2f

File tree

1 file changed

+138
-0
lines changed

1 file changed

+138
-0
lines changed

pom.xml

+138
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,138 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<!-- PROJECT COORDINATES -->
8+
9+
<groupId>org.codefx.lab</groupId>
10+
<artifactId>junit-lambda</artifactId>
11+
<version>1.0-SNAPSHOT</version>
12+
13+
<!-- PROJECT META INFORMATION -->
14+
15+
<name>JUnit Lambda</name>
16+
<description>Toying around with the JUnit Lambda Prototype</description>
17+
<url>https://github.com/CodeFX-org/lab-junitlambda</url>
18+
19+
<scm>
20+
<url>https://github.com/CodeFX-org/lab-junitlambda</url>
21+
<connection>scm:git:git://github.com/CodeFX-org/lab-junitlambda.git</connection>
22+
</scm>
23+
24+
<issueManagement>
25+
<url>https://github.com/CodeFX-org/lab-junitlambda/issues</url>
26+
<system>GitHub</system>
27+
</issueManagement>
28+
29+
<licenses>
30+
<license>
31+
<name>CC0 1.0 Universal</name>
32+
<url>http://creativecommons.org/publicdomain/zero/1.0</url>
33+
<distribution>repo</distribution>
34+
</license>
35+
</licenses>
36+
37+
<!-- ORGANIZATION META INFORMATION -->
38+
39+
<organization>
40+
<name>CodeFX</name>
41+
<url>http://codefx.org</url>
42+
</organization>
43+
44+
<developers>
45+
<developer>
46+
<id>nipa</id>
47+
<name>Nicolai Parlog</name>
48+
<email>nipa@codefx.org</email>
49+
<organization>CodeFX</organization>
50+
<organizationUrl>http://codefx.org</organizationUrl>
51+
<timezone>+1</timezone>
52+
</developer>
53+
</developers>
54+
55+
<!-- BUILD -->
56+
57+
<properties>
58+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
59+
<junit.gen5.version>5.0.0-SNAPSHOT</junit.gen5.version>
60+
</properties>
61+
62+
<dependencies>
63+
<!-- JUNIT 5 -->
64+
<dependency>
65+
<groupId>org.junit.prototype</groupId>
66+
<artifactId>junit5-api</artifactId>
67+
<version>${junit.gen5.version}</version>
68+
<scope>test</scope>
69+
</dependency>
70+
<dependency>
71+
<groupId>org.junit.prototype</groupId>
72+
<artifactId>junit-console</artifactId>
73+
<version>${junit.gen5.version}</version>
74+
<scope>test</scope>
75+
</dependency>
76+
<dependency>
77+
<groupId>org.junit.prototype</groupId>
78+
<artifactId>junit5-engine</artifactId>
79+
<version>${junit.gen5.version}</version>
80+
<scope>test</scope>
81+
</dependency>
82+
83+
<dependency>
84+
<!-- MOCKITO to mock instances for automated tests -->
85+
<groupId>org.mockito</groupId>
86+
<artifactId>mockito-all</artifactId>
87+
<version>1.10.19</version>
88+
<scope>test</scope>
89+
</dependency>
90+
91+
<dependency>
92+
<!-- use ASSERTJ for better assertions -->
93+
<groupId>org.assertj</groupId>
94+
<artifactId>assertj-core</artifactId>
95+
<version>3.0.0</version>
96+
<scope>test</scope>
97+
</dependency>
98+
</dependencies>
99+
100+
<build>
101+
<plugins>
102+
<plugin>
103+
<groupId>org.apache.maven.plugins</groupId>
104+
<artifactId>maven-compiler-plugin</artifactId>
105+
<version>3.3</version>
106+
<configuration>
107+
<source>1.8</source>
108+
<target>1.8</target>
109+
</configuration>
110+
</plugin>
111+
<plugin>
112+
<groupId>org.codehaus.mojo</groupId>
113+
<artifactId>exec-maven-plugin</artifactId>
114+
<version>1.4.0</version>
115+
<executions>
116+
<execution>
117+
<phase>test</phase>
118+
<goals>
119+
<goal>exec</goal>
120+
</goals>
121+
<configuration>
122+
<executable>java</executable>
123+
<arguments>
124+
<argument>-classpath</argument>
125+
<classpath/>
126+
<argument>org.junit.gen5.console.ConsoleRunner</argument>
127+
<argument>--enable-exit-code</argument>
128+
<argument>--all</argument>
129+
</arguments>
130+
<classpathScope>test</classpathScope>
131+
</configuration>
132+
</execution>
133+
</executions>
134+
</plugin>
135+
</plugins>
136+
</build>
137+
138+
</project>

0 commit comments

Comments
 (0)