Skip to content

Instantly share code, notes, and snippets.

View clong365's full-sized avatar
🎯
Focusing

Frank Chen clong365

🎯
Focusing
View GitHub Profile
@clong365
clong365 / git-maven-howto.md
Created September 21, 2021 09:28 — forked from fernandezpablo85/git-maven-howto.md
how to create your own maven repository on github

How to create a maven repository for your github project step by step

Clone your project in a separate folder

(note: replace ORGANIZATION and PROJECT)

git clone git clone git@github.com:ORGANIZATION/PROJECT.git my-repository

Cd into it

@clong365
clong365 / build.gradle
Created March 9, 2019 08:06 — forked from thom-nic/build.gradle
find the largest classnames in Spring libraries. Also find FactoryFactories
/**
* Find the longest class names in Spring.
* Also find FactoryFactory classes.
* a goof-off project by @thom_nic
*/
import java.util.jar.*
defaultTasks 'longest', 'factoryfactory'