Skip to content

Commit d5af69f

Browse files
committed
preparations for beta
1 parent b59edc3 commit d5af69f

File tree

3 files changed

+24
-18
lines changed

3 files changed

+24
-18
lines changed

BUILD.rest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Building
22
--------
33

44
Maven is used as build tool for jrobotremoteserver.
5-
You can simply do a 'mvn clean package' in the project directory.
5+
You can simply do a 'mvn clean package javadoc:jar' in the project directory.
66

77
Robot Tests
88
-----------

README.rest

Lines changed: 5 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,7 @@
1-
*************************************************************
2-
jrobotremoteserver - A Robot Framework Remote Server for Java
3-
*************************************************************
1+
******************
2+
jrobotremoteserver
3+
******************
44

5-
This is a fork that is in an early development stage.
5+
jrobotremoteserver is a remote server for Robot Framework implemented in Java.
66

7-
See the release version of jrobotremoteserver_
8-
9-
.. _jrobotremoteserver: http://code.google.com/p/jrobotremoteserver/
10-
11-
Planned features include:
12-
13-
#. Maven built w/ all dependencies in major repos
14-
#. Programmatic usage
15-
#. Multiple libraries
16-
#. Support for dynamic API libraries
7+
Documentation can be found on the project `wiki <https://github.com/ombre42/jrobotremoteserver/wiki>`_.

pom.xml

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,29 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
4-
<groupId>org.robotframework</groupId>
4+
<groupId>com.github.ombre42</groupId>
55
<artifactId>remoteserver</artifactId>
6-
<version>0.0.1-SNAPSHOT</version>
6+
<version>2.0-BETA</version>
77
<packaging>jar</packaging>
88
<name>jrobotremoteserver</name>
9-
<url>http://code.google.com/p/jrobotremoteserver/</url>
9+
<url>https://github.com/ombre42/jrobotremoteserver</url>
1010
<licenses>
1111
<license>
1212
<name>Apache 2</name>
1313
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
1414
<distribution>repo</distribution>
1515
</license>
1616
</licenses>
17+
<developers>
18+
<developer>
19+
<name>Kevin Ormbrek</name>
20+
<email>[email protected]</email>
21+
</developer>
22+
<developer>
23+
<name>David Luu</name>
24+
<email>[email protected]</email>
25+
</developer>
26+
</developers>
1727
<properties>
1828
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1929
</properties>
@@ -97,4 +107,9 @@
97107
</plugins>
98108
</build>
99109
<description>Serves remote test libraries for Robot Framework that are implemented in Java.</description>
110+
<scm>
111+
<connection>scm:git:[email protected]:ombre42/jrobotremoteserver.git</connection>
112+
<developerConnection>scm:git:[email protected]:ombre42/jrobotremoteserver.git</developerConnection>
113+
<url>[email protected]:ombre42/jrobotremoteserver.git</url>
114+
</scm>
100115
</project>

0 commit comments

Comments
 (0)