All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.societegenerale.commons.plugin.model.RootClassFolder Maven / Gradle / Ivy

package com.societegenerale.commons.plugin.model;

/**
 * wrapper around a simple String, representing the root folder where the compiled class files are. Typically,
 /classes or /test-classes in a Maven context

 */
public class RootClassFolder {

  private String value;

  public RootClassFolder(String value) {
    this.value = value;
  }

  public String getValue() {
    return value;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy