Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: #272 add junit-pioneer dependency to test modules #274

Merged
merged 1 commit into from
Oct 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading