Skip to content

Commit

Permalink
Set version to 4.5 for release
Browse files Browse the repository at this point in the history
  • Loading branch information
noboomu committed Mar 13, 2020
1 parent d898140 commit 009626f
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 18 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ Proteus Changelog.
## Unreleased
### No issue

**Prep for release.**


[d898140ed9505e9](https://github.com/noboomu/proteus/commit/d898140ed9505e9) Joshua Bauer *2020-03-13 22:18:30*

**Updated swagger ui.**


Expand Down
42 changes: 27 additions & 15 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>io.sinistral</groupId>
<artifactId>proteus-project</artifactId>
<packaging>pom</packaging>
<version>0.4.4</version>
<version>0.4.5</version>
<name>Proteus Project</name>

<description>Proteus is an extremely light, fast, and flexible Java REST API framework built atop Undertow.</description>
Expand Down Expand Up @@ -162,16 +162,6 @@
<!-- </repositories>-->


<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>

<repositories>
<repository>
Expand Down Expand Up @@ -299,7 +289,7 @@
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
<autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
</plugin>

Expand Down Expand Up @@ -382,15 +372,15 @@
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
<autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>${maven-release-plugin.version}</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<autoVersionSubmodules>false</autoVersionSubmodules>
<tagNameFormat>v@{project.version}</tagNameFormat>
<releaseProfiles>ossrh</releaseProfiles>
<goals>deploy</goals>
Expand Down Expand Up @@ -456,6 +446,11 @@
<profiles>

<profile>
<activation>
<file>
<exists>pom.xml</exists>
</file>
</activation>
<id>central</id>
<build>
<plugins>
Expand Down Expand Up @@ -522,7 +517,7 @@
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
<autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
Expand All @@ -531,4 +526,21 @@


</profiles>


<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<name>Sonatype Nexus Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<name>Nexus Release Repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<downloadUrl>https://oss.sonatype.org/content/groups/public/io/sinistral/proteus-project</downloadUrl>

</distributionManagement>

</project>
2 changes: 1 addition & 1 deletion proteus-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>proteus-project</artifactId>
<groupId>io.sinistral</groupId>
<version>0.4.4</version>
<version>0.4.5</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion proteus-openapi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>proteus-project</artifactId>
<groupId>io.sinistral</groupId>
<version>0.4.4</version>
<version>0.4.5</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion proteus-swagger/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>proteus-project</artifactId>
<groupId>io.sinistral</groupId>
<version>0.4.4</version>
<version>0.4.5</version>

</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down

0 comments on commit 009626f

Please sign in to comment.