Skip to content

Commit

Permalink
Added log4j and jul to gradle.
Browse files Browse the repository at this point in the history
  • Loading branch information
huxi committed Aug 2, 2010
1 parent 83c2fb0 commit e280134
Show file tree
Hide file tree
Showing 34 changed files with 58 additions and 6 deletions.
9 changes: 8 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,14 @@ artifactMapping = [
'shutdown-context-listener': 'de.huxhorn.lilith.logback.servlet',
'encoder-core': 'de.huxhorn.lilith.logback.encoder.core',
'encoder-classic': 'de.huxhorn.lilith.logback.encoder.classic',
'encoder-access': 'de.huxhorn.lilith.logback.encoder.access'
'encoder-access': 'de.huxhorn.lilith.logback.encoder.access',
'log4j': 'log4j', // ignore
'log4j-throwable-parser': 'de.huxhorn.lilith.log4j.throwable',
'log4j-xml': 'de.huxhorn.lilith.log4j.xml',
'log4j-producer': 'de.huxhorn.lilith.log4j.producer',
'jul': 'jul', // ignore
'jul-xml': 'de.huxhorn.lilith.jul.xml',
'jul-slf4j-handler': 'de.huxhorn.lilith.jul-slf4j-handler'
]

dependsOnChildren()
Expand Down
4 changes: 4 additions & 0 deletions jul/jul-slf4j-handler/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
dependencies {
compile libraries.'slf4j-api'
}

13 changes: 13 additions & 0 deletions jul/jul-xml/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
dependencies {
compile project(':lilith-data:logging')
compile libraries.'sulky-stax'
compile libraries.'sulky-tasks'
compile libraries.'sulky-buffers'
compile libraries.'slf4j-api'
compile libraries.'commons-io'
compile libraries.'sulky-io'
compile libraries.'stax-api'
testRuntime libraries.'stax'
testCompile project(':lilith-data:eventsource')
}

File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion jul/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</parent>

<modules>
<module>xml</module>
<module>jul-xml</module>
<module>jul-slf4j-handler</module>
</modules>

Expand Down
9 changes: 9 additions & 0 deletions log4j/log4j-producer/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
dependencies {
compile project(':lilith-data:logging')
compile project(':log4j:log4j-throwable-parser')
compile libraries.'sulky-buffers'
compile project(':lilith-engine')
compile libraries.'slf4j-api'
compile libraries.'log4j'
}

File renamed without changes.
5 changes: 5 additions & 0 deletions log4j/log4j-throwable-parser/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
dependencies {
compile project(':lilith-data:logging')
compile libraries.'slf4j-api'
}

File renamed without changes.
14 changes: 14 additions & 0 deletions log4j/log4j-xml/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
dependencies {
compile project(':lilith-data:logging')
compile project(':log4j:log4j-throwable-parser')
compile libraries.'sulky-stax'
compile libraries.'sulky-tasks'
compile libraries.'sulky-buffers'
compile libraries.'slf4j-api'
compile libraries.'commons-io'
compile libraries.'sulky-io'
compile libraries.'stax-api'
testRuntime libraries.'stax'
testCompile project(':lilith-data:eventsource')
}

File renamed without changes.
6 changes: 3 additions & 3 deletions log4j/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
</parent>

<modules>
<module>throwable-parser</module>
<module>xml</module>
<module>producer</module>
<module>log4j-throwable-parser</module>
<module>log4j-xml</module>
<module>log4j-producer</module>
</modules>

</project>
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1 +1 @@
include 'lilith-sender', 'lilith-data:eventsource', 'lilith-data:eventsource-xml', 'lilith-data:logging', 'lilith-data:logging-xml', 'lilith-data:logging-xml-serializer', 'lilith-data:logging-protobuf', 'lilith-data:access', 'lilith-data:access-protobuf', 'lilith-constants', 'lilith-engine', 'lilith-xml-logging', 'logback:classic', 'logback:logging-adapter', 'logback:access-adapter', 'logback:producer-classic', 'logback:producer-access', 'logback:multiplex-appender-core', 'logback:multiplex-appender-classic', 'logback:multiplex-appender-access', 'logback:multiplex-appender-classic-xml', 'logback:shutdown-context-listener', 'logback:encoder-core', 'logback:encoder-classic', 'logback:encoder-access'
include 'lilith-sender', 'lilith-data:eventsource', 'lilith-data:eventsource-xml', 'lilith-data:logging', 'lilith-data:logging-xml', 'lilith-data:logging-xml-serializer', 'lilith-data:logging-protobuf', 'lilith-data:access', 'lilith-data:access-protobuf', 'lilith-constants', 'lilith-engine', 'lilith-xml-logging', 'logback:classic', 'logback:logging-adapter', 'logback:access-adapter', 'logback:producer-classic', 'logback:producer-access', 'logback:multiplex-appender-core', 'logback:multiplex-appender-classic', 'logback:multiplex-appender-access', 'logback:multiplex-appender-classic-xml', 'logback:shutdown-context-listener', 'logback:encoder-core', 'logback:encoder-classic', 'logback:encoder-access', 'log4j:log4j-throwable-parser', 'log4j:log4j-xml', 'log4j:log4j-producer', 'jul:jul-xml', 'jul:jul-slf4j-handler'

0 comments on commit e280134

Please sign in to comment.