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

com.github.keub.maven.plugin.model.Project Maven / Gradle / Ivy

Go to download

Copy files from a remote location to a path relative to the project in which the plugin is configured.

There is a newer version: 1.8
Show newest version
package com.github.keub.maven.plugin.model;

import java.net.URI;

/**
 * Object represents a git project
 * 
 */
public class Project {

	private URI uri;
	private String username;
	private String password;
	private String branchTagName;

	public String getUsername() {
		return username;
	}

	public void setUsername(String username) {
		this.username = username;
	}

	public String getPassword() {
		return password;
	}

	public void setPassword(String password) {
		this.password = password;
	}

	public String getBranchTagName() {
		return branchTagName;
	}

	public void setBranchTagName(String branchTagName) {
		this.branchTagName = branchTagName;
	}

	public URI getUri() {
		return uri;
	}

	public void setUri(URI uri) {
		this.uri = uri;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy