Ignore:
Timestamp:
07/08/14 11:50:40 (10 years ago)
Author:
Oliver Schonefeld
Message:
  • clean up pom.xml
  • update some dependencies
  • update to Apache Http Client 4.3.x
File:
1 edited

Legend:

Unmodified
Added
Removed
  • OAIHarvester/trunk/OAIHarvester/pom.xml

    r3026 r5458  
    1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    2   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    3   <modelVersion>4.0.0</modelVersion>
     1<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     2        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     3        <modelVersion>4.0.0</modelVersion>
    44
    5   <groupId>eu.clarin.cmdi</groupId>
    6   <artifactId>OAIHarvester</artifactId>
    7   <version>0.2.0-SNAPSHOT</version>
    8   <packaging>jar</packaging>
    9   <name>OAIHarvester</name>
     5        <groupId>eu.clarin.cmdi</groupId>
     6        <artifactId>OAIHarvester</artifactId>
     7        <version>0.3.0-SNAPSHOT</version>
     8        <packaging>jar</packaging>
     9        <name>OAIHarvester</name>
    1010
    11   <repositories>
    12     <repository>
    13       <id>repository.jboss-public</id>
    14       <name>JBoss Repository</name>
    15       <url>https://repository.jboss.org/nexus/content/groups/public/</url>
    16     </repository>
     11    <properties>
     12        <!-- project settings -->
     13        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     14        <!-- plug-in settings -->
     15        <maven.compiler.source>1.6</maven.compiler.source>
     16        <maven.compiler.target>1.6</maven.compiler.target>
     17        <!-- versions of common dependencies -->
     18        <slf4j.version>1.7.7</slf4j.version>
     19    </properties>
    1720
    18     <repository>
    19       <id>repository.java-net</id>
    20       <name>Java.net Repository</name>
    21       <url>http://download.java.net/maven/2/</url>
    22     </repository>
    23   </repositories>
     21    <dependencies>
     22        <dependency>
     23            <groupId>org.slf4j</groupId>
     24            <artifactId>slf4j-api</artifactId>
     25            <version>${slf4j.version}</version>
     26        </dependency>
    2427
    25   <build>
    26     <resources>
    27       <resource>
    28         <directory>src/main/resources</directory>
    29       </resource>
    30     </resources>
     28        <dependency>
     29            <groupId>org.apache.httpcomponents</groupId>
     30            <artifactId>httpclient</artifactId>
     31            <version>4.3.4</version>
     32        </dependency>
    3133
    32     <plugins>
    33       <plugin>
    34         <groupId>org.apache.maven.plugins</groupId>
    35         <artifactId>maven-compiler-plugin</artifactId>
    36         <version>2.3.2</version>
    37         <configuration>
    38           <source>${maven.compiler.source}</source>
    39           <target>${maven.compiler.target}</target>
    40         </configuration>
    41       </plugin>
    42     </plugins>
    43   </build>
     34        <dependency>
     35            <groupId>org.codehaus.woodstox</groupId>
     36            <artifactId>woodstox-core-lgpl</artifactId>
     37            <version>4.4.0</version>
     38        </dependency>
    4439
    45   <dependencies>
    46     <dependency>
    47       <groupId>org.slf4j</groupId>
    48       <artifactId>slf4j-api</artifactId>
    49       <version>${slf4j.version}</version>
    50     </dependency>
     40        <!--
     41        <dependency>
     42            <groupId>net.java.dev.msv</groupId>
     43            <artifactId>msv-core</artifactId>
     44            <version>2010.2</version>
     45            <scope>runtime</scope>
     46        </dependency>
     47        -->
    5148
    52     <dependency>
    53         <groupId>commons-lang</groupId>
    54         <artifactId>commons-lang</artifactId>
    55         <version>2.6</version>
    56         <type>jar</type>
    57         <scope>compile</scope>
    58     </dependency>
     49        <dependency>
     50            <groupId>joda-time</groupId>
     51            <artifactId>joda-time</artifactId>
     52            <version>2.3</version>
     53        </dependency>
    5954
    60     <dependency>
    61         <groupId>org.apache.httpcomponents</groupId>
    62         <artifactId>httpclient</artifactId>
    63         <version>4.2.5</version>
    64     </dependency>
     55        <dependency>
     56            <groupId>org.slf4j</groupId>
     57            <artifactId>slf4j-log4j12</artifactId>
     58            <version>${slf4j.version}</version>
     59            <scope>test</scope>
     60        </dependency>
     61    </dependencies>
    6562
    66     <dependency>
    67         <groupId>org.codehaus.woodstox</groupId>
    68         <artifactId>woodstox-core-lgpl</artifactId>
    69         <version>4.2.0</version>
    70     </dependency>
    71 
    72     <dependency>
    73         <groupId>net.java.dev.msv</groupId>
    74         <artifactId>msv-core</artifactId>
    75         <version>2010.2</version>
    76         <scope>runtime</scope>
    77     </dependency>
    78 
    79     <dependency>
    80         <groupId>joda-time</groupId>
    81         <artifactId>joda-time</artifactId>
    82         <version>2.0</version>
    83     </dependency>
    84 
    85     <dependency>
    86       <groupId>org.slf4j</groupId>
    87       <artifactId>slf4j-log4j12</artifactId>
    88       <version>${slf4j.version}</version>
    89       <scope>test</scope>
    90     </dependency>
    91   </dependencies>
    92 
    93   <properties>
    94     <!-- project settings -->
    95     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    96     <!-- plug-in settings -->
    97     <maven.compiler.source>1.6</maven.compiler.source>
    98     <maven.compiler.target>1.6</maven.compiler.target>
    99     <!-- versions of common dependencies -->
    100     <slf4j.version>1.7.2</slf4j.version>
    101   </properties>
     63        <build>
     64                <plugins>
     65                        <plugin>
     66                                <groupId>org.apache.maven.plugins</groupId>
     67                                <artifactId>maven-compiler-plugin</artifactId>
     68                                <version>2.3.2</version>
     69                                <configuration>
     70                                        <source>${maven.compiler.source}</source>
     71                                        <target>${maven.compiler.target}</target>
     72                                </configuration>
     73                        </plugin>
     74                </plugins>
     75        </build>
    10276
    10377</project>
Note: See TracChangeset for help on using the changeset viewer.