Skip to content

Instantly share code, notes, and snippets.

View thombergs's full-sized avatar

Tom Hombergs thombergs

View GitHub Profile
@thombergs
thombergs / EventConsumer.java
Last active October 10, 2016 20:20
Code samples pointing out different features of the Spring Framework.
@Component
public class EventConsumer implements ApplicationListener<E>{
@Override
public void onApplicationEvent(E event) {
try {
onEvent(event);
} catch (Exception e) {
...
}
@thombergs
thombergs / mvn-deploy.sh
Last active June 27, 2023 05:03
Using Maven to deploy to Maven Central
mvn -s settings.xml clean javadoc:jar source:jar gpg:sign -Dgpg.passphrase=your_passphrase deploy