mirror of https://github.com/apache/maven.git
o Removed final modifiers
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@738169 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5888994149
commit
3850e36381
|
@ -24,6 +24,12 @@ package org.apache.maven.project.builder;
|
|||
*/
|
||||
public class ProjectUri
|
||||
{
|
||||
|
||||
/*
|
||||
* NOTE: The strings defined here are deliberately non-final to prevent the compiler from inlining them when
|
||||
* downstream code compiles against them.
|
||||
*/
|
||||
|
||||
public static String baseUri = "http://apache.org/maven";
|
||||
|
||||
public static String xUri = "http://apache.org/maven/project";
|
||||
|
@ -344,9 +350,9 @@ public class ProjectUri
|
|||
|
||||
public static class Filters
|
||||
{
|
||||
public static final String xUri = "http://apache.org/maven/project/build/filters#set";
|
||||
public static String xUri = "http://apache.org/maven/project/build/filters#set";
|
||||
|
||||
public static final String filter = xUri + "/filter";
|
||||
public static String filter = xUri + "/filter";
|
||||
}
|
||||
|
||||
public static class PluginManagement
|
||||
|
|
Loading…
Reference in New Issue