Skip to content

Commit efb0988

Browse files
committed
Change to multi module project
Changes the project build to use multiple maven modules. This is in preparation for releasing some Failsafe modules.
1 parent 40f7e6a commit efb0988

File tree

199 files changed

+138
-31
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

199 files changed

+138
-31
lines changed

core/pom.xml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
6+
<parent>
7+
<groupId>dev.failsafe</groupId>
8+
<artifactId>failsafe-parent</artifactId>
9+
<version>3.2.1-SNAPSHOT</version>
10+
</parent>
11+
12+
<artifactId>failsafe</artifactId>
13+
<name>Failsafe</name>
14+
15+
<build>
16+
<plugins>
17+
<plugin>
18+
<artifactId>maven-jar-plugin</artifactId>
19+
<version>3.1.1</version>
20+
<executions>
21+
<execution>
22+
<goals>
23+
<goal>test-jar</goal>
24+
</goals>
25+
</execution>
26+
</executions>
27+
</plugin>
28+
</plugins>
29+
</build>
30+
</project>

0 commit comments

Comments
 (0)