reduce sample logging

This commit is contained in:
Costin Leau
2012-10-02 22:06:29 +03:00
parent df10436cf4
commit d2f64ea5d2
3 changed files with 8 additions and 2 deletions

View File

@@ -11,7 +11,7 @@ repositories {
dependencies {
compile "org.springframework.shell:spring-shell:$springShellVersion"
testCompile "junit:junit:$junitVersion"
runtime "log4j:log4j:$log4jVersion"
}
mainClassName = "org.springframework.shell.Bootstrap"

View File

@@ -1,5 +1,5 @@
springShellVersion = 1.0.0.RELEASE
junitVersion = 4.8.1
log4jVersion = 1.2.17
version = 1.0.0.RELEASE

View File

@@ -13,6 +13,7 @@
<properties>
<spring.shell.version>1.0.0.RELEASE</spring.shell.version>
<jar.mainclass>org.springframework.shell.Bootstrap</jar.mainclass>
<log4j.version>1.2.17</log4j.version>
</properties>
<dependencies>
@@ -22,6 +23,11 @@
<artifactId>spring-shell</artifactId>
<version>${spring.shell.version}</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>${log4j.version}</version>
</dependency>
</dependencies>