Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 788 Bytes

File metadata and controls

36 lines (26 loc) · 788 Bytes

TagMyCode Official Eclipse Plugin

This is the official Eclipse plugin for TagMyCode.

Getting started

Dependencies###

To download all dependencies use Maven

mvn clean package

this command downloads all required dependencies into lib folder

###Consumer Id and Consumer secret### You need to create a Java class Secret.java into plugin/com/tagmycode/eclipse

package com.tagmycode.intellij;

import com.tagmycode.plugin.AbstractSecret;

public class Secret extends AbstractSecret {
    @Override
    public String getConsumerId() {
        return "YOUR_CONSUMER_ID";
    }

    @Override
    public String getConsumerSecret() {
        return "YOUR_CONSUMER_SECRET";
    }
}