Hi All,
Even I am on the branch ignite-1.5, but when I try to build 1.5.0 release, the version I got is '1.5.0-SNAPSHOT' I checked the ignite/pom.xml but could not find any clue. What I am expecting is '1.5.0' instead of '1.5.0-SNAPSHOT' Anybody can help me out? Many Thanks, kcheng |
Hi Ken, The pom.xml that I have has this in it: <groupId>org.apache.ignite</groupId> <artifactId>apache-ignite</artifactId> <version>1.5.0-SNAPSHOT</version> <packaging>pom</packaging> therefore I would expect to see the output be version 1.5.0-SNAPSHOT. Unless I am missing something? What command line are you using to build? |
yes, you are right.
the pom as below <groupId>org.apache.ignite</groupId> <artifactId>apache-ignite</artifactId> <version>1.5.0-SNAPSHOT</version> <packaging>pom</packaging> but I want to build a release version instead of a snapshot. I just want to know to to build a release version(1.5.0) by the way I am using the command "mvn clean package -DskipTests" Thanks, kcheng On Fri, Nov 13, 2015 at 5:20 PM, endian675 <[hidden email]> wrote: > Ken Cheng wrote > > Hi All, > > > > Even I am on the branch ignite-1.5, but when I try to build 1.5.0 > release, > > the version I got is '1.5.0-SNAPSHOT' > > > > I checked the ignite/pom.xml but could not find any clue. > > > > What I am expecting is '1.5.0' instead of '1.5.0-SNAPSHOT' > > > > Anybody can help me out? > > > > > > > > Many Thanks, > > > > kcheng > > Hi Ken, > > The pom.xml that I have has this in it: > > <groupId>org.apache.ignite</groupId> > <artifactId>apache-ignite</artifactId> > <version>1.5.0-SNAPSHOT</version> > <packaging>pom</packaging> > > therefore I would expect to see the output be version 1.5.0-SNAPSHOT. > Unless I am missing something? What command line are you using to build? > > > > > -- > View this message in context: > http://apache-ignite-developers.2346864.n4.nabble.com/How-to-build-ignite-1-5-0-from-source-code-tp4812p4813.html > Sent from the Apache Ignite Developers mailing list archive at Nabble.com. > |
In reply to this post by kcheng.mvp
Hi Ken,
Everything is correct. Version should be changed to 1.5.0 manually. Please check DEVNOTES.txt for release instructions. Quote from DEVNOTES.txt: "Ensure you have RELEASE (not SNAPSHOT) version at Ignite poms. Maven release plugin release:prepare goal can be used to make release tag." On Fri, Nov 13, 2015 at 12:28 PM, Ken Cheng <[hidden email]> wrote: > Hi All, > > Even I am on the branch ignite-1.5, but when I try to build 1.5.0 release, > the version I got is '1.5.0-SNAPSHOT' > > I checked the ignite/pom.xml but could not find any clue. > > What I am expecting is '1.5.0' instead of '1.5.0-SNAPSHOT' > > Anybody can help me out? > > > > Many Thanks, > > kcheng > |
In reply to this post by kcheng.mvp
at the same I check the ignite-1.4 this branch, it has below setting
<groupId>org.apache.ignite</groupId> <artifactId>apache-ignite</artifactId> <version>1.4.0-SNAPSHOT</version> <packaging>pom</packaging> but in maven central repository, the version is 1.4.0. If I want to build 1.4 from branch 'ignite-1.4', which commands should I use to generate jars like ignite-core-1.4.0.jar ignie-xxxx-1.4.0.jar Thanks, kcheng On Fri, Nov 13, 2015 at 6:04 PM, Ken Cheng <[hidden email]> wrote: > yes, you are right. > > the pom as below > > <groupId>org.apache.ignite</groupId> > <artifactId>apache-ignite</artifactId> > <version>1.5.0-SNAPSHOT</version> > <packaging>pom</packaging> > > > > but I want to build a release version instead of a snapshot. > > I just want to know to to build a release version(1.5.0) > > by the way I am using the command "mvn clean package -DskipTests" > > Thanks, > kcheng > > On Fri, Nov 13, 2015 at 5:20 PM, endian675 <[hidden email]> wrote: > >> Ken Cheng wrote >> > Hi All, >> > >> > Even I am on the branch ignite-1.5, but when I try to build 1.5.0 >> release, >> > the version I got is '1.5.0-SNAPSHOT' >> > >> > I checked the ignite/pom.xml but could not find any clue. >> > >> > What I am expecting is '1.5.0' instead of '1.5.0-SNAPSHOT' >> > >> > Anybody can help me out? >> > >> > >> > >> > Many Thanks, >> > >> > kcheng >> >> Hi Ken, >> >> The pom.xml that I have has this in it: >> >> <groupId>org.apache.ignite</groupId> >> <artifactId>apache-ignite</artifactId> >> <version>1.5.0-SNAPSHOT</version> >> <packaging>pom</packaging> >> >> therefore I would expect to see the output be version 1.5.0-SNAPSHOT. >> Unless I am missing something? What command line are you using to build? >> >> >> >> >> -- >> View this message in context: >> http://apache-ignite-developers.2346864.n4.nabble.com/How-to-build-ignite-1-5-0-from-source-code-tp4812p4813.html >> Sent from the Apache Ignite Developers mailing list archive at Nabble.com. >> > > |
thank you all!
I will have a try! Thanks, kcheng On Fri, Nov 13, 2015 at 6:09 PM, Ken Cheng <[hidden email]> wrote: > at the same I check the ignite-1.4 this branch, it has below setting > > > <groupId>org.apache.ignite</groupId> > <artifactId>apache-ignite</artifactId> > <version>1.4.0-SNAPSHOT</version> > <packaging>pom</packaging> > > > > but in maven central repository, the version is 1.4.0. > > If I want to build 1.4 from branch 'ignite-1.4', which commands should I > use to generate jars like > > ignite-core-1.4.0.jar > ignie-xxxx-1.4.0.jar > > > > Thanks, > kcheng > > On Fri, Nov 13, 2015 at 6:04 PM, Ken Cheng <[hidden email]> wrote: > >> yes, you are right. >> >> the pom as below >> >> <groupId>org.apache.ignite</groupId> >> <artifactId>apache-ignite</artifactId> >> <version>1.5.0-SNAPSHOT</version> >> <packaging>pom</packaging> >> >> >> >> but I want to build a release version instead of a snapshot. >> >> I just want to know to to build a release version(1.5.0) >> >> by the way I am using the command "mvn clean package -DskipTests" >> >> Thanks, >> kcheng >> >> On Fri, Nov 13, 2015 at 5:20 PM, endian675 <[hidden email]> wrote: >> >>> Ken Cheng wrote >>> > Hi All, >>> > >>> > Even I am on the branch ignite-1.5, but when I try to build 1.5.0 >>> release, >>> > the version I got is '1.5.0-SNAPSHOT' >>> > >>> > I checked the ignite/pom.xml but could not find any clue. >>> > >>> > What I am expecting is '1.5.0' instead of '1.5.0-SNAPSHOT' >>> > >>> > Anybody can help me out? >>> > >>> > >>> > >>> > Many Thanks, >>> > >>> > kcheng >>> >>> Hi Ken, >>> >>> The pom.xml that I have has this in it: >>> >>> <groupId>org.apache.ignite</groupId> >>> <artifactId>apache-ignite</artifactId> >>> <version>1.5.0-SNAPSHOT</version> >>> <packaging>pom</packaging> >>> >>> therefore I would expect to see the output be version 1.5.0-SNAPSHOT. >>> Unless I am missing something? What command line are you using to build? >>> >>> >>> >>> >>> -- >>> View this message in context: >>> http://apache-ignite-developers.2346864.n4.nabble.com/How-to-build-ignite-1-5-0-from-source-code-tp4812p4813.html >>> Sent from the Apache Ignite Developers mailing list archive at >>> Nabble.com. >>> >> >> > |
Free forum by Nabble | Edit this page |