Changeset 878


Ignore:
Timestamp:
02/01/10 18:48:32 (2 years ago)
Author:
kasper
Message:

Updated MetadataBeans? POM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • MetadataBeans/trunk/pom.xml

    r877 r878  
    113113                </plugins> 
    114114        </reporting> 
     115        <dependencies> 
     116                <dependency> 
     117                        <groupId>joda-time</groupId> 
     118                        <artifactId>joda-time</artifactId> 
     119                        <version>1.5.2</version> 
     120                </dependency> 
     121                <dependency> 
     122                        <groupId>commons-math</groupId> 
     123                        <artifactId>commons-math</artifactId> 
     124                        <version>1.1</version> 
     125                </dependency> 
     126                <dependency> 
     127                        <groupId>commons-lang</groupId> 
     128                        <artifactId>commons-lang</artifactId> 
     129                        <version>2.4</version> 
     130                </dependency> 
     131                 
     132                <!-- Optional dependencies --> 
     133                <dependency> 
     134                        <groupId>com.healthmarketscience.jackcess</groupId> 
     135                        <artifactId>jackcess</artifactId> 
     136                        <version>1.1.20</version> 
     137                        <exclusions> 
     138                                <exclusion> 
     139                                        <groupId>commons-lang</groupId> 
     140                                        <artifactId>commons-lang</artifactId> 
     141                                </exclusion> 
     142                                <exclusion> 
     143                                        <groupId>commons-logging</groupId> 
     144                                        <artifactId>commons-logging</artifactId> 
     145                                </exclusion> 
     146                        </exclusions> 
     147                        <optional>true</optional> 
     148                </dependency> 
     149                <dependency> 
     150                        <groupId>hsqldb</groupId> 
     151                        <artifactId>hsqldb</artifactId> 
     152                        <version>1.8.0.7</version> 
     153                        <optional>true</optional> 
     154                </dependency> 
     155                <dependency> 
     156                        <groupId>org.apache.poi</groupId> 
     157                        <artifactId>poi</artifactId> 
     158                        <version>3.2-FINAL</version> 
     159                        <optional>true</optional> 
     160                </dependency> 
     161                <dependency> 
     162                        <groupId>net.sf.opencsv</groupId> 
     163                        <artifactId>opencsv</artifactId> 
     164                        <version>1.8</version> 
     165                        <optional>true</optional> 
     166                </dependency> 
     167                 
     168                <!-- Test dependencies --> 
     169                <dependency> 
     170                        <groupId>junit</groupId> 
     171                        <artifactId>junit</artifactId> 
     172                        <version>3.8.2</version> 
     173                        <scope>test</scope> 
     174                </dependency> 
     175                <dependency> 
     176                        <groupId>org.easymock</groupId> 
     177                        <artifactId>easymock</artifactId> 
     178                        <version>2.3</version> 
     179                        <scope>test</scope> 
     180                </dependency> 
     181                <dependency> 
     182                        <groupId>org.apache.derby</groupId> 
     183                        <artifactId>derby</artifactId> 
     184                        <version>10.3.1.4</version> 
     185                        <scope>test</scope> 
     186                </dependency> 
     187                <dependency> 
     188                        <groupId>postgresql</groupId> 
     189                        <artifactId>postgresql</artifactId> 
     190                        <version>8.3-603.jdbc3</version> 
     191                        <scope>test</scope> 
     192                </dependency> 
     193                <dependency> 
     194                        <groupId>mysql</groupId> 
     195                        <artifactId>mysql-connector-java</artifactId> 
     196                        <version>5.1.6</version> 
     197                        <scope>test</scope> 
     198                </dependency> 
     199                <dependency> 
     200                        <groupId>org.xerial</groupId> 
     201                        <artifactId>sqlite-jdbc</artifactId> 
     202                        <version>3.6.0</version> 
     203                        <scope>test</scope> 
     204                </dependency> 
     205        </dependencies> 
    115206</project> 
Note: See TracChangeset for help on using the changeset viewer.