We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Variables from maven properties are quoted.
Version: 0.4.0 Scala Version: n/a Java Version: n/a
0.4.0
The variable from maven property is double-quoted when it's used.
... <properties> <junit.version>4.11</junit.version> </properties> ... <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> </dependencies>
results in
"junit" % "junit" % "junitVersion" % Test
but it should be
"junit" % "junit" % junitVersion % Test
So junitVersion should not be double-quoted.
junitVersion
The text was updated successfully, but these errors were encountered:
Fix #126 - Variables from maven properties are double-quoted
5f7dcff
Merge pull request #127 from Kevin-Lee/bug/126/variable-double-quoted
4a7379c
kevin-lee
Successfully merging a pull request may close this issue.
Bug
Variables from maven properties are quoted.
Summary
Project Details
Version:
0.4.0
Scala Version: n/a
Java Version: n/a
Description
The variable from maven property is double-quoted when it's used.
results in
but it should be
So
junitVersion
should not be double-quoted.The text was updated successfully, but these errors were encountered: