You are viewing a plain text version of this content. The canonical link for it is here.
Posted to photark-dev@incubator.apache.org by "Pascal GILLET (Updated) (JIRA)" <ji...@apache.org> on 2012/04/18 23:06:40 UTC

[jira] [Updated] (PHOTARK-79) core JAX-WS API not present in JDK 1.5

     [ https://issues.apache.org/jira/browse/PHOTARK-79?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Pascal GILLET updated PHOTARK-79:
---------------------------------

    Attachment: photark-flickr-pom.patch

Path file for the POM of the photark-flickr project
                
> core JAX-WS API not present in JDK 1.5
> --------------------------------------
>
>                 Key: PHOTARK-79
>                 URL: https://issues.apache.org/jira/browse/PHOTARK-79
>             Project: PhotArk
>          Issue Type: Bug
>          Components: Build Infrastructure
>    Affects Versions: PhotArk M1
>         Environment: JDK 1.5
>            Reporter: Pascal GILLET
>            Priority: Minor
>              Labels: patch
>             Fix For: PhotArk M1
>
>         Attachments: photark-flickr-pom.patch
>
>
> On the PhotArk Developer Guide, it is said that the required version of the JDK is at least 1.5. But in this case, the photark-flickr component cannot compile as the class javax.xml.ws.http.HTTPException, that is part of the JAX-WS API, is not included in the Java 5 API.
> The dependency to the JAX-WS API should be added in the POM within a profile automatically triggered when the JDK's version is 1.5, as following:
> <profiles>
>    <profile>
>       <id>jdk15</id>
>       <activation>
>          <jdk>1.5</jdk>
>       </activation>
>       <dependencies>
>          <dependency>
>             <groupId>javax.xml.ws</groupId>
>             <artifactId>jaxws-api</artifactId>
>             <version>2.2.8</version>
>          </dependency>
>       </dependencies>
>    </profile>
> </profiles>
> OR the required JDK's version should be 6.0 at least...

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira