Skip to content

Commit caa4c85

Browse files
committed
first try
1 parent cd72894 commit caa4c85

2 files changed

Lines changed: 67 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,6 @@ jobs:
4040
-Dversion=1.2.1 \
4141
-Dpackaging=jar \
4242
-DgeneratePom=true
43-
- run: ls -al .
43+
- run: rm -r src/main/java
44+
- run: ./mvnw test -f pom.test.xml
4445

pom.test.xml

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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+
5+
<parent>
6+
<groupId>com.github.stefanbirkner</groupId>
7+
<artifactId>lib-parent</artifactId>
8+
<version>16</version>
9+
</parent>
10+
11+
<artifactId>system-lambda-jdk-test</artifactId>
12+
<version>0-SNAPSHOT</version>
13+
<packaging>jar</packaging>
14+
15+
<properties>
16+
<findbugs.excludeFilterFile>findbugs-exclude.xml</findbugs.excludeFilterFile>
17+
<maven.compiler.source>17</maven.compiler.source>
18+
<maven.compiler.target>17</maven.compiler.target>
19+
</properties>
20+
21+
<dependencies>
22+
<dependency>
23+
<groupId>com.github.stefanbirkner</groupId>
24+
<artifactId>system-lambda</artifactId>
25+
<version>1.2.1</version>
26+
</dependency>
27+
<dependency>
28+
<groupId>com.github.stefanbirkner</groupId>
29+
<artifactId>fishbowl</artifactId>
30+
<version>1.4.1</version>
31+
<scope>test</scope>
32+
</dependency>
33+
<dependency>
34+
<groupId>org.apache.commons</groupId>
35+
<artifactId>commons-lang3</artifactId>
36+
<version>3.10</version>
37+
<scope>test</scope>
38+
</dependency>
39+
<dependency>
40+
<groupId>org.assertj</groupId>
41+
<artifactId>assertj-core</artifactId>
42+
<version>3.16.1</version>
43+
<scope>test</scope>
44+
</dependency>
45+
<dependency>
46+
<groupId>org.junit.jupiter</groupId>
47+
<artifactId>junit-jupiter</artifactId>
48+
<version>5.6.2</version>
49+
<scope>test</scope>
50+
</dependency>
51+
</dependencies>
52+
53+
<build>
54+
<plugins>
55+
<plugin>
56+
<artifactId>maven-surefire-plugin</artifactId>
57+
<version>3.0.0-M5</version>
58+
<configuration>
59+
<forkCount>1</forkCount>
60+
<reuseForks>false</reuseForks>
61+
</configuration>
62+
</plugin>
63+
</plugins>
64+
</build>
65+
</project>

0 commit comments

Comments
 (0)