scrooge-maven-plugin/src/main/java/com/twitter/MavenScroogeCompileMojo.java [30:66]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  private File thriftSourceRoot;


  /**
   * This is the directory into which the {@code .java} will be created.
   *
   * @parameter default-value="${project.build.directory}/generated-sources/thrift"
   * @required
   */
  private File outputDirectory;

  /**
   * This is the directory into which dependent {@code .thrift} files will be extracted.
   *
   * @parameter default-value="${project.build.directory}/generated-resources/"
   * @required
   */
  private File resourcesOutputDirectory;

  @Override
  protected File getOutputDirectory() {
    return outputDirectory;
  }

  @Override
  protected File getResourcesOutputDirectory() {
    return resourcesOutputDirectory;
  }

  @Override
  protected File getThriftSourceRoot() {
    return thriftSourceRoot;
  }

  @Override
  protected void attachFiles(Set<String> compileRoots) {
    for (String root : compileRoots) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



scrooge-maven-plugin/src/main/java/com/twitter/MavenScroogeTestCompileMojo.java [30:65]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  private File thriftSourceRoot;

  /**
   * This is the directory into which the {@code .java} will be created.
   *
   * @parameter default-value="${project.build.directory}/generated-test-sources/thrift"
   * @required
   */
  private File outputDirectory;

  /**
   * This is the directory into which dependent {@code .thrift} files will be extracted.
   *
   * @parameter default-value="${project.build.directory}/generated-test-resources/"
   * @required
   */
  private File resourcesOutputDirectory;

  @Override
  protected File getOutputDirectory() {
    return outputDirectory;
  }

  @Override
  protected File getResourcesOutputDirectory() {
    return resourcesOutputDirectory;
  }

  @Override
  protected File getThriftSourceRoot() {
    return thriftSourceRoot;
  }

  @Override
  protected void attachFiles(Set<String> compileRoots) {
    for (String root : compileRoots) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



