Skip to content

Commit

Permalink
Merge pull request #21 from jamezp/updates
Browse files Browse the repository at this point in the history
Various updates
  • Loading branch information
jamezp authored Oct 23, 2023
2 parents c896e33 + 1399a24 commit db803eb
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 3 deletions.
20 changes: 20 additions & 0 deletions README.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
= RESTEasy Development Tools

This project simply contains a parent POM, which is an extension of the `org.jboss:jboss-parent`, a checkstyle
configuration file and some IDE configuration files.

== Releasing

This project is released directly to Maven Central. See the https://central.sonatype.org/publish/publish-guide/[Sonatype]
documentation on how to set up your local environment.

[source,bash]
----
RELEASE_VERSION="<your-version>"
mvn release:prepare -DreleaseVersion="${RELEASE_VERSION}"
git checkout ${RELEASE_VERSION}
mvn clean deploy -Prelease -Pmaven-central-release
----

This should be released to https://s01.oss.sonatype.org/#stagingRepositories. Follow the Nexus release process to
complete the release.
8 changes: 6 additions & 2 deletions parent-pom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.release>${maven.compiler.target}</maven.compiler.release>

<version.surefire.plugin>3.0.0-M7</version.surefire.plugin>
<version.nexus.staging.maven.plugin>1.6.13</version.nexus.staging.maven.plugin>
<version.formatter.maven.plugin>2.23.0</version.formatter.maven.plugin>
<version.impsort.maven.plugin>1.9.0</version.impsort.maven.plugin>
Expand Down Expand Up @@ -151,7 +150,12 @@

<profiles>
<profile>
<id>release</id>
<id>maven-central-release</id>
<activation>
<property>
<name>maven.central.release</name>
</property>
</activation>
<build>
<plugins>
<plugin>
Expand Down
1 change: 0 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@
</licenses>

<properties>
<version.release.plugin>3.0.0-M6</version.release.plugin>
<version.nexus.staging.maven.plugin>1.6.13</version.nexus.staging.maven.plugin>
</properties>

Expand Down

0 comments on commit db803eb

Please sign in to comment.