5 Replies Latest reply on Oct 26, 2011 7:01 AM by bussien

    Seam 3.1 Beta 4 Released

    shane.bryzak

      We've released Seam 3.1 Beta 4 today, you can find the details of the release in the following announcement:


      http://in.relation.to/Bloggers/Seam31Beta4Released


      Thanks!

        • 1. Re: Seam 3.1 Beta 4 Released
          hantsy

          I have just updated my project to seam 3.1.0 beta4 .


          A very small error in the seam bom.


           <dependency>
                      <groupId>org.jboss.seam.mail</groupId>
                      <artifactId>seam-mail-api</artifactId>
                      <version>${seam.mail.version}</version>
                      <scope>compile</scope>
                   </dependency>
          
                   <dependency>
                      <groupId>org.jboss.seam.mail</groupId>
                      <artifactId>seam-mail-impl</artifactId>
                      <version>${seam.mail.version}</version>
                      <scope>runtime</scope>
                   </dependency>
          



          There is no Beta4 version of seam-mail-impl in the jboss public repository, according to the naming convention changed, there should be seam-mail, I can find the Beta4 version of seam-mail.


          Did u remember I posted the Beta3 mail problem in the forum? in beta3 release, BOM defined seam-mail-api and  seam-mail, but there is no Beta3 for seam-mail.





          • 2. Re: Seam 3.1 Beta 4 Released
            hantsy

            I added the seam mail with  version explicitly, it works.



            <dependency>
                           <groupId>org.jboss.seam.mail</groupId>
                           <artifactId>seam-mail-api</artifactId>
            
                      </dependency>
            
                      <dependency>
                           <groupId>org.jboss.seam.mail</groupId>
                           <artifactId>seam-mail</artifactId>
                           <scope>compile</scope>
                           <version>3.1.0.Beta4</version>
                      </dependency>
            

            • 3. Re: Seam 3.1 Beta 4 Released
              hantsy
              • 4. Re: Seam 3.1 Beta 4 Released
                lightguard

                Fixed (issue is https://issues.jboss.org/browse/SEAM-113). Thanks Hantsy

                • 5. Re: Seam 3.1 Beta 4 Released
                  bussien
                  Any suggestions? Thanks:
                  Non-resolvable parent POM: Failure to find org.jboss.seam.examples:seam-examples-parent:pom:3.1.0.Beta4

                  settings.xml in .m2:
                  <profile>
                         <id>jboss-public-repository</id>
                         ..
                  <repository>
                               <id>jboss-public-repository-group</id>
                               ..
                                <pluginRepository>
                               <id>jboss-public-repository-group</id>
                                pointing to:
                  <url>http://repository.jboss.org/nexus/content/groups/public</url>

                  JDK = 1.6.0_21, Maven = 3.0.3