Skip to content

Commit 804cb7f

Browse files
committed
Upladed Javadocs
1 parent d141f38 commit 804cb7f

File tree

3 files changed

+49
-1
lines changed

3 files changed

+49
-1
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,12 @@ Now you can grab jars with the following dependency in your POM:
4141
<version>1.0.0-SNAPSHOT</version>
4242
</dependency>
4343

44+
## Documentation
45+
46+
### API Docs
47+
48+
* http://cukes.info/cucumber/jvm/api/1.0.0-SNAPSHOT/apidocs/ (URL subject to change)
49+
4450
## Examples
4551

4652
You will find an example in Git under examples/java-calculator. You should be able to run `basic_arithmetic.feature` by running the `cucumber.examples.java.calculator.basic_arithmetic_Test` JUnit test from your IDE. -Or simply by running it with Maven: `mvn clean install -P examples` once to build it all. Then `cd examples/java-calculator` followed by `mvn test` each time you make a change. Try to make the feature fail!
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1+
<body>
12
<p>
23
This package contains Locale-aware alternatives to some of XStream's (non-Locale-aware) built-in converters.
34
This allows users to write numbers, dates etc. in Gherkin, using the Locale that is associated with the Gherkin
45
source.
5-
</p>
6+
</p>
7+
</body>

pom.xml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,12 @@
3030
<developerConnection>scm:git:git@github.com:cucumber/cucumber-jvm.git</developerConnection>
3131
<url>git://github.com/cucumber/cucumber-jvm.git</url>
3232
</scm>
33+
<distributionManagement>
34+
<site>
35+
<id>cukes</id>
36+
<url>scp://cukes.info/var/www/cucumber_site/cucumber/jvm/api/${project.version}</url>
37+
</site>
38+
</distributionManagement>
3339
<dependencyManagement>
3440
<dependencies>
3541
<dependency>
@@ -292,6 +298,7 @@
292298
<plugin>
293299
<groupId>org.apache.maven.plugins</groupId>
294300
<artifactId>maven-compiler-plugin</artifactId>
301+
<version>2.3.2</version>
295302
<configuration>
296303
<encoding>UTF-8</encoding>
297304
<source>1.6</source>
@@ -300,6 +307,7 @@
300307
</plugin>
301308
</plugins>
302309
</pluginManagement>
310+
303311
<plugins>
304312
<plugin>
305313
<groupId>org.apache.maven.plugins</groupId>
@@ -314,6 +322,38 @@
314322
</execution>
315323
</executions>
316324
</plugin>
325+
326+
<plugin>
327+
<groupId>org.apache.maven.plugins</groupId>
328+
<artifactId>maven-gpg-plugin</artifactId>
329+
<version>1.1</version>
330+
<configuration>
331+
<useAgent>true</useAgent>
332+
</configuration>
333+
<executions>
334+
<execution>
335+
<id>sign-artifacts</id>
336+
<phase>verify</phase>
337+
<goals>
338+
<goal>sign</goal>
339+
</goals>
340+
</execution>
341+
</executions>
342+
</plugin>
343+
344+
<plugin>
345+
<groupId>org.apache.maven.plugins</groupId>
346+
<artifactId>maven-site-plugin</artifactId>
347+
<version>3.0</version>
348+
</plugin>
317349
</plugins>
350+
351+
<extensions>
352+
<extension>
353+
<groupId>org.apache.maven.wagon</groupId>
354+
<artifactId>wagon-ssh</artifactId>
355+
<version>1.0</version>
356+
</extension>
357+
</extensions>
318358
</build>
319359
</project>

0 commit comments

Comments
 (0)