Surok112 / robotframework-maven-plugin

Automatically exported from code.google.com/p/robotframework-maven-plugin
0 stars 0 forks source link

Plugin unnecessarily requires Java 6 #7

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Run the plugin with Java 5 (Java Home = 1.5 JDK)
2. Error is shown: String.isEmpty: no such method

What is the expected output? What do you see instead?
Should work with Java 1.5 (unfortunately, we can not upgrade any time soon)
Please use the following in the POM, it seems to work flawlessly, at least with 
the trunk sources.

<plugin>
    <inherited>true</inherited>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <configuration>
        <source>1.5</source>
        <target>1.5</target>
    </configuration>
</plugin>

What version of the product are you using? On what operating system?
1.1-SNAPSHOT

Original issue reported on code.google.com by dietrich...@gmail.com on 24 Mar 2011 at 12:13

GoogleCodeExporter commented 8 years ago
will modify version to comply with java 5

Original comment by mrmall...@gmail.com on 31 Mar 2011 at 12:49

GoogleCodeExporter commented 8 years ago
checked in to trunk and new snapshot.

btw, if you would like to help out, i could give you commit rights if you want 
:-)

Original comment by mrmall...@gmail.com on 1 Apr 2011 at 5:22

GoogleCodeExporter commented 8 years ago
[deleted comment]
GoogleCodeExporter commented 8 years ago
[deleted comment]
GoogleCodeExporter commented 8 years ago
Sure, I would be glad to commit, if I can solve something. I want 1.1 out soon 
;-)

Original comment by dietrich...@gmail.com on 3 Apr 2011 at 5:08

GoogleCodeExporter commented 8 years ago
Runs with Java 5 now

Original comment by dietrich...@gmail.com on 9 Apr 2011 at 5:18