Skip to content

Commit

Permalink
Release v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sdedwards committed May 15, 2015
1 parent d9d764c commit 65664ad
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 10 deletions.
2 changes: 1 addition & 1 deletion com.github.sdedwards.m2e-nar.feature/feature.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<feature
id="com.github.sdedwards.m2e-nar.feature"
label="M2E NAR"
version="1.0.0.qualifier"
version="1.0.0"
provider-name="sdedwards">

<description>
Expand Down
2 changes: 1 addition & 1 deletion com.github.sdedwards.m2e-nar.feature/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.github.sdedwards.m2e-nar</groupId>
<artifactId>m2e-nar</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
</parent>

<artifactId>com.github.sdedwards.m2e-nar.feature</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion com.github.sdedwards.m2e-nar.repo/category.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<site>
<feature url="features/com.github.sdedwards.m2e-nar.feature_1.0.0.qualifier.jar" id="com.github.sdedwards.m2e-nar.feature" version="1.0.0.qualifier">
<feature url="features/com.github.sdedwards.m2e-nar.feature_1.0.0.jar" id="com.github.sdedwards.m2e-nar.feature" version="1.0.0">
<category name="m2e-nar"/>
</feature>
<category-def name="m2e-nar" label="NAR Maven Plugin Integration for Eclipse">
Expand Down
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 @@ -6,7 +6,7 @@
<parent>
<groupId>com.github.sdedwards.m2e-nar</groupId>
<artifactId>m2e-nar</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
</parent>

<artifactId>com.github.sdedwards.m2e-nar.repo</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion com.github.sdedwards.m2e-nar.tests/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: m2e-nar-test
Bundle-SymbolicName: com.github.sdedwards.m2e-nar.test
Bundle-Version: 1.0.0.qualifier
Bundle-Version: 1.0.0
Bundle-Vendor: sdedwards
Fragment-Host: com.github.sdedwards.m2e-nar;bundle-version="1.0.0"
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Expand Down
2 changes: 1 addition & 1 deletion com.github.sdedwards.m2e-nar.tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.github.sdedwards.m2e-nar</groupId>
<artifactId>m2e-nar</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
</parent>

<artifactId>com.github.sdedwards.m2e-nar.test</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion com.github.sdedwards.m2e-nar/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: m2e-nar
Bundle-SymbolicName: com.github.sdedwards.m2e-nar;singleton:=true
Bundle-Version: 1.0.0.qualifier
Bundle-Version: 1.0.0
Require-Bundle: org.eclipse.core.runtime,
org.eclipse.core.resources,
org.eclipse.debug.core,
Expand Down
2 changes: 1 addition & 1 deletion com.github.sdedwards.m2e-nar/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.github.sdedwards.m2e-nar</groupId>
<artifactId>m2e-nar</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
</parent>

<artifactId>com.github.sdedwards.m2e-nar</artifactId>
Expand Down
18 changes: 16 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ under the License.

<groupId>com.github.sdedwards.m2e-nar</groupId>
<artifactId>m2e-nar</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<packaging>pom</packaging>

<name>NAR Maven Plugin Integration for Eclipse (parent)</name>
Expand Down Expand Up @@ -238,10 +238,24 @@ under the License.
<artifactId>github-release-plugin</artifactId>
<version>1.1.1</version>
<configuration>
<description>Eclispe update site</description>
<description>First try at release</description>
<releaseName>v${project.version}</releaseName>
<tag>v${project.version}</tag>
<repositoryId>sdedwards/m2e-nar</repositoryId>
</configuration>
<executions>
<execution>
<id>github-release</id>
<goals>
<goal>release</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-versions-plugin</artifactId>
<version>${tycho-version}</version>
</plugin>
</plugins>
</pluginManagement>
Expand Down

0 comments on commit 65664ad

Please sign in to comment.