Inedo Community Forums Forums
    • Recent
    • Tags
    • Popular
    • Login

    Welcome to the Inedo Forums! Check out the Forums Guide for help getting started.

    If you are experiencing any issues with the forum software, please visit the Contact Form on our website and let us know!

    Pull Maven artifacts - invalid version

    Scheduled Pinned Locked Moved Support
    19 Posts 3 Posters 42 Views 2 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • dean-houstonD Offline
      dean-houston inedo-engineer
      last edited by

      Hi @michal-roszak_0767 , @steviecoaster ,

      Maven versioning is a total mess. v*** is indeed an invalid version, per the which means that (among other things) it must be lexicographically sorted for determining latest version.

      It looks like they knew that enough to use a string... but not enough to use a valid version number. Oh well. /rant

      If you go to Manage Feed Settings, you can enable invalid versions in the feed. The message should make this more clear, so I will clarify that via PG-2977 in the next maintenance release.

      -- Dean

      M 1 Reply Last reply Reply Quote 0
      • steviecoasterS Offline
        steviecoaster
        last edited by

        Well, it makes my eyes bleed 😂

        1 Reply Last reply Reply Quote 0
        • M Offline
          michal.roszak_0767 @dean-houston
          last edited by

          @dean-houston,
          @steviecoaster

          "If you go to Manage Feed Settings, you can enable invalid versions in the feed."
          As you know, this setting doesn't work.
          Either in GUI or command line uploads.

          https://forums.inedo.com/topic/5387/proget-versioning-restrictions/5

          [INFO] ------------------------------------------------------------------------
          [INFO] BUILD FAILURE
          [INFO] ------------------------------------------------------------------------
          [INFO] Total time:  5.911 s
          [INFO] Finished at: 2025-05-08T16:35:55+02:00
          [INFO] ------------------------------------------------------------------------
          [ERROR] Failed to execute goal on project CARE: Could not resolve dependencies for project eu.example:CARE:jar:0.5.1-SNAPSHOT
          [ERROR] dependency: io.github.java-diff-utils:java-diff-utils:jar:4.16-SNAPSHOT (compile)
          [ERROR]  Could not find artifact io.github.java-diff-utils:java-diff-utils:jar:4.16-SNAPSHOT
          

          Cheers,
          Michal

          dean-houstonD 1 Reply Last reply Reply Quote 0
          • dean-houstonD Offline
            dean-houston inedo-engineer @michal.roszak_0767
            last edited by

            Hi @michal-roszak_0767 ,

            That error is unrelated to invalid versions being allowed/disallowed in ProGet. Maven is just saying that it can't find a snapshot (i.e. prerelease) version of a dependency.

            'io.github.java-diff-utils:java-diff-utils' is a public library, published to Maven Central:
            https://repo1.maven.org/maven2/io/github/java-diff-utils/java-diff-utils/

            Snapshot versions are not published to Maven Central. I don't know where it's published.

            In any case you should not be using snapshots of public libraries unless you have a very specific need to; they're only intended for development of related public libraries and are in a special repository. Check w/ the devs behind that build with their intents... it might be a mistake?

            -- Dean

            M 2 Replies Last reply Reply Quote 0
            • M Offline
              michal.roszak_0767 @dean-houston
              last edited by

              @dean-houston

              I think you right.
              It might be a mistake.

              And my bad that I didn't checked by myself, but it's a lot of going on here.
              We just implement ProGet software in our company (payment in progress).

              Thanks,
              Michal

              1 Reply Last reply Reply Quote 0
              • M Offline
                michal.roszak_0767 @dean-houston
                last edited by

                @dean-houston

                One more thing I've noticed.

                I can download artifact manually:

                wget https://proget.server/maven2/maven-maven-org/com/google/javascript/closure-compiler/v20250407/closure-compiler-v20250407.jar
                --2025-05-09 10:10:50--  https://proget.server/maven2/maven-maven-org/com/google/javascript/closure-compiler/v20250407/closure-compiler-v20250407.jar
                Resolving proget.server... *******
                Connecting to proget.server|******|:443... connected.
                HTTP request sent, awaiting response... 302 Found
                Location: https://proget.server/maven2/maven-maven-org/com/google/javascript/closure-compiler/v20250407/closure-compiler-v20250407.jar/ [following]
                --2025-05-09 10:10:51--  https://proget.server/maven2/maven-maven-org/com/google/javascript/closure-compiler/v20250407/closure-compiler-v20250407.jar/
                Reusing existing connection to proget.server:443.
                HTTP request sent, awaiting response... 200 OK
                Length: 1727 (1,7K)
                Saving to: ‘closure-compiler-v20250407.jar’
                
                closure-compiler-v20250407.jar                      100%[=================================================================================================================>]   1,69K  --.-KB/s    in 0s
                
                2025-05-09 10:10:51 (969 MB/s) - ‘closure-compiler-v20250407.jar’ saved [1727/1727]
                
                

                But I still can't see this file in Web UI.
                No cache.

                eaba7447-9ef0-4c06-9636-f11209b75a16-image.png

                7a264170-9b8e-45be-8188-87bc1d2adc45-image.png

                Why?

                Michal

                1 Reply Last reply Reply Quote 0
                • M Offline
                  michal.roszak_0767
                  last edited by

                  @dean-houston,

                  Where can I find file "maven-metadata.xml" in ProGet file structure?

                  Michal

                  dean-houstonD 2 Replies Last reply Reply Quote 0
                  • dean-houstonD Offline
                    dean-houston inedo-engineer @michal.roszak_0767
                    last edited by

                    Hi @michal-roszak_0767,

                    After looking into this further, I'm afraid we simply can't support this artifact/package at this time. I don't really see a good path for supporting this without adding significant complexity and risk of breaking proper artifacts / versions.

                    The problem is that this version breaks the basic rules that Maven repositories need to follow:

                    1. Artifact Names / Groups cannot start with a digit
                    2. Versions must start with a digit

                    These rules resolve the ambiguity of determining what /com/google/javascript/closure-compiler/v20250407 means. For example, is it:

                    • Files for version v20250407 of com.google.javascript.closure-compiler artifact?
                    • All versions of the com.google.javascript.closure-compiler.v20250407 artifact?

                    I'm not even sure how this was uploaded to Maven central. I have no idea why the developers ignored the warnings that Maven spat out for legal version numbers. This has been a specification for like 20 years. Heck, here's a discussion from like 2008 on how the "must start with a digit" rules needed clarification: https://cwiki.apache.org/confluence/display/MAVENOLD/Versioning

                    If you encounter other artifacts like this, maybe we can consider some kind of very limited exception, but until we figure something else out this artifact version is simply not supported in ProGet.

                    I can't imagine there are many other artifacts like this, but let us know if there are.

                    -- Dean

                    M 1 Reply Last reply Reply Quote 0
                    • dean-houstonD Offline
                      dean-houston inedo-engineer @michal.roszak_0767
                      last edited by

                      @michal-roszak_0767 ProGet is not a file server. Metadata files like maven-metadata.xml are generated upon demand, based on artifacts stored in the feed

                      M 1 Reply Last reply Reply Quote 0
                      • M Offline
                        michal.roszak_0767 @dean-houston
                        last edited by

                        Hi @dean-houston,

                        Thank you for you patience :)
                        Two more questions:

                        • it is possible to use wildcards searching artifacts. Can I search only in name (without description)?
                        • how to change License Assignment for an artifact?

                        Regards,
                        Michal

                        dean-houstonD 1 Reply Last reply Reply Quote 0
                        • dean-houstonD Offline
                          dean-houston inedo-engineer @michal.roszak_0767
                          last edited by

                          Hi @michal-roszak_0767 ,

                          ProGet does not support wildcards searching for artifacts.

                          Licenses are declared in the manifest (i.e. .pom file):
                          https://maven.apache.org/pom.html#Licenses

                          You cannot really override this. If an artifact does not have a license, you will be given a chance to pick a license for it. If you ever need to change that, you'd have to go to the SCA > Licenses > License Types, and remove the package-specific assignment from there.

                          -- Dean

                          M 1 Reply Last reply Reply Quote 0
                          • M Offline
                            michal.roszak_0767 @dean-houston
                            last edited by

                            @dean-houston

                            Strange...
                            If I type "jaudio*" in search prompt I'll get:

                            12d1a716-83b3-4b45-9f1d-306ec7adc19a-image.png

                            What is this if not wildcard search?

                            Michal

                            M 1 Reply Last reply Reply Quote 0
                            • M Offline
                              michal.roszak_0767 @michal.roszak_0767
                              last edited by

                              OK... I see. Asterisk is ignored.
                              Sad...

                              1 Reply Last reply Reply Quote 0
                              • M Offline
                                michal.roszak_0767 @dean-houston
                                last edited by

                                @dean-houston said in Pull Maven artifacts - invalid version:

                                Hi @michal-roszak_0767,

                                After looking into this further, I'm afraid we simply can't support this artifact/package at this time. I don't really see a good path for supporting this without adding significant complexity and risk of breaking proper artifacts / versions.

                                The problem is that this version breaks the basic rules that Maven repositories need to follow:

                                1. Artifact Names / Groups cannot start with a digit
                                2. Versions must start with a digit

                                These rules resolve the ambiguity of determining what /com/google/javascript/closure-compiler/v20250407 means. For example, is it:

                                • Files for version v20250407 of com.google.javascript.closure-compiler artifact?
                                • All versions of the com.google.javascript.closure-compiler.v20250407 artifact?

                                I'm not even sure how this was uploaded to Maven central. I have no idea why the developers ignored the warnings that Maven spat out for legal version numbers. This has been a specification for like 20 years. Heck, here's a discussion from like 2008 on how the "must start with a digit" rules needed clarification: https://cwiki.apache.org/confluence/display/MAVENOLD/Versioning

                                If you encounter other artifacts like this, maybe we can consider some kind of very limited exception, but until we figure something else out this artifact version is simply not supported in ProGet.

                                I can't imagine there are many other artifacts like this, but let us know if there are.

                                -- Dean

                                Next victim:
                                https://repo1.maven.org/maven2/org/springframework/data/spring-data-releasetrain/

                                Michal

                                dean-houstonD 1 Reply Last reply Reply Quote 0
                                • dean-houstonD Offline
                                  dean-houston inedo-engineer @michal.roszak_0767
                                  last edited by

                                  @michal-roszak_0767 said in Pull Maven artifacts - invalid version:

                                  Next victim:
                                  https://repo1.maven.org/maven2/org/springframework/data/spring-data-releasetrain/

                                  🤦 jeeze, what a mess!

                                  Well, there goes any hope of using v[0-9]+ -- they just straight up use random strings as version numbers.

                                  • https://repo1.maven.org/maven2/org/springframework/data/spring-data-releasetrain/.
                                  • https://repo1.maven.org/maven2/org/springframework/data/spring-data-releasetrain/Neumann-SR9/

                                  Open to ideas, but based on the URLs alone... I don't see a good way to identify one of these as an artifact and the other as a version of an artifact.

                                  1 Reply Last reply Reply Quote 0

                                  Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                  Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                  With your input, this post could be even better 💗

                                  Register Login
                                  • 1 / 1
                                  • First post
                                    Last post
                                  Inedo Website Home • Support Home • Code of Conduct • Forums Guide • Documentation