Skip to content

wangkezun/alfred-mvnrepository-workflow

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 

Repository files navigation

alfred-mvnrepository-workflow

alfred-workflow for mvnrepository.com

Usage:

  1. open alfred. input mvn to start workflow.
  2. you can search any keywords
  3. response will like first
  4. response will like second
    • press ⌘+enter will open artifact's page eg. https://mvnrepository.com/artifact/org.jetbrains.kotlin/kotlin-stdlib/1.3.11

    • press ⌃(ctrl)+enter will copy result as maven format. you could use it in your project's pom.xml file. eg.

      <dependency>
        <groupId>org.jetbrains.kotlin</groupId>
        <artifactId>kotlin-stdlib</artifactId>
        <version>1.3.11</version>
      </dependency>

      in this step, workflow will use default scope(without scope tag).

    • press ⇧(shift)+enter will copy result as gradle format. you could use it in your project's build.gradle file. eg.

      compile group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib', version: '1.3.11'

      in this step, workflow will use compile configuration.