5
0
mirror of https://github.com/apache/sqoop.git synced 2025-05-08 12:01:09 +08:00

SQOOP-803: Add gpg profile to pom file so that we can easily deploy artifacts to mvn repository

(Jarek Jarcec Cecho via Cheolsoo Park)
This commit is contained in:
Cheolsoo Park 2013-01-04 02:05:23 -08:00
parent 4cefb88d14
commit 1f3f127b64

22
pom.xml
View File

@ -184,6 +184,28 @@ limitations under the License.
</dependencies>
</dependencyManagement>
</profile>
<!-- Sign profile for releasing artifacts to Nexus repository -->
<profile>
<id>sign</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<dependencyManagement>