File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,9 +16,6 @@ script:
1616before_deploy :
1717 - ./mvnw help:evaluate -N -Dexpression=project.version | grep -v '\['
1818 - export project_version=$(./mvnw help:evaluate -N -Dexpression=project.version | grep -v '\[')
19- - echo "${GPG_SECRET_KEYS}" | base64 --decode | "${GPG_EXECUTABLE}" --batch --passphrase "${GPG_PASSPHRASE}" --import
20- - echo "${GPG_OWNERTRUST}" | base64 --decode | "${GPG_EXECUTABLE}" --batch --passphrase "${GPG_PASSPHRASE}" --import-ownertrust
21- - ./mvnw -DskipTests -Dmaven.test.skip=true -Dfindbugs.skip=true -Dpmd.skip=true -Dcheckstyle.skip -Dmaven.javadoc.skip=false --settings .settings.xml deploy -B
2219
2320deploy :
2421 provider : releases
Original file line number Diff line number Diff line change @@ -11,10 +11,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1111
1212- Add different logging frameworks.
1313
14- ## [ 1.1.5] ( https://github.com/appulse-projects/logging-java/releases/tag/1.1.5 ) - 2020-02-28
15-
16- Deploy test version. Nothing changed since ** 1.1.3** .
17-
1814## [ 1.1.3] ( https://github.com/appulse-projects/logging-java/releases/tag/1.1.3 ) - 2020-02-25
1915
2016### Changed
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ Just add dependency to your project.
1818 <dependency >
1919 <groupId >io.appulse</groupId >
2020 <artifactId >logging-java</artifactId >
21- <version >1.1.5 </version >
21+ <version >1.1.3 </version >
2222 </dependency >
2323 ...
2424</dependencies >
@@ -27,7 +27,7 @@ Just add dependency to your project.
2727** Gradle** :
2828
2929``` groovy
30- compile 'io.appulse:logging-java:1.1.5 '
30+ compile 'io.appulse:logging-java:1.1.3 '
3131```
3232
3333And use it as usual:
@@ -145,6 +145,31 @@ $> mvn clean test
145145
146146Also, if you do ` package ` or ` install ` goals, the tests launch automatically.
147147
148+ ## Deploy
149+
150+ To deploy the project in Maven Central, use the following command:
151+
152+ ``` bash
153+ $> ./mvnw \
154+ -DskipTests \
155+ -Dmaven.test.skip=true \
156+ -Dfindbugs.skip=true \
157+ -Dpmd.skip=true \
158+ -Dcheckstyle.skip \
159+ -Dmaven.javadoc.skip=false \
160+ --settings .settings.xml \
161+ deploy -B
162+ ```
163+
164+ It maybe usefull to import ` gpg ` 's secret keys and ownertrust from somewhere:
165+
166+ ``` bash
167+ $> echo " ${GPG_SECRET_KEYS} " | base64 --decode | " ${GPG_EXECUTABLE} " --batch --passphrase " ${GPG_PASSPHRASE} " --import
168+ ...
169+ $> echo " ${GPG_OWNERTRUST} " | base64 --decode | " ${GPG_EXECUTABLE} " --batch --passphrase " ${GPG_PASSPHRASE} " --import-ownertrust
170+ ...
171+ ```
172+
148173## Built With
149174
150175* [ Java] ( http://www.oracle.com/technetwork/java/javase ) - is a systems and applications programming language
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ limitations under the License.
2424
2525 <groupId >io.appulse</groupId >
2626 <artifactId >logging-java</artifactId >
27- <version >1.1.5 </version >
27+ <version >1.1.3 </version >
2828 <packaging >jar</packaging >
2929
3030 <properties >
@@ -66,7 +66,7 @@ limitations under the License.
6666 <url >https://github.com/appulse-projects/logging-java</url >
6767 <connection >scm:git:https://github.com/appulse-projects/logging-java.git</connection >
6868 <developerConnection >scm:git:https://github.com/appulse-projects/logging-java.git</developerConnection >
69- <tag >1.1.5 </tag >
69+ <tag >1.1.3 </tag >
7070 </scm >
7171
7272 <distributionManagement >
You can’t perform that action at this time.
0 commit comments