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
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>cz.ladicek</groupId>
<artifactId>tinySwarmWebapp</artifactId>
<version>1.0.0-SNAPSHOT</version>
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 / 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"'
@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>