Skip to content

Commit a188b94

Browse files
committed
prepared pom for maven central, gpg stuff is not fully configured
1 parent c739620 commit a188b94

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

pom.xml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,13 @@
1414
<version>0.1-SNAPSHOT</version>
1515
<packaging>jar</packaging>
1616

17+
<name>Selenium Download Helper library</name>
18+
<description>This library can be used in tests to download files inside the context of the page trough javascript.
19+
Note that this might not be supported for every browser implementation or if javascript is turned off.
20+
</description>
21+
<url>https://github.com/rac2030/SeleniumDownloadHelper</url>
22+
23+
1724
<properties>
1825
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1926
<selenium.version>2.42.2</selenium.version>
@@ -83,5 +90,27 @@
8390
</plugin-->
8491
</plugins>
8592
</build>
93+
<profiles>
94+
<profile>
95+
<id>sign</id>
96+
<build>
97+
<plugins>
98+
<!-- See http://maven.apache.org/plugins/maven-gpg-plugin/ -->
99+
<plugin>
100+
<artifactId>maven-gpg-plugin</artifactId>
101+
<version>1.4</version>
102+
<executions>
103+
<execution>
104+
<phase>install</phase>
105+
<goals>
106+
<goal>sign</goal>
107+
</goals>
108+
</execution>
109+
</executions>
110+
</plugin>
111+
</plugins>
112+
</build>
113+
</profile>
114+
</profiles>
86115

87116
</project>

0 commit comments

Comments
 (0)