Skip to content

Commit

Permalink
cleans substitution ans adds -X to mvn CI
Browse files Browse the repository at this point in the history
  • Loading branch information
emmanuelbruno committed Jun 5, 2023
1 parent a6fc187 commit f1c2237
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ jobs:
secrets: inherit
with:
maven-args: --errors --batch-mode --show-version --update-snapshots --settings ci-settings.xml --color always --no-transfer-progress --activate-profiles github,nexus
verify-goal: --activate-profiles github,nexus,gpgsigning verify
verify-goal: -X --activate-profiles github,nexus,gpgsigning verify
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ jobs:
secrets: inherit
with:
maven-args: --errors --batch-mode --show-version --update-snapshots --settings ci-settings.xml --color always --no-transfer-progress
verify-goal: --activate-profiles jacoco,javadoc,gpgsigning verify
verify-goal: -X --activate-profiles jacoco,javadoc,gpgsigning verify
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package $package;
package ${package};

import lombok.extern.slf4j.Slf4j;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* A simple jigsaw module
*/
module $package.$artifactId {
module ${package}.${artifactId} {
requires org.slf4j;
requires ch.qos.logback.classic;
requires static lombok;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
* A simple package documentation
*/
package $package;
package ${package};
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package $package;
package ${package};

import static org.junit.jupiter.api.Assertions.*;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package $package;
package ${package};

import org.junit.jupiter.api.Test;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package $package;
package ${package};

import lombok.extern.slf4j.Slf4j;
import org.junit.jupiter.api.*;
Expand Down
6 changes: 4 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,14 @@
<repository>
<id>github</id>
<name>GitHub Packages</name>
<url>https://maven.pkg.github.com/${github.account}/${project.artifactId}</url>
<!--url>https://maven.pkg.github.com/${github.account}/${project.artifactId}</url-->
<url>https://maven.pkg.github.com/ebpro/maven-archetypes</url>
</repository>
<snapshotRepository>
<id>github</id>
<name>GitHub Packages</name>
<url>https://maven.pkg.github.com/${github.account}/${project.artifactId}</url>
<!--url>https://maven.pkg.github.com/${github.account}/${project.artifactId}</url-->
<url>https://maven.pkg.github.com/ebpro/maven-archetypes</url>
</snapshotRepository>

<site>
Expand Down

0 comments on commit f1c2237

Please sign in to comment.