Skip to content

Commit

Permalink
Create tests jar files
Browse files Browse the repository at this point in the history
So the test config can be used by
repos using pass-core for testing
  • Loading branch information
rpoet-jh committed Oct 28, 2024
1 parent f8975d8 commit 59fcd71
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
19 changes: 19 additions & 0 deletions pass-core-main/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,25 @@

<build>
<plugins>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>${maven-jar-plugin.version}</version>
<configuration>
<excludes>
<exclude>**/logback-test.xml</exclude>
</excludes>
</configuration>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@

<properties>
<maven-dependency-plugin.version>3.6.1</maven-dependency-plugin.version>
<maven-jar-plugin.version>3.3.0</maven-jar-plugin.version>
<spring-boot-maven-plugin.version>3.2.2</spring-boot-maven-plugin.version>
<awsspring.version>3.1.0</awsspring.version>
<amazon.pom.version>2.25.16</amazon.pom.version>
Expand Down

0 comments on commit 59fcd71

Please sign in to comment.