Skip to content

Instantly share code, notes, and snippets.

View Ladicek's full-sized avatar
🐉
Principal Rockstar Ninja Guru Inquisitor

Ladislav Thon Ladicek

🐉
Principal Rockstar Ninja Guru Inquisitor
  • Red Hat
  • Czech Republic
View GitHub Profile
2016-10-05 14:59:11,075 ERROR [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0055: Caught exception during boot: java.lang.NullPointerException
at org.jboss.as.controller.AbstractControllerService.finishBoot(AbstractControllerService.java:451)
at org.jboss.as.server.ServerService.boot(ServerService.java:368)
at org.jboss.as.controller.AbstractControllerService$1.run(AbstractControllerService.java:299)
at java.lang.Thread.run(Thread.java:745)
@Ladicek
Ladicek / maven-deploy-sources.sh
Created January 7, 2016 09:51
deploy *-sources.jar to internal Maven repository
#!/bin/bash
# successful "mvn clean install" or a variant thereof (e.g. -DskipTests)
# is typically required before running this script
REPOSITORY_ID=...
REPOSITORY_URL=...
mvn clean source:jar
@Ladicek
Ladicek / pom.xml
Last active December 13, 2015 13:12
annotation processor debugging with Maven
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerArgument>-J-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=5005</compilerArgument>
<fork>true</fork>
</configuration>
</plugin>
@Ladicek
Ladicek / fixup_committer_date.sh
Last active December 13, 2015 13:13 — forked from bfoz/fixup_committer_date.sh
force GIT_COMMITTER_DATE = GIT_AUTHOR_DATE
git filter-branch --env-filter 'export GIT_COMMITTER_DATE="$GIT_AUTHOR_DATE"'