org.xtext.gradle.idea.tasks.IdeaPluginRepository Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xtext-idea-gradle-plugin Show documentation
Show all versions of xtext-idea-gradle-plugin Show documentation
A plugin for for building IntelliJ IDEA Xtext plugins
package org.xtext.gradle.idea.tasks;
import org.eclipse.xtend.lib.annotations.Accessors;
import org.eclipse.xtext.xbase.lib.Pure;
@Accessors
@SuppressWarnings("all")
public class IdeaPluginRepository {
private final String url;
public IdeaPluginRepository(final String url) {
super();
this.url = url;
}
@Pure
public String getUrl() {
return this.url;
}
}