Skip to content

Commit

Permalink
Fix warning about ambiguous artifactId. See details:
Browse files Browse the repository at this point in the history
"The expression ${artifactId} is deprecated. Please use ${project.artifactId} instead."
This warning occurs in modern versions of Maven. One line change.
  • Loading branch information
mattphelps-8451 committed Oct 13, 2022
1 parent 0d3e738 commit b81f23a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -81,7 +81,7 @@ See the License for the specific language governing permissions and
limitations under the License.
</inlineHeader>
<properties>
<owner>The ${artifactId} Authors</owner>
<owner>The ${project.artifactId} Authors</owner>
<project.inceptionYear>2019</project.inceptionYear>
</properties>
<project>
Expand Down

0 comments on commit b81f23a

Please sign in to comment.