This repository has been archived by the owner on Jun 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 102
Doc for wildfly-swarm (throntail) is wrong #191
Labels
Milestone
Comments
Thanks for report. Care to submit a pull request that fixes the docs? |
mp911de
added
type: bug
A general bug
type: documentation
A documentation update
labels
Mar 31, 2019
No problem, I'm already on it. This is your module.xml: <?xml version="1.0" encoding="UTF-8"?>
<module xmlns="urn:jboss:module:1.1" name="biz.paluch.logging">
<resources>
<resource-root path="${project.artifactId}-${project.version}.jar" />
<resource-root path="jedis-${jedis.version}.jar" />
<resource-root path="commons-pool2-${jedis-commons-pool2.version}.jar" />
</resources>
<dependencies>
<module name="org.apache.log4j" />
<module name="org.slf4j" />
<module name="javax.api" />
<module name="org.jboss.logmanager" />
</dependencies>
</module> This is my module.xml: <?xml version="1.0" encoding="UTF-8"?>
<module xmlns="urn:jboss:module:1.3" name="biz.paluch.logging">
<resources>
<artifact name="biz.paluch.logging:logstash-gelf:1.11.2" />
<artifact name="redis.clients:jedis:2.9.0" />
<artifact name="org.apache.commons:commons-pool2:2.4.3" />
</resources>
<dependencies>
<module name="org.apache.log4j" />
<module name="org.slf4j" />
<module name="javax.api" />
<module name="org.jboss.logmanager" />
</dependencies>
</module> The main difference is that ressource-root tag is replaced by artifact tag. May I add/modify the following resources?
|
Yeah, that makes sense, thanks a lot. Given the planned future of Thorntail, I think that we should go forward with your suggestion and not create an entirely new distribution artifact. |
Created pull request #192 |
Closed
mp911de
pushed a commit
that referenced
this issue
Apr 2, 2019
Fix documentation and introduce module-thorntail.xml. Original pull request: #192
mp911de
pushed a commit
that referenced
this issue
Apr 2, 2019
Fix documentation and introduce module-thorntail.xml. Original pull request: #192
Thanks a lot, that's fixed now. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The doc for throntail displays properties in the format key=value, but this should be key: value
but they should be like this, because its YAML we use here
The text was updated successfully, but these errors were encountered: