Skip to content

Commit

Permalink
✅ deploy ossrh,-example
Browse files Browse the repository at this point in the history
  • Loading branch information
trydofor committed Jan 13, 2024
1 parent 2a91f6c commit 1939657
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
type: boolean
required: false
testFailureIgnore:
description: 'test failure.ignore?'
description: 'test ignore failure?'
default: false
type: boolean
required: false
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
- name: Maven Deploy
run: >
mvn
-P ossrh
-P ossrh,-example
${{ steps.opt-revision.outputs.OPT_REVISION }}
-Dgpg.passphrase=${MVN_GPG_PASS}
clean deploy
Expand Down
13 changes: 11 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@
<coveralls-maven-plugin.version>4.3.0</coveralls-maven-plugin.version> <!-- https://github.com/hazendaz/coveralls-maven-plugin -->
<jacoco-maven-plugin.version>0.8.11</jacoco-maven-plugin.version> <!-- https://www.jacoco.org/jacoco/trunk/doc/maven.html -->
<testing-json>{}</testing-json>
<argLine></argLine>
<argLine/> <!-- surefire:argLine -->
<surefireArgLine/> <!-- jacoco-agent:argLine -->
<wings.java-opens>
--add-modules=java.se <!-- Hazelcast -->
--add-opens=java.base/java.io=ALL-UNNAMED <!-- FastJson -->
Expand Down Expand Up @@ -111,7 +112,6 @@

<modules>
<module>wings</module>
<module>example</module>
<module>radiant</module>
</modules>

Expand Down Expand Up @@ -959,5 +959,14 @@
</repository>
</distributionManagement>
</profile>
<profile>
<id>example</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<modules>
<module>example</module>
</modules>
</profile>
</profiles>
</project>

0 comments on commit 1939657

Please sign in to comment.