View Javadoc
1   package com.github.mikkoi.maven.plugins.enforcer.rule.propertyusage.configuration;
2   
3   import javax.annotation.Nonnull;
4   import java.util.Collection;
5   import java.util.Collections;
6   
7   public class Definitions {
8   
9       private Definitions() {
10  		// This class cannot be instantiated.
11  		throw new AssertionError();
12      }
13  
14      /**
15       * Get Default value
16       *
17       * @return collection of strings
18       */
19      @Nonnull
20      public static Collection<String> getDefault() {
21          return Collections.singleton("src/main/resources/**/*.properties");
22      }
23  }