Changeset 6946 for SRUClient


Ignore:
Timestamp:
02/04/16 21:41:55 (8 years ago)
Author:
Oliver Schonefeld
Message:
  • update pom
File:
1 edited

Legend:

Unmodified
Added
Removed
  • SRUClient/trunk/pom.xml

    r6080 r6946  
    11<?xml version="1.0" encoding="UTF-8"?>
    2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     2<project xmlns="http://maven.apache.org/POM/4.0.0"
     3    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    34    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    45    <modelVersion>4.0.0</modelVersion>
     
    78    <version>0.10.0-SNAPSHOT</version>
    89    <name>SRU/CQL Client</name>
    9     <description>A SRU/CQL client implementation conforming to SRU/CQL protocol version 1.1 and 1.2     </description>
     10    <description>A SRU/CQL client implementation conforming to SRU/CQL protocol version 1.1, 1.2 and (partially) 2.0</description>
    1011    <organization>
    1112        <name>IDS Mannheim</name>
     
    2021        <maven.compiler.target>1.6</maven.compiler.target>
    2122        <!-- versions of common dependencies -->
    22         <slf4j.version>1.7.10</slf4j.version>
     23        <slf4j.version>1.7.12</slf4j.version>
    2324    </properties>
    2425
     
    2930            <version>${slf4j.version}</version>
    3031        </dependency>
    31 
    3232
    3333        <dependency>
     
    9191                </executions>
    9292            </plugin>
    93 
    94             <plugin>
    95                 <groupId>org.apache.maven.plugins</groupId>
    96                 <artifactId>maven-dependency-plugin</artifactId>
    97                 <version>2.5.1</version>
    98                 <executions>
    99                     <execution>
    100                         <id>copy-dependencies</id>
    101                         <phase>package</phase>
    102                         <goals>
    103                             <goal>copy-dependencies</goal>
    104                         </goals>
    105                         <configuration>
    106                             <includeScope>compile</includeScope>
    107                             <overWriteReleases>false</overWriteReleases>
    108                             <overWriteSnapshots>false</overWriteSnapshots>
    109                             <overWriteIfNewer>true</overWriteIfNewer>
    110                         </configuration>
    111                     </execution>
    112                 </executions>
    113             </plugin>
    11493        </plugins>
    115 
    116         <pluginManagement>
    117             <plugins>
    118                 <!-- m2e settings -->
    119                 <plugin>
    120                     <groupId>org.eclipse.m2e</groupId>
    121                     <artifactId>lifecycle-mapping</artifactId>
    122                     <version>1.0.0</version>
    123                     <configuration>
    124                         <lifecycleMappingMetadata>
    125                             <pluginExecutions>
    126                                 <!-- copy-dependency plugin -->
    127                                 <pluginExecution>
    128                                     <pluginExecutionFilter>
    129                                         <groupId>org.apache.maven.plugins</groupId>
    130                                         <artifactId>maven-dependency-plugin</artifactId>
    131                                         <versionRange>[1.0.0,)</versionRange>
    132                                         <goals>
    133                                             <goal>copy-dependencies</goal>
    134                                         </goals>
    135                                     </pluginExecutionFilter>
    136                                     <action>
    137                                         <ignore />
    138                                     </action>
    139                                 </pluginExecution>
    140                             </pluginExecutions>
    141                         </lifecycleMappingMetadata>
    142                     </configuration>
    143                 </plugin>
    144             </plugins>
    145         </pluginManagement>
    14694    </build>
    14795
Note: See TracChangeset for help on using the changeset viewer.