Skip to content

Commit

Permalink
Use includeScopes not excludeScopes
Browse files Browse the repository at this point in the history
  • Loading branch information
pickypg committed Jul 24, 2024
1 parent f1685cd commit e5edf08
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,6 @@
<version>5.3.0</version>
</dependency>


<dependency>
<groupId>org.beryx</groupId>
<artifactId>text-io</artifactId>
Expand Down Expand Up @@ -293,7 +292,7 @@
<goal>copy-dependencies</goal>
</goals>
<configuration>
<excludeScope>test</excludeScope>
<includeScope>compile</includeScope>
<outputDirectory>${project.build.directory}/lib</outputDirectory>
</configuration>
</execution>
Expand Down Expand Up @@ -438,17 +437,18 @@
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
Expand Down

0 comments on commit e5edf08

Please sign in to comment.