File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2121 env :
2222 MAVEN_USERNAME : ${{ secrets.OSSRH_USERNAME }}
2323 MAVEN_PASSWORD : ${{ secrets.OSSRH_TOKEN }}
24- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
24+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
25+ ORG_GRADLE_PROJECT_signingKey : ${{ secrets.OSSRH_GPG_SECRET_KEY }}
26+ ORG_GRADLE_PROJECT_signingPassword : ${{ secrets.OSSRH_GPG_SECRET_KEY_PASSWORD }}
Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ Reference implementation of an agent library written in Java. This library handl
99* Extend the ` AbstractChronosAgent ` class, call ` YourClass.start() ` in your ` main ` method, and you are good to go!
1010 > Assuming that you already have a running [ Chronos Control] ( https://github.com/Chronos-EaaS/Chronos-Control/ ) instance
1111
12- >
1312
1413## Roadmap
1514See the [ open issues] ( https://github.com/Chronos-EaaS/Chronos-Agent/issues ) for a list of proposed features (and known issues).
Original file line number Diff line number Diff line change 6868
6969signing {
7070 required { gradle. taskGraph. hasTask(" publish" ) }
71+ def signingKey = findProperty(" signingKey" )
72+ def signingPassword = findProperty(" signingPassword" )
73+ useInMemoryPgpKeys(signingKey, signingPassword)
7174 sign configurations. archives
7275}
7376
@@ -94,6 +97,13 @@ publishing {
9497 scm {
9598 url = ' https://github.com/Chronos-EaaS/Chronos-Agent/'
9699 }
100+ developers {
101+ developer {
102+ id = ' chronos'
103+ name = ' Chronos'
104+ email = ' mail@chronos-eaas.org'
105+ }
106+ }
97107 }
98108 }
99109 }
You can’t perform that action at this time.
0 commit comments