|
From: <be...@us...> - 2012-04-13 13:48:44
|
Revision: 437
http://flatpack.svn.sourceforge.net/flatpack/?rev=437&view=rev
Author: benoitx
Date: 2012-04-13 13:48:38 +0000 (Fri, 13 Apr 2012)
Log Message:
-----------
BAD PRACTICE.. the dependencies to slf4j should not be compile but provided.
Modified Paths:
--------------
trunk/flatpack/pom.xml
trunk/flatpack-samples/pom.xml
trunk/pom.xml
Modified: trunk/flatpack/pom.xml
===================================================================
--- trunk/flatpack/pom.xml 2012-04-04 14:53:43 UTC (rev 436)
+++ trunk/flatpack/pom.xml 2012-04-13 13:48:38 UTC (rev 437)
@@ -5,7 +5,7 @@
<parent>
<groupId>net.sf.flatpack</groupId>
<artifactId>flatpack-parent</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
@@ -104,21 +104,25 @@
<groupId>jdom</groupId>
<artifactId>jdom</artifactId>
<version>1.0</version>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>jexcelapi</groupId>
<artifactId>jxl</artifactId>
<version>2.4.2</version>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.1.0-RC1</version>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.1.0-RC1</version>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: trunk/flatpack-samples/pom.xml
===================================================================
--- trunk/flatpack-samples/pom.xml 2012-04-04 14:53:43 UTC (rev 436)
+++ trunk/flatpack-samples/pom.xml 2012-04-13 13:48:38 UTC (rev 437)
@@ -5,7 +5,7 @@
<parent>
<groupId>net.sf.flatpack</groupId>
<artifactId>flatpack-parent</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
</parent>
@@ -102,21 +102,25 @@
<groupId>jdom</groupId>
<artifactId>jdom</artifactId>
<version>1.0</version>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>jexcelapi</groupId>
<artifactId>jxl</artifactId>
<version>2.4.2</version>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.1.0-RC1</version>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.1.0-RC1</version>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2012-04-04 14:53:43 UTC (rev 436)
+++ trunk/pom.xml 2012-04-13 13:48:38 UTC (rev 437)
@@ -5,7 +5,7 @@
<groupId>net.sf.flatpack</groupId>
<artifactId>flatpack-parent</artifactId>
<name>FlatPack</name>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.3-SNAPSHOT</version>
<packaging>pom</packaging>
<description>Simple Java delimited and fixed width file parser. Handles CSV, Excel CSV, Tab, Pipe delimiters.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|