Class EquoIdeExtension


  • public class EquoIdeExtension
    extends java.lang.Object
    The DSL inside the equoIde block.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      boolean useAtomos  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void addFilter​(java.lang.String name, org.gradle.api.Action<dev.equo.solstice.p2.P2Query> query)
      Adds a filter with the given name.
      void clearFilters()
      Removes all filters.
      void install​(java.lang.String target)
      Marks the given unit id for installation.
      void p2repo​(java.lang.String p2)
      Adds the given p2 repo to the list of repositories to populate the session with.
      void release​(java.lang.String version)
      Sets which eclipse JDT release to use, such as "4.25", "4.26", or a future release.
      void replaceFilter​(java.lang.String name, org.gradle.api.Action<dev.equo.solstice.p2.P2Query> query)
      Replaces the filter with the given name.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • useAtomos

        public boolean useAtomos
    • Constructor Detail

      • EquoIdeExtension

        public EquoIdeExtension()
    • Method Detail

      • release

        public void release​(java.lang.String version)
        Sets which eclipse JDT release to use, such as "4.25", "4.26", or a future release.
      • p2repo

        public void p2repo​(java.lang.String p2)
        Adds the given p2 repo to the list of repositories to populate the session with.
      • install

        public void install​(java.lang.String target)
        Marks the given unit id for installation.
      • addFilter

        public void addFilter​(java.lang.String name,
                              org.gradle.api.Action<dev.equo.solstice.p2.P2Query> query)
        Adds a filter with the given name. Duplicate names are not allowed.
      • replaceFilter

        public void replaceFilter​(java.lang.String name,
                                  org.gradle.api.Action<dev.equo.solstice.p2.P2Query> query)
        Replaces the filter with the given name. Throws an error if no such filter exists.
      • clearFilters

        public void clearFilters()
        Removes all filters.