1 2 Previous Next 27 Replies Latest reply on Nov 9, 2007 1:01 PM by alesj

    2.0.0.Beta6 release

    starksm64

      I want to do the beta6 release today so that the metadata and jbossas can be using this.

        • 1. Re: 2.0.0.Beta6 release
          alesj

          Can you wait till Sunday?
          At least with VFS. I'll try to push in '..' changes over the weekend.

          btw: should we add then isBridge to MethodInfo and use it in AbstractBeanInfoFactory?

          • 2. Re: 2.0.0.Beta6 release
            starksm64

            vfs is independent of the mc project so it can be released when its read.

            Would need to see that both the reflection and javassist MethodInfo implementation support isBridge to add it.

            • 3. Re: 2.0.0.Beta6 release
              alesj

               

              "scott.stark@jboss.org" wrote:
              vfs is independent of the mc project so it can be released when its ready.

              OK.
              Will let you know if I succeed with filling in the VFS's '..' tests.

              "scott.stark@jboss.org" wrote:

              Would need to see that both the reflection and javassist MethodInfo implementation support isBridge to add it.

              Let's leave it then. Until it's at least present in JDK.


              • 4. Re: 2.0.0.Beta6 release
                alesj

                 

                "alesj" wrote:
                "scott.stark@jboss.org" wrote:
                vfs is independent of the mc project so it can be released when its ready.

                OK.
                Will let you know if I succeed with filling in the VFS's '..' tests.

                Meant to write when, not if. :-)

                • 5. Re: 2.0.0.Beta6 release
                  starksm64

                  I know the jdk has it, I don't know about javassist.

                  • 6. Re: 2.0.0.Beta6 release
                    starksm64

                    This has been released.

                    • 7. Re: 2.0.0.Beta6 release
                      alesj

                      I'm done with VFS changes for JBMICROCONT-211.
                      Reverse '..' notion applied in both AbstractVirtualFileHandler's structuredFindChild() and simpleFindChild().

                      We need a beta6 release for Thomas's JBAS-4901 issue.

                      I also fixed JBMICROCONT-155, adding vfs* handling to existing handlers.

                      • 8. Re: 2.0.0.Beta6 release
                        alesj
                        • 9. Re: 2.0.0.Beta6 release

                          You need to release this under maven as well!

                          [INFO] ------------------------------------------------------------------------
                          [ERROR] BUILD ERROR
                          [INFO] ------------------------------------------------------------------------
                          [INFO] Failed to resolve artifact.
                          
                          Missing:
                          ----------
                          1) org.jboss:jboss-vfs:jar:2.0.0.Beta6
                          
                           Try downloading the file manually from the project website.
                          
                           Then, install it using the command:
                           mvn install:install-file -DgroupId=org.jboss -DartifactId=jboss-vfs \
                           -Dversion=2.0.0.Beta6 -Dpackaging=jar -Dfile=/path/to/file
                          
                           Path to dependency:
                           1) org.jboss.microcontainer:jboss-deployers-vfs-spi:jar:2.0.0-SNAPSHOT
                           2) org.jboss:jboss-vfs:jar:2.0.0.Beta6
                          
                          ----------
                          1 required artifact is missing.
                          
                          for artifact:
                           org.jboss.microcontainer:jboss-deployers-vfs-spi:jar:2.0.0-SNAPSHOT
                          
                          from the specified remote repositories:
                           central (http://repo1.maven.org/maven2),
                           jboss-snapshots (http://snapshots.jboss.org/maven2),
                           repository.jboss.org (http://repository.jboss.org/maven2/),
                           snapshots.jboss.org (http://snapshots.jboss.org/maven2/),
                           jboss (http://repository.jboss.org/maven2)
                          


                          • 10. Re: 2.0.0.Beta6 release

                            When I analyze the dependencies for vfs-beta6 it's telling me it's actually
                            compiling over jboss-common-core:2.0.4 instead of the requested 2.2.1

                            [ejort@warjort vfs-beta6]$ mvn dependency:analyze
                            [INFO] Scanning for projects...
                            [INFO] Searching repository for plugin with prefix: 'dependency'.
                            [INFO] ----------------------------------------------------------------------------
                            [INFO] Building JBoss VFS
                            [INFO] task-segment: [dependency:analyze]
                            [INFO] ----------------------------------------------------------------------------
                            [INFO] Preparing dependency:analyze
                            [INFO] [resources:resources]
                            [INFO] Using default encoding to copy filtered resources.
                            [INFO] [compiler:compile]
                            [INFO] Nothing to compile - all classes are up to date
                            [INFO] [resources:testResources]
                            [INFO] Using default encoding to copy filtered resources.
                            [INFO] [compiler:testCompile]
                            [INFO] Nothing to compile - all classes are up to date
                            [INFO] [dependency:analyze]
                            [INFO] Used declared dependencies:
                            [INFO] org.jboss:jboss-test:jar:1.0.4.GA:test
                            [INFO] junit:junit:jar:3.8.1:test
                            [INFO] Used undeclared dependencies:
                            [WARNING] jboss:jboss-common-core:jar:2.0.4.GA:test
                            [WARNING] jboss:jboss-common-logging-spi:jar:2.0.4.GA:compile
                            [INFO] Unused declared dependencies:
                            [INFO] org.jboss:jboss-common-core:jar:2.2.1.GA:compile
                            [WARNING] Potential problems discovered.
                            [INFO] Found Resolved Dependency / DependencyManagement mismatches:
                            [INFO] Nothing in DepMgt.
                            


                            Did you follow this checklist?
                            http://wiki.jboss.org/wiki/Wiki.jsp?page=MavenReleaseProcess

                            Whatever is referencing 2.0.4.GA needs suppressing as a transitive dependency.

                            • 11. Re: 2.0.0.Beta6 release

                              When I try to dryRun the release I get the following cryptic error message:

                              [INFO] ------------------------------------------------------------------------
                              [ERROR] BUILD FAILURE
                              [INFO] ------------------------------------------------------------------------
                              [INFO] You don't have a SNAPSHOT project in the reactor projects list.
                              


                              The only thing I can find on the internet is a couple of bug reports that
                              don't explain what it means:
                              http://jira.codehaus.org/browse/MRELEASE-246
                              http://jira.codehaus.org/browse/MRELEASE-279

                              • 12. Re: 2.0.0.Beta6 release

                                I've managed to work around the problem locally by download the vfs beta-6 tag
                                and installing it into my local repository, but this clearly isn't the correct solution. ;-)

                                • 13. Re: 2.0.0.Beta6 release
                                  alesj

                                   

                                  "adrian@jboss.org" wrote:
                                  You need to release this under maven as well!

                                  mvn deploy?

                                  • 14. Re: 2.0.0.Beta6 release
                                    alesj

                                     

                                    "adrian@jboss.org" wrote:

                                    Did you follow this checklist?
                                    http://wiki.jboss.org/wiki/Wiki.jsp?page=MavenReleaseProcess

                                    By the book. :-)

                                    1 2 Previous Next