Skip to content

Instantly share code, notes, and snippets.

@pram
pram / build.gradle
Last active March 14, 2019 18:53
Gradle build file to upload third-party artifacts to a maven repository
//Also check - https://dzone.com/articles/how-to-upload-a-list-of-jars-into-nexus-or-artifac
// using gradle 1.2
apply plugin: 'maven'
group 'org.example.extlib'
version = '1.0.0'
@pram
pram / .git-commit-template.txt
Created March 10, 2016 21:43 — forked from adeekshith/.git-commit-template.txt
A Git commit template to make it easy to enforce a good and uniform commit message style across teams.
# <type>: (If applied, this commit will...) <subject> (Max 50 char)
# |<---- Using a Maximum Of 50 Characters ---->|
# Explain why this change is being made
# |<---- Try To Limit Each Line to a Maximum Of 72 Characters ---->|
# Provide links or keys to any relevant tickets, articles or other resources
# Example: Github issue #23
@pram
pram / IntelliJ_IDEA__Perf_Tuning.txt
Created October 18, 2015 16:49 — forked from P7h/IntelliJ_IDEA__Perf_Tuning.txt
Performance tuning parameters for IntelliJ IDEA. Add these params in idea64.exe.vmoptions or idea.exe.vmoptions file in IntelliJ IDEA. If you are using JDK 8.x, please knock off PermSize and MaxPermSize parameters from the tuning configuration.
-server
-Xms2048m
-Xmx2048m
-XX:NewSize=512m
-XX:MaxNewSize=512m
-XX:PermSize=512m
-XX:MaxPermSize=512m
-XX:+UseParNewGC
-XX:ParallelGCThreads=4
-XX:MaxTenuringThreshold=1