2 Replies Latest reply on Sep 21, 2011 5:37 AM by jhalliday

    missing files in maven repos of JBossTS?

    lafr

      We're using JBoss AS 6.1 to run our JEE-application for devlopment and plan to use it on customer's site for the next release of our software.

      We build it from sources of trunk.

      Because of some problems with Oracle as DefaultDS and ApplicationDS I wanted to use the current version of JBossTS.

      JBoss AS 6.1.0 uses 4.14.0, the latest version is 4.15.3.

       

      So I changed component-matrix/pom.xml

      --- jboss-head/component-matrix/pom.xml(revision 112258)
      +++ jboss-head/component-matrix/pom.xml(working copy)

      @@ -52,7 +52,7 @@

      <version.jaxws-httpserver-httpspi>1.0.0.GA</version.jaxws-httpserver-httpspi>
      <version.jboss.injection>1.0.0-alpha-7</version.jboss.injection>
      <version.jboss.jaxr>2.0.2</version.jboss.jaxr>
      -<version.jboss.jbossts>4.14.0.Final</version.jboss.jbossts>
      +<version.jboss.jbossts>4.15.3.Final</version.jboss.jbossts>
      <version.jboss.jbossws-native>3.4.1.GA</version.jboss.jbossws-native>
      <version.jboss.jbossws-cxf>3.4.1.GA</version.jboss.jbossws-cxf>
      <version.jboss.jbossws-common>1.4.1.SP1</version.jboss.jbossws-common>

       

      But at https://repository.jboss.org/nexus/content/groups/public/org/jboss/jbossts/jbossxts/4.15.3.Final/ there is no sar file, but a jar file.

      So I did some more changes:

      @@ -1372,14 +1372,14 @@

                 <groupId>org.jboss.jbossts</groupId>

                 <artifactId>jbossts-tools</artifactId>

                 <version>${version.jboss.jbossts}</version>

      -          <type>sar</type>

      +          <type>jar</type>

               </dependency>

       

               <dependency>

                 <groupId>org.jboss.jbossts</groupId>

                 <artifactId>jbossxts</artifactId>

                 <version>${version.jboss.jbossts}</version>

      -          <type>sar</type>

      +          <type>jar</type>

               </dependency>

       

      Index: jboss-head/depchain/pom.xml

      ===================================================================

      --- jboss-head/depchain/pom.xml    (revision 112258)

      +++ jboss-head/depchain/pom.xml    (working copy)

      @@ -370,7 +370,7 @@

           <dependency>

             <groupId>org.jboss.jbossts</groupId>

             <artifactId>jbossts-tools</artifactId>

      -      <type>sar</type>

      +      <!-- type>sar</type -->

             <scope>runtime</scope>

             <exclusions>

               <exclusion>

      @@ -390,7 +390,7 @@

           <dependency>

             <groupId>org.jboss.jbossts</groupId>

             <artifactId>jbossxts</artifactId>

      -      <type>sar</type>

      +      <!-- type>sar</type -->

             <scope>runtime</scope>

             <exclusions>

               <exclusion>

       

      But the build fails:

      Downloading: http://repo1.maven.org/maven2/org/jboss/jbossts/jbossts-tools/4.15.3.Final/jbossts-tools-4.15.3.Final.jar

      ...

      [ERROR] Failed to execute goal on project jboss-as-build: Could not resolve dependencies for project org.jboss.jbossas:jboss-as-build:pom:6.1.1-SNAPSHOT: Failure to find org.jboss.jbossts:jbossts-tools:jar:4.15.3.Final in http://repository.jboss.org/nexus/content/groups/public/ was cached in the local repository, resolution will not be reattempted until the update interval of jboss-public-repository-group has elapsed or updates are forced -> [Help 1]

       

      In this directory at https://repository.jboss.org/nexus/content/groups/public/org/jboss/jbossts/jbossts-tools/4.15.3.Final/ there is only a jbossts-tools-4.15.3.Final-sources.jar but no jbossts-tools-4.15.3.Final.jar or jbossts-tools-4.15.3.Final.sar.

       

      So for me this maven repository is not complete.

      Who is able to upload the missing files?