Skip to content

Commit

Permalink
chore: #272 add junit-pioneer dependency to test modules (#274)
Browse files Browse the repository at this point in the history
  • Loading branch information
FanJups authored Oct 14, 2024
1 parent 11857a0 commit 833dbea
Show file tree
Hide file tree
Showing 7 changed files with 39 additions and 3 deletions.
8 changes: 7 additions & 1 deletion jsgenerator-test/jsgenerator-test-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,11 @@
<artifactId>spring-security-test</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.junit-pioneer</groupId>
<artifactId>junit-pioneer</artifactId>
</dependency>

</dependencies>
</project>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

requires org.assertj.core;
requires org.junit.jupiter.api;
requires org.junitpioneer;

requires org.apache.tomcat.embed.core;

Expand Down
5 changes: 5 additions & 0 deletions jsgenerator-test/jsgenerator-test-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,10 @@
<groupId>com.osscameroon</groupId>
<artifactId>jsgenerator-core</artifactId>
</dependency>
<dependency>
<groupId>org.junit-pioneer</groupId>
<artifactId>junit-pioneer</artifactId>
</dependency>

</dependencies>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,6 @@

requires org.slf4j;
requires spring.core;

requires org.junitpioneer;
}
14 changes: 13 additions & 1 deletion jsgenerator-test/jsgenerator-test-desktop/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,16 @@

<artifactId>jsgenerator-test-desktop</artifactId>

</project>
<dependencies>
<dependency>
<groupId>com.osscameroon</groupId>
<artifactId>jsgenerator-core</artifactId>
</dependency>
<dependency>
<groupId>org.junit-pioneer</groupId>
<artifactId>junit-pioneer</artifactId>
</dependency>
</dependencies>


</project>
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,7 @@
exports com.osscameroon.jsgenerator.test.desktop;
opens com.osscameroon.jsgenerator.test.desktop;

}
requires com.osscameroon.jsgenerator.core;
requires org.junitpioneer;

}
7 changes: 7 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
<!-- GitHub OAuth token & server : Generating github gh pages & maven project documents -->
<github.global.server>github</github.global.server>
<github.global.oauth2Token>${env.MAVEN_SITE_GITHUB_OAUTH_TOKEN}</github.global.oauth2Token>
<junitPioneer.version>2.3.0</junitPioneer.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -89,6 +90,12 @@
<artifactId>jsgenerator-slim-cli</artifactId>
<version>${revision}</version>
</dependency>
<dependency>
<groupId>org.junit-pioneer</groupId>
<artifactId>junit-pioneer</artifactId>
<version>${junitPioneer.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down

0 comments on commit 833dbea

Please sign in to comment.