[jboss-dev] Wrong jaxws-api artifact on repository?

Alessio Soldano asoldano at redhat.com
Tue Oct 7 10:39:29 EDT 2008


Hi,
I've just found that the jaxws-api maven artifact has been 
uploaded/re-uploaded to the repository yesterday. I think its pom.xml is 
missing some dependencies, as it says:

<project>
  <modelVersion>4.0.0</modelVersion>
  <groupId>javax.xml.ws</groupId>
  <artifactId>jaxws-api</artifactId>
  <version>2.1</version>
  <dependencies>
    <dependency>
      <groupId>javax.xml.bind</groupId>
      <artifactId>jaxb-api</artifactId>
      <version>2.1</version>
    </dependency>
  </dependencies>
</project>

while the one coming from the Sun's repository says:

<project>
  <modelVersion>4.0.0</modelVersion>
  <groupId>javax.xml.ws</groupId>
  <artifactId>jaxws-api</artifactId>
  <version>2.1</version>
  <dependencies>
    <dependency>
      <groupId>javax.xml.bind</groupId>
      <artifactId>jaxb-api</artifactId>
      <version>2.1</version>
    </dependency>
    <dependency>
      <groupId>javax.xml.soap</groupId>
      <artifactId>saaj-api</artifactId>
      <version>1.3</version>
    </dependency>
    <dependency>
      <groupId>javax.annotation</groupId>
      <artifactId>jsr250-api</artifactId>
      <version>1.0</version>
    </dependency>
    <dependency>
      <groupId>javax.jws</groupId>
      <artifactId>jsr181-api</artifactId>
      <version>1.0-MR1</version>
    </dependency>
  </dependencies>
</project>

Is there someone responsible for this kind of stuff? the artifact I'm 
referring to and I think is right (as it has the jsr181, ect. 
dependencies) lives here: 
https://maven-repository.dev.java.net/nonav/repository/javax.xml.ws/

Alessio



More information about the jboss-development mailing list