-
Notifications
You must be signed in to change notification settings - Fork 140
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Set proper inner dependency #15
base: master
Are you sure you want to change the base?
Conversation
Setting this dependency, allows maven to do parallel builds, obviously improving building times.
<dependency> | ||
<groupId>org.apache.asterix</groupId> | ||
<artifactId>asterix-lang-sqlpp</artifactId> | ||
<version>0.9.6-SNAPSHOT</version> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can this be ${parent.version} ? We always keep this module's versison the same as the parent's. If it's like this it would complicate the version increment process during releases.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
and by "this" I mean <version>, sorry. I thought that comment would get inserted right at line 52.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm actually not sure how you do that, I've never really worked with Maven before, but do you mean like that?
<version>0.9.6-SNAPSHOT</version> | |
<version>${parent.version}</version> |
Wow! This is great, Thank you. I tried to get this to work a long time ago, but I guess I was barking up the wrong tree. I thought it was because the javacc-maven-plugin didn't properly support parallel maven execution. |
I just figured that there's an error because |
Setting this dependency, allows maven to do parallel builds, obviously improving building times.
asterix-doc
needs at least one file (SQLPP.HTML
) that is build byasterix-lang-sqlpp
.