# tagmycode-intellij **Repository Path**: ideplugin/tagmycode-intellij ## Basic Information - **Project Name**: tagmycode-intellij - **Description**: https://github.com/massimozappino/tagmycode-intellij - **Primary Language**: Java - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-05-30 - **Last Updated**: 2021-05-30 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README TagMyCode Official IntelliJ IDEA Plugin ======================================= This is the official IntelliJ IDEA plugin for [TagMyCode](http://tagmycode.com). It works also on others JetBrains IDEs: * RubyMine * WebStorm * PhpStorm * PyCharm * AppCode * Android Studio * DataGrip ## Getting started ## ### Dependencies To download all dependencies use Maven ```bash mvn clean package ``` this command downloads all required dependencies into ```lib``` folder Set the correct project compiler output: go to ```File``` -> ```Project Structure...``` -> ```Project``` -> ```Project compiler output``` and add the full **absolute** path, for example ```/home/user/projects/tagmycode-intellij/out``` ###Consumer Id and Consumer secret You need to create a Java class ```Secret.java``` into ```plugin/com/tagmycode/intellij``` ```java 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"; } } ```