Skip to content

Commit

Permalink
Fix metadata for deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
dsyer committed Jul 22, 2011
1 parent b331232 commit 0de2979
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 5 deletions.
23 changes: 21 additions & 2 deletions pom.xml
Expand Up @@ -5,6 +5,8 @@
<artifactId>spring-retry</artifactId> <artifactId>spring-retry</artifactId>
<version>1.0.0.RELEASE</version> <version>1.0.0.RELEASE</version>
<name>Spring Retry</name> <name>Spring Retry</name>
<description><![CDATA[Spring Retry provides an abstraction around retrying failed operations, with an emphasis on declarative control of the process and policy-based bahaviour that is easy to extend and customize. For instance, you can configure a plain POJO operation to retry if it fails, based on the type of exception, and with a fixed or exponential backoff.
]]></description>
<url>http://www.springsource.org</url> <url>http://www.springsource.org</url>
<organization> <organization>
<name>SpringSource</name> <name>SpringSource</name>
Expand Down Expand Up @@ -76,6 +78,23 @@
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository> </repository>
</distributionManagement> </distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile> </profile>
</profiles> </profiles>


Expand Down Expand Up @@ -239,7 +258,7 @@
<goals> <goals>
<goal>jar</goal> <goal>jar</goal>
</goals> </goals>
<phase>deploy</phase> <phase>package</phase>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
Expand All @@ -251,7 +270,7 @@
<goals> <goals>
<goal>jar</goal> <goal>jar</goal>
</goals> </goals>
<phase>deploy</phase> <phase>package</phase>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
Expand Down
5 changes: 2 additions & 3 deletions template.mf
@@ -1,9 +1,8 @@
Bundle-SymbolicName: org.springframework.commons.retry Bundle-SymbolicName: org.springframework.retry
Bundle-Name: Spring Commons Retry Bundle-Name: Spring Retry
Bundle-Vendor: SpringSource Bundle-Vendor: SpringSource
Bundle-ManifestVersion: 2 Bundle-ManifestVersion: 2
Import-Template: Import-Template:
org.springframework.commons.*;version="[1.0.0, 2.0.0)",
org.springframework.beans.*;version="[3.0.0, 4.0.0)", org.springframework.beans.*;version="[3.0.0, 4.0.0)",
org.springframework.context.*;version="[3.0.0, 4.0.0)", org.springframework.context.*;version="[3.0.0, 4.0.0)",
org.springframework.core.*;version="[3.0.0, 4.0.0)", org.springframework.core.*;version="[3.0.0, 4.0.0)",
Expand Down

0 comments on commit 0de2979

Please sign in to comment.