Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [cbi-dev] Building platform maintenance branches in offline mode

I believe "none" simply means it  does not do the replacement ... but, it still (tries) to do the comparison. See https://wiki.eclipse.org/Tycho/Reproducible_Version_Qualifiers
Which means it still tries to retrieve the baseline artifact, to use in the comparison.
You might try removing the whole baseline repositories configuration ... or the whole tycho-p2-plugin dependency? Just guessing.
(And, hope you are keeping good notes so you can add a wiki page about "how to do an offline build" when you get it working :)

       <plugin>
        <groupId>org.eclipse.tycho</groupId>
        <artifactId>tycho-p2-plugin</artifactId>
        <version>${tycho.version}</version>
        <configuration>
          <baselineRepositories>
            <repository>
              <url>[some url]</url>
            </repository>
          </baselineRepositories>
        </configuration>
      </plugin>




From:        Thanh Ha <thanh.ha@xxxxxxxxxxx>
To:        cbi-dev@xxxxxxxxxxx,
Date:        07/17/2014 01:01 PM
Subject:        Re: [cbi-dev] Building platform maintenance branches in offline mode
Sent by:        cbi-dev-bounces@xxxxxxxxxxx




On 17/07/14 12:17 PM, Phil Mason wrote:
> One question, did you mean for me to change baselineReplace when I was doing the first (online) build or the second (offline) build (or both)?

I was suggesting to try it with the offline build. If it doesn't work
then I guess that's not the same problem I thought it was.


Thanh

_______________________________________________
cbi-dev mailing list
cbi-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/cbi-dev



Back to the top