-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2 main workarounds: - remove Java 8 code causing coverage plugins to fail - override plugins improperly set in parent POM (see assertj/assertj-parent-pom#38)
- Loading branch information
Florent Biville
committed
Jun 26, 2019
1 parent
f81f372
commit 726b2e1
Showing
2 changed files
with
29 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,20 +6,20 @@ | |
<version>2.0.2-SNAPSHOT</version> | ||
<name>AssertJ fluent assertions for Neo4j</name> | ||
<url>http://www.assertj.org/assertj-neo4j.html</url> | ||
|
||
<parent> | ||
<groupId>org.assertj</groupId> | ||
<artifactId>assertj-parent-pom</artifactId> | ||
<version>2.1.6</version> | ||
<version>2.2.3</version> | ||
</parent> | ||
|
||
<scm> | ||
<developerConnection>scm:git:[email protected]:joel-costigliola/assertj-neo4j.git</developerConnection> | ||
<connection>scm:git:[email protected]:joel-costigliola/assertj-neo4j.git</connection> | ||
<url>[email protected]:joel-costigliola/assertj-neo4j</url> | ||
<tag>HEAD</tag> | ||
</scm> | ||
|
||
<issueManagement> | ||
<system>github</system> | ||
<url>https://github.com/joel-costigliola/assertj-neo4j/issues</url> | ||
|
@@ -29,7 +29,7 @@ | |
<maven.compiler.showDeprecation>true</maven.compiler.showDeprecation> | ||
<maven.compiler.showWarnings>true</maven.compiler.showWarnings> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.assertj</groupId> | ||
|
@@ -53,7 +53,7 @@ | |
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
|
@@ -83,8 +83,26 @@ | |
</executions> | ||
</plugin> | ||
</plugins> | ||
<pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-site-plugin</artifactId> | ||
<version>3.7.1</version> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
</build> | ||
|
||
<reporting> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-project-info-reports-plugin</artifactId> | ||
<version>3.0.0</version> | ||
</plugin> | ||
</plugins> | ||
</reporting> | ||
|
||
<profiles> | ||
<profile> | ||
<id>coverage</id> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters