Skip to content

Commit

Permalink
Fix handling of OSGi qualified version.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdedwards committed Apr 24, 2016
1 parent 982f572 commit cae741a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 12 deletions.
2 changes: 1 addition & 1 deletion com.github.sdedwards.m2e-nar.repo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<name>NAR Maven Plugin Integration for Eclipse (update site)</name>

<build>
<finalName>m2e-nar-updatesite-${project.version}</finalName>
<finalName>m2e-nar-updatesite-${qualifiedVersion}</finalName>
<plugins>
<plugin>
<groupId>de.jutzig</groupId>
Expand Down
13 changes: 2 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -224,23 +224,14 @@ under the License.
<licenseFile>${project.basedir}/LICENSE</licenseFile>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.2</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<tagNameFormat>v@{project.version}</tagNameFormat>
</configuration>
</plugin>
<plugin>
<groupId>de.jutzig</groupId>
<artifactId>github-release-plugin</artifactId>
<version>1.1.1</version>
<configuration>
<description>First try at release</description>
<releaseName>v${project.version}</releaseName>
<tag>v${project.version}</tag>
<releaseName>v${unqualifiedVersion}</releaseName>
<tag>v${unqualifiedVersion}</tag>
<repositoryId>${github.repo.id}</repositoryId>
</configuration>
<executions>
Expand Down

0 comments on commit cae741a

Please sign in to comment.